/* ==========================================================================
   EHGN Website Styles - Clean Responsive Design
   Matrix Green Theme with Professional Navigation
   ========================================================================== */

/* CSS Variables */
:root {
  /* Colors - Matrix Green Theme */
  --color-bg-primary: #0D0D0D;
  --color-bg-secondary: #121212;
  --color-bg-tertiary: #1A1A1A;
  --color-text-primary: #F0F0F0;
  --color-text-secondary: #B0B0B0;
  --color-text-muted: #808080;
  --color-accent-1: #5865F2;
  --color-accent-2: #00FF41;
  --color-success: #00CC33;
  --color-nav-bg: #000000;
  --color-nav-border: #00FF41;
  --color-nav-hover: #86E88F;
  
  /* Typography */
  --font-family-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  
  /* Z-index */
  --z-sticky: 100;
  --z-modal: 1040;
}

/* ==========================================================================
   Base Reset & Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

a {
  color: var(--color-accent-2);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--color-nav-hover);
}

ul {
  list-style: none;
}

/* Text Accent - Subtiele Gradient */
.text-accent {
  background: linear-gradient(135deg, #00ff41 0%, #00e63c 50%, #00cc33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  display: inline-block;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-accent-1);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  z-index: 1050;
  transition: top var(--transition-normal);
}

.skip-to-content:focus {
  top: 6px;
}

/* ==========================================================================
   Navigation - Clean Responsive Design
   ========================================================================== */

header {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(0, 255, 65, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  height: 80px;
  transition: all 0.3s ease;
}

/* Logo */
#logo {
  margin: 0 30px;
  display: flex;
  align-items: center;
  transition: opacity var(--transition-normal);
  z-index: 10;
  flex-shrink: 0;
  height: 100%;
}

#logo:hover {
  opacity: 0.8;
}

#logo img {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 255, 65, 0.5));
  transition: height 0.3s ease;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  margin-right: 30px;
  z-index: 10;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-flex;
}

nav li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--color-accent-2);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
}

nav li a:hover {
  color: var(--color-nav-hover);
  background: rgba(0, 255, 65, 0.1);
  transform: translateY(-1px);
}

nav li a.btn-discord:hover {
  background: #4752C4;
  color: white;
}

nav li a.current {
  color: var(--color-success);
  background: rgba(0, 255, 65, 0.05);
}

/* Menu Icon (Hamburger) */
#menu-icon {
  display: none;
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff41' stroke-width='2'%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cline x1='3' y1='18' x2='21' y2='18'/%3E%3C/svg%3E") center no-repeat;
  background-size: 30px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

#menu-icon:hover {
  background-color: var(--color-nav-hover);
}

/* ==========================================================================
   Main Content Adjustments
   ========================================================================== */

main {
  margin-top: 0;
  padding-top: 0;
}

.hero {
  margin-top: 0 !important;
  padding-top: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-20) 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-6);
  position: relative;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 42px;
  }
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2));
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 255, 65, 0.3);
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto var(--space-12);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .section-intro {
    font-size: 20px;
  }
}

.section-cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary,
.btn-secondary,
.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: var(--color-accent-1);
  color: white;
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.btn-primary:hover {
  background: #4752C4;
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
  transform: translateY(-2px);
  color: white;
}

/* Discord Button Styling */
.btn-discord {
  background: #5865F2;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
  background: #4752C4;
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
  transform: translateY(-2px);
  color: white;
}

.btn-discord svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-discord-large {
  padding: 18px 36px;
  font-size: 18px;
}

.btn-discord-large svg {
  width: 20px;
  height: 20px;
}

/* Discord button in navbar */
.btn-discord-nav {
  padding: 10px 20px !important;
  border-radius: 6px;
  font-size: 15px;
  gap: 8px;
  margin-left: 8px;
}

.btn-discord-nav svg {
  width: 18px;
  height: 18px;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent-1);
  border: 2px solid var(--color-accent-1);
}

.btn-secondary:hover {
  background: var(--color-accent-1);
  color: white;
}

.btn-large {
  padding: var(--space-6) var(--space-12);
  font-size: 18px;
  background: var(--color-accent-1);
  color: white;
}

.btn-large:hover {
  background: #4752C4;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.4);
  transform: translateY(-2px);
  color: white;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-4);
  z-index: 1;
}

.hero-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: var(--space-6);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 52px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 68px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.01em;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 22px;
  }
}

.btn-hero {
  font-size: 18px;
  padding: var(--space-6) var(--space-10);
}

/* ==========================================================================
   Statistics
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-10);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-accent-2);
  transition: transform var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
}

.stat-number {
  font-family: var(--font-family-primary);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent-2);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 64px;
  }
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 16px;
  }
}

/* ==========================================================================
   Speakers
   ========================================================================== */

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: 640px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .speakers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.speaker-card {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--color-accent-2);
  transition: all var(--transition-normal);
}

.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
}

.speaker-image {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid var(--color-accent-2);
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.speaker-card:hover .speaker-image img {
  transform: scale(1.05);
}

.speaker-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.speaker-role {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.speaker-topic {
  font-size: 14px;
  color: var(--color-accent-2);
  font-style: italic;
}

/* ==========================================================================
   Videos
   ========================================================================== */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (min-width: 640px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-item {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-accent-2);
  transition: all var(--transition-normal);
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-tertiary);
  display: block;
}

.video-item {
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 65, 0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: all var(--transition-normal);
}

.video-item:hover .play-button {
  background: var(--color-accent-2);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.video-title {
  padding: var(--space-4);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .video-title {
    font-size: 16px;
  }
}

/* ==========================================================================
   Events
   ========================================================================== */

.events-list {
  max-width: 600px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-accent-2);
  margin-bottom: var(--space-4);
  transition: all var(--transition-normal);
}

.event-item:hover {
  box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
  transform: translateX(8px);
}

.event-icon {
  flex-shrink: 0;
  color: var(--color-accent-2);
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 640px) {
  .event-details {
    flex-direction: row;
    gap: var(--space-4);
    align-items: center;
  }
}

.event-date {
  font-family: var(--font-family-primary);
  font-weight: 600;
  color: var(--color-accent-1);
  font-size: 14px;
}

@media (min-width: 640px) {
  .event-date {
    font-size: 16px;
    min-width: 80px;
  }
}

.event-title {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background: var(--color-bg-secondary);
  position: relative;
}

.cta-content {
  display: grid;
  gap: var(--space-12);
  margin: var(--space-12) 0;
}

@media (min-width: 1024px) {
  .cta-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
  }
}

.cta-benefits h3,
.cta-testimonials h3 {
  margin-bottom: var(--space-6);
  color: var(--color-accent-2);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 18px;
  line-height: 1.6;
}

.benefits-list svg {
  color: var(--color-accent-2);
  flex-shrink: 0;
  margin-top: 4px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.testimonial {
  padding: var(--space-6);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent-2);
}

.testimonial p {
  font-style: italic;
  margin-bottom: var(--space-2);
  color: var(--color-text-secondary);
}

.testimonial cite {
  font-weight: 600;
  color: var(--color-accent-2);
  font-style: normal;
}

.cta-action {
  text-align: center;
  margin-top: var(--space-12);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-accent-2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-6);
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.faq-question:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-accent-2);
}

.faq-icon {
  transition: transform var(--transition-normal);
  color: var(--color-accent-2);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-6);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  max-height: 500px;
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  text-transform: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-bg-secondary);
  border-top: 2px solid var(--color-accent-2);
  padding: var(--space-12) 0 var(--space-8);
}

.footer-content {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .footer-logo {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}

.footer-logo-img {
  width: 48px;
  height: 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .footer-links {
    margin-bottom: 0;
  }
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent-2);
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: right;
  }
}

/* ==========================================================================
   Video Modal
   ========================================================================== */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all var(--transition-normal);
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-modal-player {
  width: 100%;
  height: 100%;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

@media only screen and (max-width: 768px) {
  
  header {
    position: fixed;
  }

  #menu-icon {
    display: inline-block;
  }

  nav ul {
    display: none;
    position: absolute;
    padding: 0;
    background: rgba(0, 0, 0, 0.98);
    border: 2px solid var(--color-accent-2);
    border-radius: 8px;
    right: 10px;
    top: 70px;
    width: 280px;
    max-width: 90vw;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 255, 65, 0.3);
  }

  nav ul.show {
    display: flex;
  }

  nav li {
    text-align: left;
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
  }

  nav li:first-child {
    border-radius: 6px 6px 0 0;
  }

  nav li:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
  }

  nav li a {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: var(--color-accent-2);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  nav li a:hover {
    color: white;
    background: rgba(0, 255, 65, 0.15);
    transform: none;
  }

  nav li a.current {
    background: rgba(0, 255, 65, 0.1);
    color: white;
  }

  #logo {
    margin: 0 20px;
  }

  #logo img {
    height: 55px;
  }
  
  header {
    padding: 10px 0;
    height: 65px;
  }
  
  nav {
    margin-right: 20px;
  }
  
  nav li a {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  /* Mobile Discord button adjustments */
  nav li .btn-discord-nav {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 10px;
    padding: 10px 16px !important;
  }
  
  .btn-discord-large {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .btn-discord-large svg {
    width: 18px;
    height: 18px;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 85px;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Alpine.js x-cloak */
[x-cloak] {
  display: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
