/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
  /* Colors */
  --bg-yellow: #F0F0F0;       /* Off-white grey from new poster */
  --bg-yellow-pale: #FAFAFA;  /* Soft light grey for gradients */
  --bg-cream: #F6F6F6;        /* Body background */
  --text-dark: #1E2229;       /* Charcoal/dark steel */
  --text-muted: #5C6470;      /* Slate gray */
  --bg-steel-dark: #111419;   /* Heroic dark steel for header/footer */
  
  --accent-orange: #B55F9E;   /* Poster purple/pink brand accent */
  --accent-orange-hover: #9E4D88;
  --accent-orange-light: rgba(181, 95, 158, 0.1);
  --accent-orange-glow: rgba(181, 95, 158, 0.4);
  
  --border-color: rgba(30, 34, 41, 0.1);
  --border-color-dark: rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Archivo Black', Impact, sans-serif;
  
  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(30, 34, 41, 0.04);
  --shadow-medium: 0 15px 35px rgba(30, 34, 41, 0.08);
  --shadow-strong: 0 20px 40px rgba(30, 34, 41, 0.12);
  --shadow-glow: 0 0 25px var(--accent-orange-glow);
  
  /* Layout */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

/* Utility Components */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: var(--accent-orange);
  margin: 0 auto 24px auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(255, 79, 0, 0.3);
}

.btn-primary:hover:not(.disabled) {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 79, 0, 0.4);
}

.btn-secondary {
  background-color: var(--text-dark);
  color: #FFF;
}

.btn-secondary:hover {
  background-color: #2e3540;
  transform: translateY(-2px);
}

.btn.disabled {
  background-color: #4A515E;
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* Pulse animation for active CTA */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 79, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 79, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 79, 0, 0);
  }
}

.pulse-cta {
  animation: pulseGlow 2s infinite;
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(17, 20, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color-dark);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #FFF;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.nav-cta-btn {
  background-color: var(--accent-orange);
  color: #FFF;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-cta-btn:hover {
  background-color: var(--accent-orange-hover);
  box-shadow: 0 4px 12px rgba(255, 79, 0, 0.3);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  background-color: #FFF;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--bg-yellow-pale) 0%, var(--bg-yellow) 100%);
  border-bottom: 1px solid var(--border-color);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-steel-dark);
  color: #FFF;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: var(--accent-orange);
  position: relative;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

/* Countdown Card */
.countdown-card {
  background-color: var(--bg-steel-dark);
  color: #FFF;
  padding: 32px;
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--border-color-dark);
}

.countdown-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 75px;
}

.timer-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: #FFF;
  line-height: 1;
}

.timer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.timer-separator {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-orange);
  line-height: 1;
  margin-top: -15px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cta-wrapper {
  width: 100%;
}

.cta-wrapper .btn {
  width: 100%;
}

/* Poster visual column */
.hero-visual {
  display: flex;
  justify-content: center;
}

.poster-frame {
  background-color: #FFF;
  padding: 16px 16px 24px 16px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: rotate(1deg);
  transition: var(--transition-smooth);
  max-width: 380px;
}

.poster-frame:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.poster-img {
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.poster-caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ----------------------------------------------------
   ABOUT SECTION
   ---------------------------------------------------- */
.about-section {
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background-color: #FFF;
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(255, 79, 0, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-quote {
  max-width: 800px;
  margin: 80px auto 0 auto;
  text-align: center;
}

.about-quote blockquote {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-orange);
  font-style: italic;
  position: relative;
  padding: 0 40px;
}

.about-quote blockquote::before,
.about-quote blockquote::after {
  font-size: 4rem;
  position: absolute;
  color: rgba(255, 79, 0, 0.15);
  line-height: 1;
}

.about-quote blockquote::before {
  content: '“';
  left: 0;
  top: -20px;
}

.about-quote blockquote::after {
  content: '”';
  right: 0;
  bottom: -40px;
}

/* ----------------------------------------------------
   PROGRAM & TIMELINE SECTION
   ---------------------------------------------------- */
.program-section {
  background: linear-gradient(to bottom, var(--bg-cream) 0%, var(--bg-yellow-pale) 100%);
  border-bottom: 1px solid var(--border-color);
}

.program-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.program-info-column {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.info-tag {
  color: var(--accent-orange);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.program-intro-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 40px;
}

.map-placeholder-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.map-placeholder {
  background-color: var(--bg-steel-dark);
  color: #FFF;
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color-dark);
  transition: var(--transition-smooth);
}

.map-placeholder-link:hover .map-placeholder {
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.map-action-text {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.map-placeholder-link:hover .map-action-text {
  color: #FFF;
}

.location-details {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon {
  font-size: 1.8rem;
  color: var(--accent-orange);
}

.location-details strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 6px;
}

.location-details p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Timeline Components */
.timeline-header {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: var(--text-dark);
  border-left: 4px solid var(--accent-orange);
  padding-left: 16px;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -32px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  border: 3px solid var(--accent-orange);
  z-index: 1;
  transition: var(--transition-smooth);
}

.timeline-item:hover::before {
  background-color: var(--accent-orange);
  transform: scale(1.2);
}

.timeline-time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-orange);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ----------------------------------------------------
   RULES SECTION (ACCORDION)
   ---------------------------------------------------- */
.rules-section {
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-color);
}

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

.accordion-item {
  background-color: #FFF;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: rgba(255, 79, 0, 0.2);
  box-shadow: var(--shadow-soft);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  color: var(--text-dark);
  cursor: pointer;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 32px;
}

.accordion-content p {
  padding-bottom: 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Accordion Active States */
.accordion-item.active {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-soft);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* arbitrary height to slide to */
  padding: 0 32px 10px 32px;
}

.rules-cta {
  text-align: center;
  margin-top: 60px;
}

.rules-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.rules-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ----------------------------------------------------
   GALLERY SECTION (CAROUSEL)
   ---------------------------------------------------- */
.gallery-section {
  background-color: var(--bg-steel-dark);
  color: #FFF;
  border-bottom: 1px solid var(--border-color-dark);
}

.gallery-section .section-title {
  color: #FFF;
}

.gallery-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.carousel-viewport {
  width: 100%;
  height: 550px;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 32px 32px 32px;
  background: linear-gradient(to top, rgba(17, 20, 25, 0.95) 0%, rgba(17, 20, 25, 0.5) 60%, rgba(17, 20, 25, 0) 100%);
  color: #FFF;
  z-index: 3;
}

.slide-caption h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--accent-orange);
}

.slide-caption p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(17, 20, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-glow);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.indicator-dot.active {
  background-color: var(--accent-orange);
  width: 24px;
  border-radius: 10px;
}

/* ----------------------------------------------------
   SPONSORS SECTION
   ---------------------------------------------------- */
.sponsors-section {
  background-color: #FFF;
  padding: 60px 24px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.sponsors-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 700;
}

.sponsors-logo-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsors-strip-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.sponsors-strip-img:hover {
  opacity: 1;
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.main-footer {
  background-color: var(--bg-steel-dark);
  color: #FFF;
  padding: 80px 24px 40px 24px;
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color-dark);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
  align-self: flex-start;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  color: var(--accent-orange);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.footer-contact a {
  color: #FFF;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--accent-orange);
}

.copyright {
  margin-top: 32px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ----------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   ---------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .carousel-viewport {
    height: 450px;
  }
}

@media screen and (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    order: -1; /* Plakat vises over teksten på mobil */
    margin-bottom: 20px;
  }
  .poster-frame {
    max-width: 320px;
  }
  
  .program-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .program-info-column {
    position: relative;
    top: 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .section-container {
    padding: 60px 24px;
  }
  .section-title {
    font-size: 2rem;
  }
  
  /* Mobile Header Navigation */
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: rgba(17, 20, 25, 0.98);
    border-bottom: 1px solid var(--border-color-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  
  .nav-menu.active {
    max-height: 400px;
  }
  
  .nav-list {
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .nav-cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  
  /* Hamburger active state */
  .mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-nav-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Countdown adjustments */
  .countdown-card {
    padding: 20px;
  }
  .timer-number {
    font-size: 2rem;
  }
  .timer-segment {
    min-width: 55px;
  }
  .timer-separator {
    font-size: 1.8rem;
    margin-top: -10px;
  }
  
  .carousel-viewport {
    height: 350px;
  }
  .slide-caption {
    padding: 24px 16px 16px 16px;
  }
  .slide-caption h4 {
    font-size: 1.1rem;
  }
  .slide-caption p {
    font-size: 0.85rem;
  }
  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}
