/* ROG Dashboard - Modern Gaming Style 2025
   Redesigned version with immersive theme system */

:root {
  /* Light mode colors - Fresh gaming aesthetic */
  --bg-primary: #f8f9fb;
  --bg-secondary: #eef1f6;
  --bg-accent: #f1f4f9;
  --text-primary: #1a1d23;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --accent-primary: #5651e5; /* Rich purple */
  --accent-secondary: #709dff; /* Bright blue */
  --accent-tertiary: #ff3a5e; /* Vibrant red */
  --card-bg: rgba(255, 255, 255, 0.8);
  --border-color: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  --gradient-secondary: linear-gradient(135deg, var(--accent-secondary), #90cdf4);
  --status-online: #34d399;
  --status-offline: #f87171;
}

[data-theme="dark"] {
  /* Dark mode colors - Gaming atmosphere */
  --bg-primary: #0f1117;
  --bg-secondary: #171923;
  --bg-accent: #1a202c;
  --text-primary: #f7fafc;
  --text-secondary: #cbd5e0;
  --text-muted: #a0aec0;
  --accent-primary: #6c5ce7; /* Vibrant purple */
  --accent-secondary: #3d84f7; /* Deep blue */
  --accent-tertiary: #fd2d78; /* Hot pink */
  --card-bg: rgba(26, 32, 44, 0.8);
  --border-color: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.35);
  --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  --gradient-secondary: linear-gradient(135deg, var(--accent-secondary), #4299e1);
  --status-online: #38b2ac;
  --status-offline: #f56565;
}

/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #111827; /* bg-gray-900 equivalent */
  color: #ffffff; /* text-white */
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth; /* scroll-smooth */
  -webkit-font-smoothing: antialiased; /* antialiased */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.rog-body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #111827; /* bg-gray-900 equivalent */
  color: #ffffff; /* text-white */
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth; /* scroll-smooth */
  -webkit-font-smoothing: antialiased; /* antialiased */
}

/* =================================
   UTILITY CLASSES
   ================================= */

/* Display utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }

/* Layout & Display */
.container { 
  width: 100%; 
  max-width: 1280px; 
  margin: 0 auto; 
}
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.left-1\/2 { left: 50%; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }

/* Spacing */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

/* Colors */
.bg-black { background-color: #000000; }
.bg-white { background-color: #ffffff; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-transparent { background-color: transparent; }
.bg-opacity-40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-opacity-60 { background-color: rgba(0, 0, 0, 0.6); }

.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

/* Typography */
.font-inter { font-family: 'Inter', sans-serif; }
.font-space { font-family: 'Space Grotesk', sans-serif; }
.font-manrope { font-family: 'Manrope', sans-serif; }
.font-thin { font-weight: 100; }
.font-extralight { font-weight: 200; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.tracking-tight { letter-spacing: -0.025em; }
.text-center { text-align: center; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-white { border-color: #ffffff; }
.border-gray-600 { border-color: #4b5563; }
.border-gray-400 { border-color: #9ca3af; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.ring-2 { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.ring-white { --tw-ring-color: #ffffff; }

/* Effects */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -5px rgba(0, 0, 0, 0.04); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.opacity-20 { opacity: 0.2; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Transforms */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.-translate-x-1\/2 { --tw-translate-x: -50%; }

/* Visibility */
.hidden { display: none; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover states */
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-gray-600:hover { background-color: #4b5563; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:border-white\/40:hover { border-color: rgba(255, 255, 255, 0.4); }
.hover\:border-gray-400:hover { border-color: #9ca3af; }

/* Special utility classes for this project */
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }

.glass-dark {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-morphism {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.floating-card {
  transition: all 0.2s ease;
}

.floating-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-bg {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  padding: 0 1rem;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 0;
}

.hero-logo {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
  object-fit: cover;
  display: block;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-subtitle-section {
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.hero-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.hero-subtitle-highlight {
  color: #d1d5db;
  font-weight: 300;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 56rem;
  margin: 0 auto 0.75rem;
}

.hero-emphasis {
  font-weight: 600;
  color: #ffffff;
}

.hero-footer-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1rem;
  color: #9ca3af;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.hero-btn {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
}

.hero-btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.hero-btn-primary:hover {
  background-color: #e5e7eb;
}

.hero-btn-secondary {
  background-color: #1f2937;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
  background-color: #374151;
}

.hero-btn-tertiary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.hero-btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0 1rem;
}

.hero-quick-link {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-quick-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-quick-icon {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.hero-quick-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero responsive styles */
@media (min-width: 640px) {
  .hero-section {
    padding: 0 1.5rem;
  }
  
  .hero-content {
    padding: 6rem 0;
  }
  
  .hero-logo {
    width: 8rem;
    height: 8rem;
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle-section {
    margin-bottom: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .hero-footer-text {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .hero-quick-links {
    gap: 1rem;
  }
  
  .hero-quick-link {
    padding: 1rem;
  }
  
  .hero-quick-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-quick-text {
    font-size: 1rem;
  }
  
  .hero-scroll-indicator {
    bottom: 2rem;
  }
  
  .hero-scroll-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-quick-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.875rem;
  }
  
  .hero-description {
    font-size: 1.5rem;
  }
  
  .hero-footer-text {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .hero-content {
    padding: 8rem 0;
  }
  
  .hero-title {
    font-size: 6rem;
  }
  
  .hero-subtitle {
    font-size: 2.25rem;
  }
}

/* Navigation Styles */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
}

.nav-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
  letter-spacing: -0.025em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.nav-link-icon {
  width: 1rem;
  height: 1rem;
}

.nav-discord {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #5865f2;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(88, 101, 242, 0.3);
}

.nav-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(88, 101, 242, 0.4);
  text-decoration: none;
}

.nav-discord-icon {
  width: 1rem;
  height: 1rem;
}

.nav-mobile-btn {
  display: block;
  color: #ffffff;
  background: none;
  border: none;
  padding: 0;
}

.nav-mobile-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Responsive navigation */
@media (min-width: 640px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }
  
  .nav-logo-section {
    gap: 0.75rem;
  }
  
  .nav-logo {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .nav-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .nav-mobile-btn {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 1rem 2rem;
  }
  
  .nav-links {
    gap: 2rem;
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .nav-cta {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

/* Responsive breakpoints */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:space-x-3 > * + * { margin-left: 0.75rem; }
  .sm\:w-10 { width: 2.5rem; }
  .sm\:h-10 { height: 2.5rem; }
  .sm\:w-32 { width: 8rem; }
  .sm\:h-32 { height: 8rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .sm\:mb-2 { margin-bottom: 0.5rem; }
  .sm\:mb-4 { margin-bottom: 1rem; }
  .sm\:mb-6 { margin-bottom: 1.5rem; }
  .sm\:mb-8 { margin-bottom: 2rem; }
  .sm\:mb-12 { margin-bottom: 3rem; }
  .sm\:mb-16 { margin-bottom: 4rem; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:gap-8 { gap: 2rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:rounded-2xl { border-radius: 1rem; }
  .hero-buttons { flex-direction: row; gap: 1rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lg\:space-x-8 > * + * { margin-left: 2rem; }
  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Special case for positioning */
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Features Section Styles */
.features-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: 1.875rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.features-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.features-content {
  max-width: 80rem;
  margin: 0 auto;
}

.features-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
  padding: 0 1rem;
}

.features-nav-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  transition: all 0.15s ease;
  margin-bottom: 0.5rem;
  border: 1px solid;
  font-size: 0.875rem;
  background: none;
  cursor: pointer;
}

.features-nav-btn-active {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.features-nav-btn-inactive {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.features-nav-btn-inactive:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.features-content-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 0 1rem;
}

.features-tab-content > * + * {
  margin-top: 1.5rem;
}

.features-map-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.features-map-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.features-map-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  color: #d1d5db;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.features-map-credits {
  margin-top: 0.75rem;
  color: #d1d5db;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  list-style: none;
  padding: 0;
}

.features-map-credits > * + * {
  margin-top: 0.25rem;
}

.features-map-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.features-map-tab {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
  border: 1px solid #4b5563;
  font-size: 0.75rem;
  background: none;
  cursor: pointer;
}

.features-map-tab:hover {
  border-color: #9ca3af;
}

.features-map-tab-active {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.features-map-tab-inactive {
  background-color: transparent;
  color: #ffffff;
}

.features-map-tab-inactive:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Map Image Gallery Styles */
.map-image-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Updated gallery classes defined above */

.map-image-gallery-4col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.map-image-gallery-2col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.map-image-gallery-1col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.map-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  object-fit: cover;
  cursor: pointer;
  
  /* Lazy loading styles */
  opacity: 0;
  transform: scale(0.95);
  background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
  background-size: 200% 200%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.map-image.lazy-loading {
  opacity: 0.3;
  background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
  background-size: 200% 200%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.map-image.lazy-loaded {
  opacity: 1;
  transform: scale(1);
  animation: none;
  background: none;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.map-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Additional lazy loading styles for better performance */
.lazy-error {
  opacity: 0.5;
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  text-align: center;
}

.lazy-error::before {
  content: "⚠️ Image failed to load";
}

/* Optimize transitions for better performance */
.map-image {
  will-change: transform, opacity;
}

.map-image.lazy-loaded {
  will-change: auto;
}

/* Preload critical images - handled via HTML attributes */
.critical-image {
  opacity: 1 !important;
  transform: scale(1) !important;
  background: none !important;
  animation: none !important;
}

/* Performance optimizations */
.map-image-gallery {
  contain: layout style;
}

/* Reduce repaints during loading */
.map-image-gallery-4col,
.map-image-gallery-2col,
.map-image-gallery-1col {
  contain: layout;
}

/* Weapons Content Styles */
.weapons-content > * + * {
  margin-top: 2rem;
}

.weapons-header {
  text-align: center;
  margin-bottom: 2rem;
}

.weapons-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.weapons-description {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 56rem;
  margin: 0 auto;
}

.weapons-sections > * + * {
  margin-top: 2rem;
}

.weapons-section-card {
  background-color: rgba(31, 41, 55, 0.4);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #4b5563;
}

.weapons-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.weapons-section-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.weapons-comparison {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .weapons-comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.weapons-comparison-col > * + * {
  margin-top: 1rem;
}

.weapons-comparison-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.weapons-comparison-new {
  color: #ffffff;
}

.weapons-comparison-old {
  color: #d1d5db;
}

.weapons-comparison-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

/* Gameplay Content Styles */
.gameplay-content > * + * {
  margin-top: 2rem;
}

.gameplay-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gameplay-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gameplay-description {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 56rem;
  margin: 0 auto;
}

.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gameplay-card {
  background-color: rgba(31, 41, 55, 0.4);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #4b5563;
  transition: all 0.2s ease;
}

.gameplay-card:hover {
  background-color: rgba(31, 41, 55, 0.6);
  border-color: #6b7280;
  transform: translateY(-2px);
}

.gameplay-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gameplay-card-icon {
  font-size: 1.5rem;
}

.gameplay-card-description {
  color: #d1d5db;
  line-height: 1.6;
}

.gameplay-feature-card {
  background-color: rgba(31, 41, 55, 0.4);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #4b5563;
}

.gameplay-feature-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.gameplay-feature-icon {
  font-size: 2rem;
}

.gameplay-feature-content > * + * {
  margin-top: 1.5rem;
}

.gameplay-feature-description {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 1.125rem;
}

.gameplay-feature-details {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

.gameplay-feature-detail {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid #3b82f6;
}

.gameplay-feature-detail-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.gameplay-feature-detail-description {
  color: #d1d5db;
  line-height: 1.6;
}

/* Responsive gallery and weapons styles */
@media (min-width: 640px) {
  .gameplay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .gameplay-feature-details {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .gameplay-feature-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .map-image-gallery-3col,
  .map-image-gallery-4col,
  .map-image-gallery-2col,
  .weapons-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .gameplay-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .map-image-gallery-3col,
  .map-image-gallery-4col,
  .map-image-gallery-2col,
  .weapons-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .map-image-gallery-3col,
  .map-image-gallery-4col,
  .map-image-gallery-2col,
  .weapons-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .gameplay-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .gameplay-feature-details {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .weapons-comparison {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .map-image-gallery-1col,
  .map-image-gallery-2col,
  .weapons-comparison-gallery {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles */
.footer-section {
  background-color: #000000;
  border-top: 1px solid #1f2937;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #d1d5db;
  max-width: 28rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: #ffffff;
}

.footer-social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links > * + * {
  margin-top: 0.25rem;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-info > * + * {
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer-bottom-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #ffffff;
}

/* Responsive footer styles */
@media (min-width: 640px) {
  .footer-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .footer-container {
    padding: 0 1.5rem;
  }
  
  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-logo-section {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .footer-logo {
    width: 3rem;
    height: 3rem;
  }
  
  .footer-brand-name {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    gap: 1rem;
  }
  
  .footer-social-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .footer-section-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .footer-links > * + * {
    margin-top: 0.5rem;
  }
  
  .footer-link {
    font-size: 1rem;
  }
  
  .footer-info {
    font-size: 1rem;
  }
  
  .footer-info > * + * {
    margin-top: 0.5rem;
  }
  
  .footer-bottom {
    padding-top: 2rem;
  }
  
  .footer-copyright {
    font-size: 1rem;
  }
  
  .footer-bottom-links {
    gap: 1.5rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    gap: 0;
  }
}

@media (min-width: 1024px) {
  .footer-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  
  .footer-container {
    padding: 0 2rem;
  }
}

/* Additional responsive utility classes */
@media (min-width: 640px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* General Image Styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Community Section Styles */
.community-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.community-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.community-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.community-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #d1d5db);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.community-description {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #d1d5db;
  margin-bottom: 3rem;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.community-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.08);
}

.community-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.community-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.community-card-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.community-card-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.community-card-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
}

.community-card-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-1px);
}

.community-card-btn-secondary {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #ffffff;
}

.community-card-btn-secondary:hover {
  background: linear-gradient(135deg, #6d28d9, #4c1d95);
  transform: translateY(-1px);
}

.community-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.community-quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
}

.community-quick-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.community-quick-icon {
  font-size: 1.5rem;
}

.community-quick-text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Image Lightbox Styles */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.image-lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lightbox-caption {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -4rem;
}

.lightbox-next {
  right: -4rem;
}

/* Responsive community styles */
@media (min-width: 640px) {
  .community-container {
    padding: 0 1.5rem;
  }
  
  .community-quick-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .community-container {
    padding: 0 2rem;
  }
  
  .community-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .community-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .community-title {
    font-size: 3rem;
    line-height: 1;
  }
}

/* Map Detail Styles */
.map-detail-container {
  margin-top: 2rem;
}

.map-detail-content {
  padding: 1.5rem;
}

.map-detail-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.map-detail-description {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

/* Map Detail Section Spacing */
.map-detail-sections {
  padding: 1.5rem;
}

.map-detail-section {
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-detail-section:last-child {
  margin-bottom: 0;
}

.map-detail-subsections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map-detail-subsection {
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.01);
  border-left: 3px solid rgba(255, 255, 255, 0.1);
}

/* Loading spinner for images */
.map-image.lazy-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Position relative for spinner */
.map-image {
  position: relative;
}