:root {
  --font-pixel: 'Press Start 2P', monospace;
  --color-primary: #4169e1; /* Royal Blue */
  --color-secondary: #ffd700; /* Gold */
  --color-green: #32cd32; /* Lime Green */
  --color-red: #ff4444; /* Bright Red */
  --color-orange: #ff8c00; /* Orange */
  --color-purple: #9932cc; /* Purple */
  --color-dark: #2c3e50;
  --color-light: #ffffff;
  --color-sky: #87ceeb; /* Sky Blue */
  --color-grass: #228b22; /* Forest Green */
  --color-dirt: #8b4513; /* Saddle Brown */
  --border-pixel: 4px solid #000;
  --shadow-pixel: 6px 6px 0px #000;
  --shadow-light: 3px 3px 0px rgba(0,0,0,0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 12px;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  font-family: var(--font-pixel);
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-sky);
  overflow-x: hidden;
  overflow-y: auto;
  image-rendering: pixelated;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   2. Header & Footer (White Theme) - FIXED
   ========================================================================== */
.header, .footer {
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 1rem 0;
    font-size: 0.8rem;
}

.header {
  position: fixed;
  width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.hamburger {
  margin-left: auto;
}

.logo-img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  color: var(--color-dark);
  text-decoration: none;
  /* font-weight: 600; */
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 5px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-dark);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-toggle:hover {
  transform: scale(1.1);
}

/* FIXED FOOTER */
.footer {
    margin-top: 4rem;
    border-top: 1px solid #e9ecef;
    padding: 3rem 0 1rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: left;
}

.footer-brand .footer-logos {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.footer-brand .footer-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.footer-brand .footer-logo img:hover {
    transform: scale(1.05);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.social-link {
    color: var(--color-dark);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: var(--color-primary);
    transform: translateY(-3px) scale(1.1);
}

.footer-section {
    text-align: left;
}

.footer-title {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--color-dark);
    /* font-weight: bold; */
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.8rem;
    color: #6c757d;
}

/* ==========================================================================
   3. Buttons (Retro Gaming Style) - FIXED
   ========================================================================== */
.btn {
  font-family: var(--font-pixel);
  padding: 10px 18px;
  border: var(--border-pixel);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease-out;
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  /* font-weight: bold; */
  white-space: nowrap;
  min-width: 120px;
  line-height: 1.2;
  background: none;
  user-select: none;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.btn:active {
    transform: translate(1px, 1px);
    box-shadow: 3px 3px 0px #000;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #6495ed);
  color: var(--color-light);
  box-shadow: var(--shadow-pixel);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-secondary), #ffff00);
  color: var(--color-dark);
  box-shadow: var(--shadow-pixel);
}

.btn-success {
  background: linear-gradient(135deg, var(--color-green), #90ee90);
  color: var(--color-light);
  box-shadow: var(--shadow-pixel);
}

.btn-outline {
    background-color: var(--color-purple);
    color: var(--color-secondary);
    box-shadow: var(--shadow-pixel);
    border: 4px solid var(--color-dark);
}

/* ==========================================================================
   4. Hero Section (Retro Gaming Style) - ENHANCED ANIMATIONS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.6) 100%),
    url('../../images/techtopia-vol-1/background.png'),
    linear-gradient(180deg, #87ceeb 0%, #e0f6ff 30%, #87ceeb 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  padding: 90px 20px 30px;
  text-align: center;
  overflow: hidden;
  padding-top: 160px;
}

.hero-center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.hero-logo {
  position: relative;
  margin-bottom: 2rem;
  z-index: 15;
  margin-top: 2rem;
}

.hero-logo img {
  width: 450px;
  height: auto;
  /* animation: mascotFloat 6s ease-in-out infinite; */
  filter: drop-shadow(8px 8px 0px #000);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.hero-logo img:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(12px 12px 0px #000);
}

@keyframes mascotFloat {
  0%, 100% { 
    transform: translateY(0) rotate(-1deg) scale(1); 
  }
  25% { 
    transform: translateY(-15px) rotate(1deg) scale(1.02); 
  }
  50% { 
    transform: translateY(-25px) rotate(-0.5deg) scale(0.98); 
  }
  75% { 
    transform: translateY(-10px) rotate(1.5deg) scale(1.01); 
  }
}

.hero-content {
  text-align: center;
  max-width: 650px;
}

.hero-title {
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  /* font-size: clamp(2.5rem, 5vw, 3.5rem); */
  /* font-weight: 900; */
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  -webkit-text-stroke: 0;
  animation: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.hero-title span {
  color: #fff;
  -webkit-text-stroke: 0;
}

.hero-theme {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-secondary);
  text-shadow: 3px 3px 0px #000;
  margin-bottom: 1.5rem;
  /* font-weight: 700; */
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.hero-description {
  /* font-size: clamp(0.9rem, 2vw, 1rem); */
  max-width: 600px;
  line-height: 1.6;
  color: var(--color-light);
  text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.7);
  padding: 1.5rem;
  border: 3px solid #000;
  border-radius: 10px;
  /* font-weight: 500; */
  letter-spacing: 0.3px;
  margin: 0 auto 2rem auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  padding: 10px 16px;
  min-width: 120px;
  /* font-weight: 700; */
  display: flex;
  width: auto;
  justify-content: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

/* Enhanced Ground Layer */
.ground-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(0deg, var(--color-dirt) 0%, var(--color-grass) 60%, var(--color-grass) 100%);
  border-top: 4px solid #000;
  z-index: 2;
  animation: groundShimmer 6s ease-in-out infinite;
}

@keyframes groundShimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

.ground-layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: 
    repeating-linear-gradient(90deg, 
      transparent 0px, 
      transparent 15px, 
      rgba(0,0,0,0.15) 15px, 
      rgba(0,0,0,0.15) 17px
    );
  animation: grassWave 3s ease-in-out infinite;
}

@keyframes grassWave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(2px); }
}

/* ==========================================================================
   5. General Section Styles
   ========================================================================== */
section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

/* Enhanced Section Titles - Yellow Font with Red Border and Glow */
.section-title {
  color: #FFD700;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.4rem, 3vw, 2rem);
  /* font-weight: 900; */
  margin-bottom: 2.5rem;
  position: relative;
  text-shadow:
    -3px -3px 0 #000,
    3px -3px 0 #000,
    -3px 3px 0 #000,
    3px 3px 0 #000,
    0px 3px 0 #000,
    3px 0px 0 #000,
    0px -3px 0 #000,
    -3px 0px 0 #000;
  letter-spacing: 2px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-text-stroke: 0;
  animation: none;
}

/* Garis putus-putus kuning sebagai pembatas section (termasuk FAQ, kecuali di bawah footer) */
section:not(:last-of-type) {
  border-bottom: 4px dashed #FFD700;
}

.section-title span {
  color: inherit;
  -webkit-text-stroke: 0;
}

.competitions::before,
.competitions::after,
.faq::before,
.faq::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

@keyframes titleGlow {
  0% { 
    text-shadow: 
      0 0 12px #ffd700,
      0 0 32px #ffd700,
      4px 4px 0px #000;
  }
  100% {
    text-shadow: 
      0 0 24px #ffd700,
      0 0 48px #ffd700,
      4px 4px 0px #000;
  }
}

.section-title::after {
  display: none;
}

.section-subtitle {
  color: var(--color-light);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 600px;
  text-shadow: 2px 2px 0px rgba(30, 58, 138, 0.6);
    opacity: 0.9;
}

/* ==========================================================================
   6. Objectives Section (Underground/Cave Theme) - CLEAN DESIGN
   ========================================================================== */
.objectives {
  background: 
    linear-gradient(180deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.objectives .container {
  position: relative;
  z-index: 2;
}

.objectives .section-title {
  color: var(--color-secondary);
  text-shadow: 4px 4px 0px #000;
}

.objectives .section-subtitle {
  color: var(--color-light);
  margin-bottom: 3rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Improved Grid Layout - 2 Rows */
.objectives-flex {
  display: flex;
  /* flex-wrap: wrap; */

}

/* Enhanced Card Design - Based on Reference Image */
.objective-card {
  
  background: 
    linear-gradient(145deg, #ffffff, #f8f9fa);
  border: var(--border-pixel);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
  margin: 10rem;
  box-shadow: var(--shadow-pixel);
  border-radius: 0;
  image-rendering: pixelated;
  width: 50%;
  
}

.objective-card:nth-child(1) {
  border-top: 8px solid #28a745;
}

.objective-card:nth-child(2) {
  border-top: 8px solid #28a745;
}

.objective-card:nth-child(3) {
  border-top: 8px solid #28a745;
}

.objective-card:nth-child(4) {
  border-top: 8px solid #28a745;
}

.objective-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    var(--shadow-pixel),
    0 0 20px rgba(255, 215, 0, 0.2);
}

.objective-card .card-title {
  color: #1e3a8a;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
  /* font-weight: 900; */
  letter-spacing: 1px;
  image-rendering: pixelated;
}

.objective-card .card-description {
  color: #666;
  opacity: 0.95;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  text-shadow: none;
  image-rendering: pixelated;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  

  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  padding: 0 1rem;
  }
  
  .objective-card {
    padding: 3rem 2rem;
  }
  
  .objective-icon-box {
    width: 120px;
    height: 120px;
    margin-bottom: 2.5rem;
  }
  
  .objective-icon-box::before {
    font-size: 4rem;
  }
}

/* ==========================================================================
   7. Competitions Section (Space/Night Theme) - CLEAN BACKGROUND
   ========================================================================== */
.competitions {
  background: 
    linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.competitions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(3px 3px at 20% 30%, var(--color-neon-blue), transparent),
    radial-gradient(2px 2px at 40% 70%, var(--color-neon-pink), transparent),
    radial-gradient(1px 1px at 90% 40%, var(--color-neon-green), transparent),
    radial-gradient(2px 2px at 60% 10%, var(--color-secondary), transparent),
    radial-gradient(3px 3px at 80% 80%, var(--color-neon-purple), transparent);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px;
  animation: starsTwinkle 15s ease-in-out infinite;
  z-index: 1;
}

/* Arcade Pixel Rain Animation */
.competitions::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 15px,
      rgba(255, 215, 0, 0.3) 15px,
      rgba(255, 215, 0, 0.3) 16px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 20px,
      rgba(255, 20, 147, 0.2) 20px,
      rgba(255, 20, 147, 0.2) 21px
    );
  background-size: 30px 30px, 40px 40px;
  animation: pixelRain 8s linear infinite;
  z-index: 1;
  opacity: 0.4;
}

@keyframes pixelRain {
  0% { transform: translateY(-100px); }
  100% { transform: translateY(100vh); }
}

/* Simplified Competition Cards - Sharp Borders */
.competitions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  /* padding: 2rem; */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.competition-card {
  background: 
    linear-gradient(145deg, #1e3a8a, #3b82f6),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      rgba(255,255,255,0.05) 8px,
      rgba(255,255,255,0.05) 16px
    ),
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
  background-size: 
    100% 100%,
    16px 16px,
    200px 200px,
    150px 150px;
  border: var(--border-pixel);
  color: var(--color-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  min-height: 380px;
  box-shadow: var(--shadow-pixel);
  border-radius: 0;
}

.competition-card::before {
  display: none;
}

.competition-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    var(--shadow-pixel),
    var(--glow-blue);
}

.competition-card .card-header {
  padding: 2rem 1.5rem 1rem 1.5rem;
  text-align: center;
  background: 
    linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 2;
}

.competition-card .card-header::before {
  display: none;
}

.competition-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.competition-card-flex {
  height: 100%;
}
.card-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-secondary);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0px rgba(30, 58, 138, 0.8), 0 0 15px rgba(255,215,0,0.6);
  /* font-weight: 900; */
  letter-spacing: 1px;
  position: relative;
}

.competition-card .card-title::after {
  display: none;
}
.competition-card-text {
  
    height: 100%;
    display: flex;
    align-content: space-between;
    flex-direction: column;
    justify-content: space-between;

}
.card-description {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  text-shadow: 1px 1px 0px rgba(30, 58, 138, 0.6);
  padding: 0 0.5rem;
}

.registration-info {
  margin-bottom: 1.5rem;
  border: 3px dashed rgba(255,215,0,0.6);
  padding: 1.2rem;
  background: 
    rgba(0,0,0,0.4),
    linear-gradient(45deg, rgba(255,215,0,0.1), rgba(255,255,0,0.1), rgba(255,215,0,0.1));
  border-radius: 15px;
  box-shadow: var(--shadow-pixel-small);
  position: relative;
  overflow: hidden;
}

.registration-info::before {
  display: none;
}

.registration-info:hover::before {
  display: none;
}

/* Enhanced Card Actions - Same as Login Buttons */
.card-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.card-actions .btn {
  font-family: var(--font-pixel);
  padding: 14px 24px;
  border: var(--border-pixel);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease-out;
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  /* font-weight: bold; */
  white-space: nowrap;
  min-width: 140px;
  line-height: 1.2;
  background: none;
  user-select: none;
  flex: 1;
  color: var(--color-light);
}

.card-actions .btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
}

.card-actions .btn:active {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0px #000;
}

.card-actions .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #6495ed);
  color: var(--color-light);
  box-shadow: var(--shadow-pixel);
}

.card-actions .btn-secondary {
  background: linear-gradient(135deg, var(--color-secondary), #ffff00);
  color: var(--color-dark);
  box-shadow: var(--shadow-pixel);
}

.card-actions .btn-success {
  background: linear-gradient(135deg, var(--color-green), #90ee90);
  color: var(--color-light);
  box-shadow: var(--shadow-pixel);
}

.card-actions .btn-outline {
  background-color: var(--color-dark);
  color: var(--color-secondary);
  box-shadow: var(--shadow-pixel);
  border: 4px solid black;
}

/* Simplified Timeline Animations - Remove Heavy Emoticon Animations */
.registration-wave {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem 1.2rem;
  align-items: center;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.registration-wave:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--color-secondary);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(255,215,0,0.2);
}

.registration-wave:last-child {
  margin-bottom: 0;
}

/* Remove emoticon animations */
.registration-wave::before {
  display: none;
}

.registration-wave:hover::before {
  display: none;
}

.wave-label {
  /* font-weight: bold; */
  color: var(--color-secondary);
  text-shadow: 1px 1px 0px rgba(30, 58, 138, 0.6);
  font-size: 0.9rem;
  position: relative;
}

.wave-label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.registration-wave:hover .wave-label::after {
  width: 100%;
}

.wave-date {
  color: var(--color-light);
  text-shadow: 1px 1px 0px rgba(30, 58, 138, 0.6);
}

.wave-price {
  color: var(--color-neon-green);
  /* font-weight: 900; */
  text-shadow: 2px 2px 0px rgba(30, 58, 138, 0.8), 0 0 10px rgba(0,255,0,0.5);
  font-size: 1rem;
  position: relative;
}

/* Remove emoticon animations */
.wave-price::before {
  display: none;
}

.registration-wave:hover .wave-price::before {
  display: none;
}

/* Enhanced FAQ Section */
.faq {
  background: 
    linear-gradient(180deg, #2d1b69 0%, #11052c 50%, #0d0221 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(138,43,226,0.4) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(75,0,130,0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(72,61,139,0.3) 0%, transparent 70%),
    radial-gradient(circle at 10% 90%, rgba(255,20,147,0.3) 0%, transparent 50%);
  animation: mysticalGlow 20s ease-in-out infinite alternate;
  z-index: 1;
}

/* Arcade Matrix Animation */
.faq::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      rgba(0, 255, 0, 0.1) 10px,
      rgba(0, 255, 0, 0.1) 11px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 15px,
      rgba(255, 215, 0, 0.05) 15px,
      rgba(255, 215, 0, 0.05) 16px
    );
  background-size: 20px 20px, 25px 25px;
  animation: matrixRain 10s linear infinite;
  z-index: 1;
  opacity: 0.3;
}

@keyframes matrixRain {
  0% { transform: translateY(-100px); }
  100% { transform: translateY(100vh); }
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: 
    linear-gradient(145deg, #4c1d95, #6b46c1),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 12px,
      rgba(255,255,255,0.03) 12px,
      rgba(255,255,255,0.03) 24px
    );
  border: var(--border-pixel);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease-out;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-pixel);
  border-radius: 0;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 
    var(--shadow-pixel),
    var(--glow-pink);
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-light);
  position: relative;
  background: 
    linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: 
    linear-gradient(90deg, transparent, rgba(255,20,147,0.1), transparent);
}

.faq-question::before {
  content: '?';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--color-secondary);
  color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  /* font-weight: bold; */
}

.faq-question h3 {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin: 0;
  padding-left: 3rem;
  text-shadow: 2px 2px 0px #000;
  /* font-weight: 700; */
}

.faq-question i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  transition: transform 0.4s ease-in-out;
  text-shadow: 1px 1px 0px #000;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--color-neon-pink);
}

.faq-item.active {
  box-shadow: 
    var(--shadow-pixel),
    var(--glow-pink);
}

.faq-answer {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.5s, padding 0.5s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 2rem;
}

.faq-answer p {
  color: var(--color-light);
  opacity: 0.9;
  margin: 0;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  line-height: 1.8;
}

/* Enhanced Footer - Clean Design */
.footer {
  background: #fff;
  border-top: 3px solid #1E3A8A;
  padding: 0;
  margin-top: 3rem;
}

.footer-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 0 2rem 0;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  gap: 2rem;
}

.footer-logos {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
  justify-content: center;
}

.footer-logo {
  display: block;
  text-decoration: none;
}

.footer-logo img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  transition: all 0.3s;
}

.footer-logo img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
  transition: transform 0.2s, filter 0.2s;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.footer-social .social-link {
  background: #f8f9fa;
  border: 2px solid #1E3A8A;
  border-radius: 50%;
  color: #1E3A8A;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social-link:hover {
  background: #1E3A8A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.footer-links-col {
  min-width: 160px;
  flex: 1 1 0;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-section {
  text-align: left;
}

.footer-title {
  color: #1E3A8A;
  font-size: 1rem;
  /* font-weight: 700; */
  margin-bottom: 1.2rem;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 4px 0;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: #1E3A8A;
  transform: translateX(5px);
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.contact-info {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 0.8rem;
}

.contact-info a {
  color: #1E3A8A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid #f1f5f9;
  margin-top: 2rem;
  padding: 1.5rem 2vw 1rem 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  /* font-weight: 600; */
  color: #1E3A8A;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-credit-link {
  border: 2px solid #1E3A8A;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  color: #1E3A8A;
  /* font-weight: 600; */
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-credit-link:hover {
  background: #1E3A8A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Enhanced Interactive Elements - Global Hover Effects */

/* Interactive Header */
.nav-link {
  color: var(--color-dark);
  text-decoration: none;
  /* font-weight: 600; */
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding-bottom: 5px;
  transform: translateY(0);
}

.nav-link:hover {
  color: #1e3a8a;
  transform: translateY(-2px);
  text-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-secondary);
  transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.logo-img {
  height: 35px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

/* Interactive Hero Elements */
.hero-title {
  /* font-size: clamp(2rem, 4vw, 2.8rem); */
  color: var(--color-secondary);
  -webkit-text-stroke: 2px #fbde01;
  text-shadow: 
    0 0 12px hsl(0, 0%, 100%),
    0 0 32px hsl(0, 0%, 100%),
    4px 4px 0px #000;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  /* font-weight: 900; */
  letter-spacing: 1px;
  font-family: 'Press Start 2P', monospace;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.hero-title:hover {
  transform: scale(1.05);
  text-shadow: 
    4px 4px 0px #000,
    0 0 20px rgba(255, 215, 0, 0.8),
    0 0 40px rgba(255, 215, 0, 0.4);
}

.hero-theme {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--color-secondary);
  text-shadow: 4px 4px 0px #000;
  margin-bottom: 2rem;
  /* font-weight: 700; */
  letter-spacing: 1px;
  line-height: 1.3;
}

.hero-theme:hover {
  transform: scale(1.02);
  color: var(--color-orange);
  text-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
}

.hero-description {
  /* font-size: clamp(0.8rem, 2vw, 1rem); */
  max-width: 700px;
  line-height: 1.8;
  color: var(--color-light);
  text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.6);
  padding: 1.5rem;
  border: 4px solid #000;
  border-radius: 15px;
  /* font-weight: 500; */
  letter-spacing: 0.5px;
}

.hero-description:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.mascot-img {
  width: 160px;
  height: auto;
  animation: mascotBounce 3s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 0 0 rgba(255, 215, 0, 0));
}

.mascot-img:hover {
  transform: scale(1.05) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
  animation-play-state: paused;
}

/* Interactive Power-ups */
.power-up {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: powerUpFloat 4s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.power-up:hover {
  transform: scale(1.3) rotate(360deg);
  background: var(--color-neon-pink);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
  animation-play-state: paused;
}

/* Interactive Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-header:hover {
  transform: translateY(-5px);
}

.section-header::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-neon-pink));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.section-header:hover::before {
  width: 100px;
}

/* Interactive Objective Cards */
.objective-card {
  background: 
    linear-gradient(145deg, #654321, #8b4513),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 215, 0, 0.1) 10px,
      rgba(255, 215, 0, 0.1) 20px
    );
  border: var(--border-pixel);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-pixel);
  cursor: pointer;
}

.objective-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: 
    linear-gradient(45deg, var(--color-secondary), var(--color-orange), var(--color-neon-pink), var(--color-neon-blue));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.objective-card:hover {
  transform: translateY(-15px) scale(1.08) rotate(2deg);
  box-shadow: 
    var(--shadow-pixel),
    var(--glow-yellow),
    0 0 40px rgba(255, 215, 0, 0.3);
}

.objective-card:hover::before {
  opacity: 1;
}

.objective-icon-box {
  width: 75px;
  height: 75px;
  margin: 0 auto 1.5rem auto;
  background: 
    linear-gradient(145deg, var(--color-secondary), #ffa500),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 5px,
      rgba(0,0,0,0.1) 5px,
      rgba(0,0,0,0.1) 10px
    );
  border: var(--border-pixel);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: iconGlow 2s ease-in-out infinite alternate;
  box-shadow: var(--shadow-pixel-small);
  border-radius: 0;
  image-rendering: pixelated;
}

.objective-icon-box:hover {
  transform: scale(1.2) rotate(10deg);
  background: 
    linear-gradient(145deg, var(--color-neon-pink), var(--color-neon-blue));
  animation-play-state: paused;
}

.objective-card .card-title {
  color: var(--color-light);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0px #000;
  /* font-weight: 700; */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.objective-card .card-title:hover {
  color: var(--color-secondary);
  text-shadow: 
    2px 2px 0px #000,
    0 0 15px rgba(255, 215, 0, 0.8);
  transform: scale(1.05);
}

.objective-card .card-description {
  color: var(--color-light);
  opacity: 0.9;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  line-height: 1.6;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 0.5rem;
  border-radius: 8px;
}

.objective-card .card-description:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Interactive FAQ Items */
.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-light);
  position: relative;
  background: 
    linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  user-select: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question:hover {
  background: 
    linear-gradient(90deg, transparent, rgba(255,20,147,0.15), transparent);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.faq-question::before {
  content: '?';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--color-secondary);
  color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  /* font-weight: bold; */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question:hover::before {
  transform: translateY(-50%) scale(1.2) rotate(10deg);
  background: var(--color-neon-pink);
  color: var(--color-light);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.8);
}

.faq-question h3 {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin: 0;
  padding-left: 3rem;
  text-shadow: 2px 2px 0px #000;
  /* font-weight: 700; */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question:hover h3 {
  color: var(--color-secondary);
  text-shadow: 
    2px 2px 0px #000,
    0 0 10px rgba(255, 215, 0, 0.6);
}

.faq-question i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 1px 1px 0px #000;
  flex-shrink: 0;
}

.faq-question:hover i {
  transform: scale(1.2);
  color: var(--color-neon-pink);
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

/* Interactive Footer Elements */
.footer-logo img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

.footer-logo img:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  filter: brightness(1.2);
}

.footer-social .social-link {
  background: #f8f9fa;
  border: 2px solid #1E3A8A;
  border-radius: 50%;
  color: #1E3A8A;
  width: 40px;
  height: 40px;
    display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  cursor: pointer;
}

.footer-social .social-link:hover {
  background: #1E3A8A;
  color: #fff;
  transform: translateY(-5px) scale(1.1) rotate(10deg);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.footer-social .social-link.facebook:hover { color: #1877f3; }
.footer-social .social-link.instagram:hover { color: #e4405f; }
.footer-social .social-link.youtube:hover { color: #ff0000; }

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 4px 0;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.footer-links a:hover {
  color: #1E3A8A;
  transform: translateX(8px) scale(1.05);
  text-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.footer-links a::after {
  content: "";
    position: absolute;
  bottom: 0;
    left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 1px;
}

.footer-links a:hover::after {
    width: 100%;
}

.contact-info a {
  color: #1E3A8A;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
}

.contact-info a:hover {
  color: #FFD700;
  transform: translateY(-2px);
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.contact-info a::before {
  display: none !important;
  content: none !important;
}

.footer-credit-link {
  border: 2px solid #1E3A8A;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  color: #1E3A8A;
  /* font-weight: 600; */
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.footer-credit-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.footer-credit-link:hover::before {
  left: 100%;
}

.footer-credit-link:hover {
  background: #1E3A8A;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

/* Interactive Buttons */
.btn {
  font-family: var(--font-pixel);
  padding: 12px 20px;
  border: var(--border-pixel);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-light);
  /* font-weight: bold; */
  text-shadow: 2px 2px 0px #000;
  box-shadow: var(--shadow-pixel);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
    width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    var(--shadow-pixel),
    0 0 20px rgba(255, 215, 0, 0.6);
  background: var(--color-secondary);
  color: #fff;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* Interactive Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  border-radius: 6px;
  border: 2px solid #f1f1f1;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-neon-pink));
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Interactive Selection */
::selection {
  background: var(--color-secondary);
  color: #000;
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-secondary);
  color: #000;
  text-shadow: none;
}

/* ==========================================================================
   9. RESPONSIVE MOBILE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  /* Header Mobile */
  .nav-wrapper {
    height: 50px;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .nav-list {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  /* Hero Mobile */
  .hero {
    padding: 100px 15px 50px;
    min-height: 80vh;
    padding-top: 120px;
  }
  
  .hero-logo, .mascot-img {
    margin-top: 1.2rem;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-theme {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .hero-description {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    padding: 1.5rem;
  }

  .mascot-img {
    width: 150px;
  }
  
  .hero-buttons {
    gap: 1rem;
  }
  
  .btn {
    min-width: 200px;
    padding: 12px 20px;
    font-size: 0.7rem;
  }
  
  /* Section Titles Mobile */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  /* Objectives Mobile */
  .objectives {
    padding: 4rem 0;
  }
  
  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .objective-card {
    padding: 2.5rem 1.5rem;
  }
  
  .objective-icon-box {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
  }
  
  .objective-icon-box::before {
    font-size: 4rem;
  }
  
  .objective-card .card-title {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 1.5rem;
  }
  
  .objective-card .card-description {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }
  
  /* Competitions Mobile */
  .competitions {
    padding: 3rem 0;
  }
  
  .competition-card {
    min-height: 320px;
  }
  
  .competition-card .card-header {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  
  .competition-card .card-content {
    padding: 1rem;
  }
  
  .competition-card .card-title {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }
  
  .competition-card .card-description {
    font-size: clamp(0.8rem, 3.5vw, 0.95rem);
  }
  
  .card-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .card-actions .btn {
    min-width: 100%;
    font-size: 0.7rem;
    padding: 10px 16px;
  }
  
  /* FAQ Mobile */
.faq {
    padding: 3rem 0;
}

.faq-container {
    padding: 0 1rem;
  }
  
  .faq-question {
    padding: 1.5rem;
  }
  
  .faq-question h3 {
    font-size: clamp(0.8rem, 4vw, 1rem);
    padding-left: 2.5rem;
  }
  
  .faq-question::before {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
}

  .faq-item.active .faq-answer {
    padding: 1.5rem;
  }
  
  .faq-answer p {
    font-size: clamp(0.75rem, 3.5vw, 0.9rem);
  }
  
  /* Footer Mobile */
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0 1rem 0;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
    min-width: auto;
    gap: 1.5rem;
  }
  
  .footer-logos {
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.2rem;
  }
  
  .footer-social {
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
  }
  
  .footer-links-col {
    min-width: auto;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
  }
  
  .footer-credit {
    justify-content: center;
  }
  
  .hero-center {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1.5rem;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
    }
    
    .mascot-img {
    width: 400px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-logo img {
    width: 300px;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile */
  .hero-title {
    font-size: clamp(1.5rem, 10vw, 2rem);
  }
  
  .hero-theme {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
  }
  .hero-buttons .btn {
  width: 100%;
  }
  .mascot-img {
    width: 120px;
  }
  
  .objective-card {
    padding: 2rem 1rem;
  }
  
  .objective-icon-box {
    width: 100px;
    height: 100px;
  }
  
  .objective-icon-box::before {
    font-size: 3.5rem;
  }
  
  .competition-card {
    min-height: 300px;
  }
  
  .btn {
    min-width: 180px;
    font-size: 0.65rem;
    padding: 10px 16px;
  }
}

.footer-logo img {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  transition: none !important;
}

.footer-logo img:hover {
  transform: none !important;
}

.footer-social .social-link {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  color: #1E3A8A;
  width: auto;
  height: auto;
  font-size: 1.5rem;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none !important;
}

.footer-social .social-link:hover {
  background: none !important;
  color: #FFD700;
  box-shadow: none !important;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .footer-logos, .footer-social {
    /* flex-direction: column; */
    align-items: center;
    gap: 2rem;
  }
}

.footer-logos {
  margin-bottom: 0.3rem;
}

.footer-social {
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.footer-social .social-link {
  font-size: 2.2rem;
}

@media (max-width: 900px) {
  .footer-logos {
    gap: 0.2rem;
    margin-bottom: 0.1rem;
  }
  .footer-social {
    gap: 0.3rem;
    margin-bottom: 0.1rem;
  }
  .footer-social .social-link {
    font-size: 2rem;
  }
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 5px;
  margin: 4px 0;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  nav .nav-list {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 100vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    z-index: 1000;
    border-bottom: 4px solid #ffd700;
  }
  nav .nav-list.active {
    display: flex;
  }
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
  nav .nav-list {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    width: auto;
    padding: 0;
    box-shadow: none;
    border: none;
  }
}

/* Objectives grid: 4 columns on desktop, 1 on mobile, padding match .container */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  margin-top: 4rem;
  padding: 0 20px;
}
@media (max-width: 1100px) {
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
    }
}

@media (max-width: 600px) {
  .registration-wave {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-align: left;
    word-break: break-word;
    padding: 0.7rem;
  }
  .wave-label, .wave-date, .wave-price {
    font-size: 0.95em;
    display: block;
    text-align: left;
    margin-bottom: 0.2em;
    white-space: normal;
  }
  .wave-price {
    margin-top: 0.2em;
    float: none;
    word-break: break-word;
    font-size: 1em;
  }
  .footer-logos {
    gap: 0.5rem !important;
  }
  .footer-logo img {
    max-width: 60px;
    height: auto;
  }
}

.objective-icon {
  display: block;
  margin: 0 auto 2rem auto;
  width: 120px;
  height: 120px;
  image-rendering: pixelated;
  filter: drop-shadow(2px 2px 0 #000);
}

@media (max-width: 768px) {
  .objective-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.2rem;
  }
}

.footer-main, .footer-links, .footer-bottom {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.faq-answer {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.5s, padding 0.5s;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 2rem;
}

  .registration-wave {
         grid-template-columns: 1fr;
        gap: 0.5rem;
        font-size: 0.85rem;
        text-align: left;
        word-break: break-word;
        padding: 0.7rem;

  }
@media screen and (max-width:600px){
  .competitions-grid {
    grid-template-columns: 1fr!important; 
        gap: 2rem;
    padding: 0 1rem;
  }
  .objectives-flex {
    flex-direction: column;
  }
  .objective-card {
    width: 100%;
  }
}