/*
Theme Name: Knoxxi Games 2025
Description: Custom WordPress theme for Knoxxi Games featuring brand colors and Museo Sans typography.
Author: Knoxxi Games
Version: 1.0.0
License: GPL v2 or later
Text Domain: knoxxi-games-2025
*/

/* ================================
   CSS VARIABLES - BRAND COLORS & TYPOGRAPHY
   ================================ */
:root {
  /* Primary Brand Colors */
  --color-primary: #00a5d9; /* PANTONE 639 U - RGB 0/165/217 */
  --color-secondary: #f26649; /* PANTONE 7417 U - RGB 242/102/73 */
  --color-accent: #00274d; /* PANTONE 5395 U - RGB 0/39/76 */
  --color-bg: #ffffff; /* White Paper - RGB 255/255/255 */
  --color-text: #00274d; /* Dark Blue for text */
  --color-link: #00a5d9; /* Primary color for links */

  /* Typography System */
  --font-family-primary: "Museo Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-weight-light: 100;
  --font-weight-normal: 300;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Typography Scale - Clear Hierarchy */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-md: 1.125rem; /* 18px - Added missing variable */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */
  --font-size-6xl: 3.75rem; /* 60px */

  /* Line Heights */
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;

  /* Typography Hierarchy Colors */
  --text-primary: var(--color-accent); /* Main headings */
  --text-secondary: var(--color-primary); /* Sub-headings */
  --text-body: var(--color-text); /* Body text */
  --text-muted: rgba(0, 39, 77, 0.7); /* Muted text */
  --text-light: rgba(0, 39, 77, 0.5); /* Light text */
  --color-text-muted: rgba(0, 39, 77, 0.7); /* Added missing variable */
}

/* ================================
   GLOBAL STYLES
   ================================ */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Fix for any potential wide content */
img,
video,
iframe,
table,
pre {
  max-width: 100%;
  height: auto;
}

/* ================================
   TYPOGRAPHY HIERARCHY SYSTEM
   ================================ */

/* Base Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  color: var(--text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 1rem 0;
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
}

h3 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

h4 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

h5 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

h6 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

p {
  margin: 0 0 1rem 0;
}

/* Links */
a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Buttons */
button,
.btn,
input[type="submit"],
input[type="button"] {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 165, 217, 0.3);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.text-primary {
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary);
}
.text-accent {
  color: var(--color-accent);
}
.bg-primary {
  background-color: var(--color-primary);
}
.bg-secondary {
  background-color: var(--color-secondary);
}
.bg-accent {
  background-color: var(--color-accent);
}

/* WordPress Core Styles */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
}

.alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

/* ================================
   SITE LAYOUT STYLES
   ================================ */

.site {
  overflow-x: hidden;
  max-width: 100%;
}

/* Header Styles */
.site-header {
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-logo .logo-svg {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
}

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

.site-logo img,
.custom-logo {
  max-height: 60px;
  width: auto;
}

.site-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.site-title a {
  color: var(--color-accent);
  text-decoration: none;
}

.site-description {
  font-size: 0.875rem;
  color: var(--color-text);
  margin: 0;
  opacity: 0.7;
}

/* Navigation Styles */
.primary-navigation {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--color-accent);
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.nav-menu .menu-item {
  position: relative;
}

.nav-menu a {
  color: var(--color-accent);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  padding: 0.75rem 0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  color: #000000;
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
}

/* Footer Styles - Professional & Bold */
.site-footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #fff;
  padding: 5rem 0 2.5rem;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}

.footer-top {
  margin-bottom: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left: Logo */
.footer-tagline {
  display: flex;
  align-items: center;
}

.footer-logo {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Center: Social Media */
.footer-social {
  text-align: center;
}

.footer-social h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-icon-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;
}

.social-icon-link:hover::before {
  left: 100%;
}

.social-icon-link:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.social-icon-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.social-icon-link:hover img {
  filter: brightness(0) invert(0);
}

/* Right: Contact */
.footer-contact {
  text-align: right;
}

.footer-contact h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-email {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  position: relative;
}

.contact-email::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition: width 0.3s ease;
}

.contact-email:hover::after {
  width: 100%;
}

.contact-email:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

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

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
  transform: translateX(3px);
}

/* Bottom Section */
.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: #fff;
  text-decoration: none;
}

.nav-link.active {
  color: #fff;
  font-weight: var(--font-weight-semibold);
}

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

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-copyright p {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
}

.decorative-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.scroll-to-top img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.scroll-to-top:hover img {
  filter: brightness(0) invert(0);
}

/* ================================
   KNOXXI GAMES 2025 - HOMEPAGE STYLES
   ================================ */

/* HERO SECTION - Premium Grid Layout */
.hero-games {
  background: var(--color-bg);
  color: #000000;
  padding: 2rem 0 3rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 90vh;
}

.hero-content {
  text-align: left;
  max-width: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 165, 217, 0.15);
  margin: 0 40px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background: var(--color-bg);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 165, 217, 0.2);
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(0, 165, 217, 0.1);
  backdrop-filter: blur(10px);
}

.floating-badge:nth-child(1) {
  top: 8%;
  right: 3px;
  animation-delay: 0s;
  border-left: 3px solid var(--color-secondary);
}

.floating-badge:nth-child(2) {
  bottom: 25%;
  left: 4px;
  animation-delay: 2s;
  background: linear-gradient(
    135deg,
    var(--color-bg) 0%,
    rgba(242, 102, 73, 0.05) 100%
  );
  color: var(--color-accent);
}

.floating-badge:nth-child(3) {
  top: 55%;
  right: 4px;
  animation-delay: 4s;
  border-top: 3px solid var(--color-secondary);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(2deg);
  }
  66% {
    transform: translateY(10px) rotate(-2deg);
  }
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(0, 165, 217, 0.03) 0%,
    transparent 50%
  );
  z-index: -1;
}

/* Subtle Health & Games Background Elements */
.hero-games::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(0, 165, 217, 0.05) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: -1;
}

.hero-games::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(242, 102, 73, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* Additional accent elements */
.hero-visual::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-visual::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    transparent 100%
  );
  border-radius: 2px;
  opacity: 0.3;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 0.4;
    transform: scaleX(1.2);
  }
}

.hero-health-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.health-shape {
  position: absolute;
  opacity: 0.03;
}

.health-shape.dumbbell {
  top: 20%;
  left: 15%;
  width: 40px;
  height: 20px;
  background: #000000;
  border-radius: 10px;
}

.health-shape.dumbbell::before,
.health-shape.dumbbell::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 24px;
  background: #000000;
  border-radius: 6px;
  top: -2px;
}

.health-shape.dumbbell::before {
  left: -6px;
}

.health-shape.dumbbell::after {
  right: -6px;
}

.health-shape.heart {
  top: 60%;
  left: 10%;
  width: 30px;
  height: 30px;
  background: var(--color-secondary);
  transform: rotate(-45deg);
  border-radius: 50% 0 50% 50%;
}

.health-shape.heart::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--color-secondary);
  border-radius: 50%;
  top: -15px;
  left: 0;
}

.health-shape.heart::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--color-secondary);
  border-radius: 50%;
  top: 0;
  left: 15px;
}

.health-shape.trophy {
  top: 40%;
  right: 20%;
  width: 25px;
  height: 35px;
  background: var(--color-primary);
  border-radius: 50% 50% 10% 10%;
}

.health-shape.trophy::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 3px;
}

.health-shape.runner {
  top: 70%;
  right: 15%;
  width: 35px;
  height: 35px;
  background: #000000;
  border-radius: 50% 50% 50% 0;
  transform: rotate(25deg);
}

.event-meta {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
}

.hero-title .title-main {
  display: block;
  font-size: 1em;
  margin-bottom: 0.3rem;
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
}

.hero-title .title-tagline {
  display: block;
  font-size: 0.55em;
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
  opacity: 0.6;
  border-radius: 2px;
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  max-width: 480px;
  margin: 1.5rem 0 2rem;
  line-height: var(--line-height-relaxed);
  color: var(--text-body);
  font-weight: var(--font-weight-normal);
  opacity: 0.9;
}

.hero-description .highlight {
  color: var(--text-secondary);
  font-weight: var(--font-weight-bold);
}

/* Countdown Timer - Premium Ticker */
.countdown-container {
  margin: 2.5rem 0 2rem;
  max-width: 520px;
  position: relative;
  background: #000000;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 2rem;
}

.countdown-title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.5rem;
  color: #999999;
  line-height: var(--line-height-normal);
  text-align: center;
}

.countdown-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.countdown-item {
  background: transparent;
  border: none;
  padding: 1.5rem 0.8rem;
  text-align: center;
  position: relative;
}

.countdown-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-black);
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.countdown-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999999;
}

/* Hero CTAs */
.hero-cta-container {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0090c4 100%);
  color: var(--color-bg);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 165, 217, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-primary::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 4px;
  height: 100%;
  background: var(--color-secondary);
  opacity: 0.7;
}

.cta-primary:hover {
  background: linear-gradient(135deg, #0090c4 0%, var(--color-primary) 100%);
  border-color: #0090c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 165, 217, 0.35);
  color: var(--color-bg);
}

.cta-secondary {
  background: var(--color-bg);
  color: var(--color-primary);
  border-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.cta-secondary::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    transparent 50%
  );
  opacity: 0.4;
}

.cta-secondary:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 165, 217, 0.25);
}

.cta-text {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.cta-subtext {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: var(--font-weight-medium);
}

/* Scroll Indicator */

/* FEATURE HIGHLIGHTS */
.feature-highlights {
  padding: 8rem 0;
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   BADGE COMPONENTS - STANDARDIZED SYSTEM
   ================================ */

/* Base Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Badge Icon */
.badge-icon {
  font-size: 1.1em;
  flex-shrink: 0;
}

/* Badge Text */
.badge-text {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Badge Variants */
.badge--primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
  box-shadow: 0 4px 15px rgba(0, 165, 217, 0.3);
}

.badge--secondary {
  background: linear-gradient(135deg, var(--color-secondary), #e55b43);
  color: white;
  box-shadow: 0 4px 15px rgba(242, 102, 73, 0.3);
}

.badge--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  color: white;
}

.badge--platinum {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: white;
}

.badge--gold {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: white;
}

.badge--silver {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  color: white;
}

/* Badge Animations */
.badge--animated .badge-icon {
  animation: badgeIconFloat 3s infinite ease-in-out;
}

.badge--animated .badge-icon:nth-child(1) {
  animation-delay: 0s;
}

.badge--animated .badge-icon:nth-child(3) {
  animation-delay: 1.5s;
}

@keyframes badgeIconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Badge Hover Effects */
.badge--primary::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;
}

.badge--primary:hover::before {
  left: 100%;
}

/* Mobile Responsive Badge Styles */
@media (max-width: 768px) {
  .badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .badge-icon {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    gap: 0.3rem;
    max-width: 280px;
  }

  .badge-icon {
    font-size: 0.9rem;
  }

  .badge--glass {
    flex-direction: column;
    padding: 0.4rem 0.6rem !important;
    gap: 0.2rem !important;
    max-width: 200px !important;
  }
}

@media (max-width: 360px) {
  .badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    max-width: 240px;
  }

  .badge-icon {
    font-size: 0.8rem;
  }

  .badge--glass {
    padding: 0.3rem 0.5rem !important;
    gap: 0.15rem !important;
    max-width: 160px !important;
  }

  .badge--glass .badge-text {
    font-size: 0.6rem !important;
  }

  .badge--glass .badge-icon {
    font-size: 0.7rem !important;
  }
}

.section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 165, 217, 0.3);
  position: relative;
  overflow: hidden;
}

.section-badge::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;
}

.section-badge:hover::before {
  left: 100%;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: var(--line-height-tight);
}

.section-description {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  max-width: 480px;
  margin: 1.5rem auto 2rem;
  line-height: var(--line-height-relaxed);
  color: var(--text-body);
  font-weight: var(--font-weight-normal);
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--color-bg);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 39, 77, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 39, 77, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 39, 77, 0.15);
}

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

.feature-highlight {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  color: var(--color-bg);
  transform: scale(1.05);
}

.feature-highlight .feature-title,
.feature-highlight .feature-description {
  color: var(--color-bg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 165, 217, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.feature-highlight .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: var(--line-height-snug);
}

.feature-description {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: 2rem;
  color: var(--text-body);
  opacity: 0.9;
}

.feature-list {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.feature-highlight .feature-list li::before {
  color: var(--color-bg);
}

.feature-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-link:hover {
  transform: translateX(4px);
  color: var(--color-secondary);
}

.feature-highlight .feature-link {
  color: var(--color-bg);
}

.feature-highlight .feature-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* APP PROMO SECTION */
.app-promo {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    var(--color-bg) 50%,
    #f8f9fa 100%
  );
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.phone-mockup {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  aspect-ratio: 9/19.5;
  background: #000;
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.app-features-floating {
  position: relative;
}

.floating-feature {
  position: absolute;
  background: var(--color-bg);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 39, 77, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

.floating-feature:nth-child(1) {
  top: 20%;
  right: -20%;
}

.floating-feature:nth-child(2) {
  top: 50%;
  left: -30%;
}

.floating-feature:nth-child(3) {
  bottom: 20%;
  right: -15%;
}

.app-title {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
}

.app-description {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  max-width: 480px;
  margin: 1.5rem 0 2rem;
  line-height: var(--line-height-relaxed);
  color: var(--text-body);
  font-weight: var(--font-weight-normal);
  opacity: 0.9;
}

.app-benefits {
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 39, 77, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
}

.benefit-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(0, 165, 217, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.benefit-text p {
  font-size: var(--font-size-sm);
  color: var(--text-body);
  opacity: 0.9;
  margin: 0;
  line-height: var(--line-height-normal);
}

.app-cta-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-cta {
  align-self: flex-start;
}

.app-stores {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 2px solid #000;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 60px;
}

.store-badge:hover {
  background: #f8f8f8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2px;
}

.store-badge img {
  height: 32px;
  width: auto;
}

.store-badge .store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge .store-text .store-label {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 500;
}

.store-badge .store-text .store-name {
  font-size: 1rem;
  font-weight: 700;
}

/* SPONSORS SECTION */
.sponsors {
  padding: 6rem 0;
  background: var(--color-bg);
}

.sponsors-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sponsors-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.sponsors-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  line-height: var(--line-height-normal);
}

.sponsors-slider {
  padding: 2rem 0;
}

.sponsors-track {
  display: flex;
  gap: 3rem;
  animation: scroll-sponsors 30s linear infinite;
}

@keyframes scroll-sponsors {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsor-item {
  flex: 0 0 auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.sponsor-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.sponsor-item img {
  height: 60px;
  width: auto;
  max-width: 180px;
}

/* SOCIAL PROMO SECTION */
.social-promo {
  padding: 6rem 0;
  background: var(--color-accent);
  color: var(--color-bg);
  text-align: center;
}

.social-content {
  position: relative;
}

.social-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
}

.social-description {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  max-width: 480px;
  margin: 1.5rem auto 4rem;
  line-height: var(--line-height-relaxed);
  color: var(--text-body);
  font-weight: var(--font-weight-normal);
  opacity: 0.9;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  text-decoration: none;
  color: var(--color-bg);
  transition: all 0.3s ease;
  min-width: 120px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  color: var(--color-bg);
}

.social-icon {
  font-size: 2rem;
}

.social-name {
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
}

.social-handle {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hashtag-banner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hashtag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
}

/* PERSISTENT CTA BAR */
.persistent-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-accent);
  color: var(--color-bg);
  z-index: 1000;
  padding: 1rem 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.persistent-cta.show {
  transform: translateY(0);
}

.persistent-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.persistent-text {
  display: flex;
  flex-direction: column;
}

.cta-urgency {
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-message {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
}

.persistent-btn {
  background: var(--color-secondary);
  color: var(--color-bg);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
}

.persistent-btn:hover {
  background: #ff5722;
  transform: scale(1.05);
  color: var(--color-bg);
}

/* Page Header */
.page-header {
  background-color: var(--color-accent);
  color: var(--color-bg);
  padding: 3rem 0;
}

.page-title {
  font-size: 2.5rem;
  margin: 0;
}

/* Color Switcher (from JavaScript) */
.color-switcher {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--color-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 39, 77, 0.1);
}

.color-switcher h4 {
  margin-bottom: 1rem;
  text-align: center;
}

.color-btn {
  margin: 0.25rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-btn:hover {
  transform: scale(1.05);
}

/* ================================
   ADDITIONAL ANIMATIONS & EFFECTS
   ================================ */

/* Countdown animations */

/* CTA animations */
.cta-primary.clicked,
.cta-secondary.clicked {
  transform: scale(0.95);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  width: 20px;
  height: 20px;
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Scroll-in animations */
.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item,
.feature-card,
.benefit-item,
.social-link {
  opacity: 0;
  transform: translateY(30px);
}

/* Header scroll states */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 39, 77, 0.1);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

/* Event live indicator */
.event-live {
  font-size: 2rem;
  font-weight: var(--font-weight-black);
  color: #ff4444;
  animation: eventLive 2s ease-in-out infinite;
}

@keyframes eventLive {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Particle effects */
.particle {
  will-change: transform;
}

/* Loading states */
body.loading .hero-games {
  opacity: 0;
}

body.loaded .hero-games {
  opacity: 1;
  transition: opacity 1s ease;
}

.hero-games.ready .hero-content {
  animation: heroContentSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroContentSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablet styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    align-items: start;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    order: 2;
    min-height: auto;
  }

  .hero-visual {
    order: 1;
  }

  .hero-title .title-main {
    font-size: 1.1em;
  }

  .hero-title .title-tagline {
    font-size: 0.7em;
  }

  .hero-image-container {
    max-width: 450px;
    height: 500px;
    margin: 0 35px;
  }

  .hero-cta-container {
    justify-content: center;
  }

  .countdown-container {
    margin: 2.2rem auto;
    max-width: 460px;
    padding: 1.3rem 1.6rem 1.6rem;
  }

  .summary-grid,
  .app-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .image-collage {
    height: 400px;
  }

  .floating-feature {
    position: static;
    margin: 1rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-highlight {
    transform: none;
  }

  .social-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero-games {
    min-height: auto;
    padding: 2rem 0 3rem;
    background: var(--color-bg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-visual {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-image-container {
    max-width: 280px;
    height: 320px;
    margin: 0 auto;
  }

  .floating-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
  }

  .floating-badge:nth-child(1) {
    right: -2px;
    top: 10%;
  }

  .floating-badge:nth-child(2) {
    left: -2px;
    top: 50%;
  }

  .floating-badge:nth-child(3) {
    right: -2px;
    bottom: 10%;
  }

  .health-shape {
    opacity: 0.03;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .hero-title::after {
    width: 40px;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
  }

  .event-meta {
    font-size: var(--font-size-xs);
    text-align: center;
    margin-bottom: 1rem;
  }

  .countdown-container {
    margin: 1.5rem auto;
    padding: 1rem 1.2rem 1.2rem;
    max-width: 100%;
    border-radius: 12px;
  }

  .countdown-container::after {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    right: 10px;
  }

  .countdown-display {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .countdown-item {
    padding: 0.8rem 0.4rem;
  }

  .hero-cta-container {
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem auto 0;
    max-width: 280px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    padding: 0.9rem 1rem;
    text-align: center;
  }

  .hero-title {
    text-align: center;
    margin-bottom: 1rem;
  }

  .hero-title .title-main {
    margin-bottom: 0.2rem;
  }

  .hero-title .title-tagline {
    font-size: 0.6em;
  }

  .hero-description {
    text-align: center;
    margin: 1rem auto 1.5rem;
    max-width: 100%;
  }

  h1 {
    font-size: var(--font-size-3xl);
  }
  h2 {
    font-size: var(--font-size-2xl);
  }
  h3 {
    font-size: var(--font-size-xl);
  }

  .container {
    padding: 0 1rem;
  }

  /* Navigation */
  .mobile-menu-toggle {
    display: block;
  }

  .primary-navigation .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    flex-direction: column;
    gap: 0;
    padding: 2rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .primary-navigation.active .nav-menu {
    display: flex;
  }

  .nav-menu .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu .menu-item:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    padding: 1rem 0;
    font-size: var(--font-size-base);
    text-align: center;
  }

  .header-container {
    padding: 1rem 0;
  }

  .site-logo .logo-svg {
    height: 40px;
  }

  .mobile-menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .mobile-menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Hero section mobile */
  .hero-games {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .event-meta {
    font-size: var(--font-size-xs);
    text-align: center;
    margin-bottom: 0.8rem;
  }

  .title-subtitle {
    font-size: 0.5em;
  }

  .countdown-display {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .countdown-item {
    padding: 1rem 0.5rem;
  }

  .hero-cta-container {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .cta-primary,
  .cta-secondary {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }

  /* Event summary mobile */
  .event-summary {
    padding: 4rem 0;
  }

  .event-summary::before {
    background: radial-gradient(
      ellipse 600px 400px at 70% 25%,
      rgba(0, 165, 217, 0.03) 0%,
      rgba(242, 102, 73, 0.015) 40%,
      transparent 70%
    );
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .summary-content {
    max-width: 100%;
  }

  .section-badge {
    margin: 0 auto 1.5rem;
    display: inline-block;
  }

  .summary-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
  }

  .summary-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .lead-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .summary-text p:not(.lead-text) {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .summary-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }

  .stat-item {
    padding: 1rem 0.8rem;
  }

  .stat-number {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .image-collage {
    height: 250px;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .collage-main {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }

  .collage-side,
  .collage-accent {
    display: none;
  }

  .collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Features mobile */
  .feature-highlights {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  /* App promo mobile */
  .app-promo {
    padding: 4rem 0;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .phone-mockup {
    max-width: 250px;
  }

  .app-features-floating {
    display: none;
  }

  .app-cta-container {
    align-items: center;
  }

  .app-stores {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .store-badge {
    padding: 0.75rem 1rem;
    min-height: 50px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .store-badge img {
    height: 24px;
  }

  .store-badge .store-text .store-label {
    font-size: 0.7rem;
  }

  .store-badge .store-text .store-name {
    font-size: 0.9rem;
  }

  .store-badge {
    padding: 0.875rem 1.25rem;
    min-height: 55px;
    font-size: 0.95rem;
  }

  .store-badge img {
    height: 28px;
  }

  .store-badge .store-text .store-label {
    font-size: 0.75rem;
  }

  .store-badge .store-text .store-name {
    font-size: 0.95rem;
  }

  /* Social section mobile */
  .social-promo {
    padding: 4rem 0;
  }

  .social-icons {
    flex-direction: column;
    gap: 1rem;
  }

  .social-link {
    min-width: auto;
    width: 100%;
    max-width: 250px;
  }

  .hashtag-banner {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Persistent CTA mobile */
  .persistent-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .persistent-btn {
    width: 100%;
    max-width: 200px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-logo {
    max-height: 50px;
  }

  .footer-social {
    order: -1;
  }

  .footer-social h3 {
    font-size: var(--font-size-base);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-semibold);
  }

  .social-icons {
    gap: 1.2rem;
    justify-content: center;
  }

  .social-icon-link {
    width: 45px;
    height: 45px;
  }

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

  .footer-contact h3 {
    font-size: var(--font-size-base);
    margin-bottom: 1.2rem;
    font-weight: var(--font-weight-semibold);
  }

  .contact-email {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .nav-link {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .nav-link.active {
    background: var(--color-primary);
    color: white;
  }

  .footer-copyright {
    justify-content: center;
  }

  .footer-copyright p {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
  }

  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
}

/* Small mobile styles */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-games {
    padding: 1.5rem 0 2rem;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

  .hero-image-container {
    max-width: 240px;
    height: 280px;
  }

  .floating-badge {
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
  }

  .countdown-container {
    padding: 0.8rem 1rem 1rem;
    margin: 1rem auto;
  }

  .countdown-display {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .countdown-item {
    padding: 0.6rem 0.3rem;
  }

  .countdown-number {
    font-size: 1.1rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }

  .hero-cta-container {
    max-width: 240px;
    gap: 0.6rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 0.8rem 0.8rem;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .summary-title,
  .app-title,
  .social-title {
    font-size: var(--font-size-xl);
  }

  .event-summary {
    padding: 2.5rem 0;
  }

  .event-summary::before {
    background: radial-gradient(
      ellipse 300px 200px at 50% 15%,
      rgba(0, 165, 217, 0.05) 0%,
      rgba(242, 102, 73, 0.025) 25%,
      transparent 50%
    );
  }

  .summary-grid {
    gap: 0;
  }

  .section-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
  }

  .summary-title {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
    margin-bottom: 1rem;
  }

  .image-collage {
    height: 200px;
    margin-top: 0.25rem;
  }

  .collage-main {
    width: 100%;
    height: 100%;
  }

  .collage-side,
  .collage-accent {
    display: none;
  }

  .lead-text {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    margin-bottom: 0.7rem;
  }

  .summary-text p:not(.lead-text) {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    margin-bottom: 0.6rem;
  }

  .summary-stats {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1.2rem;
  }

  .stat-item {
    padding: 1rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .stat-number {
    font-size: var(--font-size-2xl);
    margin-bottom: 0;
  }

  .stat-label {
    font-size: var(--font-size-xs);
    text-align: right;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .benefit-item {
    padding: 1rem;
  }

  .sponsors-title {
    font-size: var(--font-size-xl);
  }

  .phone-mockup {
    max-width: 200px;
  }

  /* Footer Small Mobile */
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 2.5rem;
  }

  .footer-logo {
    max-height: 45px;
  }

  .footer-social h3,
  .footer-contact h3 {
    font-size: var(--font-size-sm);
    margin-bottom: 1.2rem;
    font-weight: var(--font-weight-semibold);
  }

  .social-icons {
    gap: 1rem;
    justify-content: center;
  }

  .social-icon-link {
    width: 40px;
    height: 40px;
  }

  .social-icon-link img {
    width: 18px;
    height: 18px;
  }

  .contact-email {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.2rem;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    transition: all 0.3s ease;
  }

  .footer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .footer-bottom {
    gap: 1.5rem;
  }

  .footer-nav {
    gap: 0.5rem 1rem;
    justify-content: center;
    line-height: 1.3;
  }

  .nav-link {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .nav-link.active {
    background: var(--color-primary);
    color: white;
  }

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

  .footer-copyright p {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
  }

  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top i {
    font-size: 1.1rem;
  }
}

/* ================================================
   EVENT DETAILS PAGE STYLES
   ================================================ */

/* EVENT HERO SPECTACULAR SECTION */
.event-hero-spectacular {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 50%,
    var(--color-secondary) 100%
  );
}

.event-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-particles-system {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: particleFloat 8s infinite ease-in-out;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle-2 {
  top: 40%;
  left: 80%;
  animation-delay: 1s;
}
.particle-3 {
  top: 60%;
  left: 20%;
  animation-delay: 2s;
}
.particle-4 {
  top: 80%;
  left: 70%;
  animation-delay: 3s;
}
.particle-5 {
  top: 30%;
  left: 50%;
  animation-delay: 4s;
}
.particle-6 {
  top: 70%;
  left: 40%;
  animation-delay: 5s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 39, 77, 0.1) 0%,
    rgba(0, 165, 217, 0.05) 50%,
    rgba(242, 102, 73, 0.1) 100%
  );
}

.event-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-announcement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.announcement-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: white;
}

.announcement-location {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-medium);
}

.event-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
}

.title-highlight {
  color: var(--color-secondary);
  display: inline-block;
  position: relative;
}

.title-main {
  color: white;
  display: inline-block;
  margin-left: 1rem;
}

.title-decoration {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-primary)
  );
  border-radius: 2px;
}

.hero-description-premium {
  margin-bottom: 3rem;
}

.event-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.text-highlight {
  color: var(--color-secondary);
  font-weight: var(--font-weight-semibold);
}

.hero-quick-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.quick-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.quick-stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 1.5rem;
}

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

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-medium);
}

.stat-value {
  font-size: var(--font-size-md);
  color: white;
  font-weight: var(--font-weight-bold);
}

/* EVENTS SHOWCASE PREMIUM SECTION */
.events-showcase-premium {
  padding: 5rem 0;
  background: #fafafa;
}

.events-interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card-premium {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 39, 77, 0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 165, 217, 0.06);
  overflow: hidden;
}

.event-card-premium.coming-soon {
  opacity: 0.8;
  filter: grayscale(20%);
}

.coming-soon-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  z-index: 10;
}

.padlock-icon {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-left: 0.5rem;
}

.event-card-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 39, 77, 0.1);
  border-color: rgba(0, 165, 217, 0.12);
}

.featured-event {
  border: 1px solid var(--color-primary);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 165, 217, 0.08),
    0 0 20px rgba(0, 165, 217, 0.2);
}

.featured-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-secondary);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(242, 102, 73, 0.3);
  z-index: 1;
}

@media (max-width: 768px) {
  .featured-ribbon {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
  }
}

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.event-level-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
  border-radius: 20px;
  font-weight: var(--font-weight-semibold);
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 165, 217, 0.2);
}

.event-difficulty {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.difficulty-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.difficulty-bars {
  display: flex;
  gap: 3px;
}

.difficulty-bars .bar {
  width: 20px;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.difficulty-bars .bar.active {
  background: var(--color-secondary);
}

.event-distances {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 0.875rem;
  background: rgba(0, 165, 217, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 165, 217, 0.08);
  transition: all 0.2s ease;
}

.event-card-premium:hover .event-distances {
  background: rgba(0, 165, 217, 0.05);
  border-color: rgba(0, 165, 217, 0.12);
}

.distance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.distance-icon {
  font-size: 1.5rem;
}

.distance-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.distance-value {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.distance-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.distance-connector {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.event-description {
  margin-bottom: 1.5rem;
}

.event-description p {
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.event-pricing-options {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 6px;
  border: 1px solid rgba(0, 165, 217, 0.06);
  box-shadow: 0 1px 2px rgba(0, 39, 77, 0.03);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pricing-option:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 165, 217, 0.12);
  box-shadow: 0 2px 8px rgba(0, 39, 77, 0.06);
  transform: translateY(-0.5px);
}

.pricing-option:hover::before {
  opacity: 0.6;
}

.option-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.option-icon {
  font-size: 0.75rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.pricing-option:hover .option-icon {
  opacity: 0.8;
}

.option-label {
  font-weight: var(--font-weight-normal);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.pricing-option:hover .option-label {
  color: var(--color-text);
}

.option-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.currency {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  font-weight: var(--font-weight-normal);
  opacity: 0.8;
}

.amount {
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.pricing-option:hover .amount {
  color: var(--color-primary);
}

.event-card-footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
}

.estimated-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.time-value {
  font-size: var(--font-size-md);
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
}

/* FESTIVAL ATMOSPHERE SECTION */
.festival-atmosphere-section {
  padding: 5rem 0;
  background: white;
}

.festival-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.festival-text-content {
  padding-right: 2rem;
}

.festival-section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.festival-section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.festival-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.festival-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.festival-feature-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
}

.festival-feature-item .feature-icon {
  font-size: 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  color: white !important;
  text-align: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.festival-visual-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.festival-visual-composition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
}

.visual-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.1),
    rgba(242, 102, 73, 0.1)
  );
  border: 2px solid rgba(0, 165, 217, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.visual-element:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.15),
    rgba(242, 102, 73, 0.15)
  );
}

.element-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.element-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PACKAGES PRICING PREMIUM SECTION */
.packages-pricing-premium {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.featured-package {
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12), 0 0 20px rgba(0, 165, 217, 0.2);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.package-type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.package-icon {
  font-size: 1.5rem;
}

.package-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
}

.amount {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.package-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-check {
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-md);
  flex-shrink: 0;
}

.feature-text {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.pricing-card-footer {
  text-align: center;
}

.package-savings {
  margin-bottom: 1rem;
}

.savings-text {
  font-size: var(--font-size-xs);
  color: var(--color-secondary);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.individual-btn {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
}

.corporate-btn {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  color: white;
}

.package-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-text {
  font-size: var(--font-size-sm);
}

.btn-arrow {
  font-size: var(--font-size-md);
  transition: transform 0.3s ease;
}

.package-button:hover .btn-arrow {
  transform: translateX(3px);
}

/* EVENT CTA SECTION */
.event-cta-section {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-primary) 100%
  );
}

.event-cta-grid {
  text-align: center;
}

.event-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.event-cta-buttons {
  justify-content: center;
  gap: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .festival-content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .festival-text-content {
    padding-right: 0;
  }

  .pricing-comparison-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .featured-package {
    transform: none;
  }
}

@media (max-width: 768px) {
  .event-hero-spectacular {
    min-height: 80vh;
    padding: 2rem 0;
  }

  .event-hero-content {
    padding: 1rem;
  }

  .hero-quick-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .quick-stat {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .events-interactive-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-distances {
    flex-direction: column;
    gap: 1rem;
  }

  .distance-connector {
    transform: rotate(90deg);
  }

  .festival-visual-composition {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .event-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .event-hero-content {
    padding: 0.5rem;
  }

  .hero-announcement {
    margin-bottom: 1.5rem;
  }

  .announcement-badge {
    padding: 0.4rem 1rem;
  }

  .event-card-premium {
    padding: 1.5rem;
  }

  .festival-feature-item {
    padding: 0.75rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .package-button {
    min-width: 180px;
    padding: 0.75rem 1.5rem;
  }
}

/* ================================================
   IMPACT & LEADERBOARDS PAGE STYLES
   ================================================ */

/* IMPACT HERO SECTION */
.impact-hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    120deg,
    var(--color-accent) 0%,
    var(--color-primary) 35%,
    var(--color-secondary) 100%
  );
}

.impact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.data-visualization-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.data-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: dataFloat 10s infinite ease-in-out;
}

.data-particle::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: dataPulse 3s infinite ease-in-out;
}

.data-particle:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.data-particle:nth-child(2) {
  top: 35%;
  left: 85%;
  animation-delay: 1.5s;
}
.data-particle:nth-child(3) {
  top: 55%;
  left: 15%;
  animation-delay: 3s;
}
.data-particle:nth-child(4) {
  top: 75%;
  left: 75%;
  animation-delay: 4.5s;
}
.data-particle:nth-child(5) {
  top: 25%;
  left: 45%;
  animation-delay: 6s;
}
.data-particle:nth-child(6) {
  top: 65%;
  left: 35%;
  animation-delay: 7.5s;
}

@keyframes dataFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes dataPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.impact-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 39, 77, 0.1) 0%,
    rgba(0, 165, 217, 0.05) 40%,
    rgba(242, 102, 73, 0.1) 100%
  );
}

.impact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-badge-dynamic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  backdrop-filter: blur(15px);
  display: inline-flex;
}

.badge-pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--color-secondary);
}

.badge-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
}

.title-emphasis {
  color: var(--color-secondary);
  display: inline-block;
  position: relative;
}

.title-connector {
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--font-weight-light);
  margin: 0 1rem;
}

.title-main {
  color: white;
  display: inline-block;
}

.title-underline {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-primary),
    var(--color-accent)
  );
  border-radius: 2px;
}

.hero-description-container {
  margin-bottom: 3rem;
}

.impact-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.text-highlight {
  color: var(--color-secondary);
  font-weight: var(--font-weight-semibold);
}

.hero-live-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.live-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  min-width: 200px;
}

.live-stat-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.live-stat-card .stat-icon {
  font-size: 1.75rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-medium);
}

/* INSIGHTS DASHBOARD SECTION */
.insights-dashboard-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.dashboard-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.metric-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.metric-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  flex: 1;
}

.metric-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-status.live {
  background: rgba(242, 102, 73, 0.1);
  color: var(--color-secondary);
}

.metric-status.updated {
  background: rgba(0, 165, 217, 0.1);
  color: var(--color-primary);
}

.metric-status.stable {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.metric-status.achieved {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.card-content {
  flex: 1;
}

.primary-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.stat-unit {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.progress-indicator {
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 10px;
  transition: width 0.8s ease;
}

.progress-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.metric-trends {
  display: flex;
  gap: 1rem;
}

.trend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trend-item.positive {
  color: #28a745;
}

.trend-icon {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

.trend-text {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.dual-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-value {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.metric-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wellness-chart {
  text-align: center;
}

.chart-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  height: 40px;
  margin-bottom: 0.5rem;
}

.chart-bar {
  width: 8px;
  background: linear-gradient(
    to top,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 4px 4px 0 0;
  transition: height 0.8s ease;
}

.chart-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.health-scores {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.score-circle {
  position: relative;
  width: 80px;
  height: 80px;
}

.score-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-bg {
  fill: none;
  stroke: #e9ecef;
  stroke-width: 8;
}

.score-progress {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease;
}

.score-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.bp-reading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bp-value {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.bp-unit {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.score-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.milestone-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.milestone-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.milestone-item.completed {
  background: rgba(40, 167, 69, 0.1);
}

.milestone-item.in-progress {
  background: rgba(0, 165, 217, 0.1);
}

.milestone-item.pending {
  background: rgba(108, 117, 125, 0.1);
}

.milestone-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

.milestone-item.completed .milestone-check {
  background: #28a745;
  color: white;
}

.milestone-item.in-progress .milestone-check {
  background: var(--color-primary);
  color: white;
}

.milestone-item.pending .milestone-check {
  background: #6c757d;
  color: white;
}

.milestone-text {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

/* LEADERBOARDS SECTION */
.leaderboards-section {
  padding: 6rem 0;
  background: white;
}

.leaderboard-interface {
  margin-top: 3rem;
}

.leaderboard-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
}

.tab-btn:hover:not(.active) {
  background: #f8f9fa;
  color: var(--color-accent);
}

.leaderboard-content {
  display: none;
}

.leaderboard-content.active {
  display: block;
}

.leaderboard-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.table-header {
  display: grid;
  grid-template-columns: 80px 1fr 120px 120px 140px;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: #f8f9fa;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px 120px 140px;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  transition: all 0.3s ease;
}

.table-row:hover {
  background: #f8f9fa;
}

.table-row.featured {
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.05),
    rgba(242, 102, 73, 0.05)
  );
  border-left: 4px solid var(--color-primary);
}

.rank-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rank-number {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.rank-crown {
  font-size: var(--font-size-md);
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
  border-radius: 50%;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.team-name {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.team-day {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.points-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.points-value {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.points-trend {
  font-size: var(--font-size-xs);
  color: #28a745;
  font-weight: var(--font-weight-semibold);
}

.progress-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-cell .progress-bar {
  height: 6px;
}

.progress-cell .progress-text {
  text-align: center;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
}

.action-cell {
  display: flex;
  justify-content: center;
}

.support-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.support-btn.primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
}

.support-btn.secondary {
  background: white;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* COMMUNITY STORIES SECTION */
.community-stories-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stories-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.story-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-story {
  border: 2px solid var(--color-primary);
  position: relative;
}

.featured-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 20px 20px 0 0;
}

.story-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-meta {
  flex: 1;
}

.story-name {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.story-team {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}

.story-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  color: white;
  border-radius: 15px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-content {
  margin-top: 1rem;
}

.story-text {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story-metrics {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.story-metrics .metric-item {
  text-align: center;
}

.story-metrics .metric-number {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.story-metrics .metric-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-achievement {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(0, 165, 217, 0.1);
  border-radius: 12px;
}

.achievement-icon {
  font-size: var(--font-size-md);
}

.achievement-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

/* DONATION & PLEDGE MECHANISM SECTION */
.donation-pledge-section {
  padding: 6rem 0;
  background: white;
}

.pledge-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.pledge-info-side {
  padding-right: 2rem;
}

.pledge-section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pledge-section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.how-it-works {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--color-primary);
}

.works-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.works-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.works-icon {
  font-size: var(--font-size-md);
  flex-shrink: 0;
}

.works-text {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.pledge-process-side {
  padding-left: 2rem;
}

.process-container {
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.05),
    rgba(242, 102, 73, 0.05)
  );
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 165, 217, 0.1);
}

.process-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 2rem;
  text-align: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
  border-radius: 50%;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.process-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(
    to bottom,
    var(--color-primary),
    var(--color-secondary)
  );
  margin-left: 19px;
  margin-top: -10px;
  margin-bottom: -10px;
}

.process-step:last-child + .process-connector {
  display: none;
}

/* IMPACT CTA SECTION */
.impact-cta-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
}

.impact-cta-grid {
  text-align: center;
}

.impact-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.impact-cta-buttons {
  justify-content: center;
  gap: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .pledge-content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pledge-info-side {
    padding-right: 0;
  }

  .pledge-process-side {
    padding-left: 0;
  }

  .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .table-header,
  .table-row {
    grid-template-columns: 60px 1fr 100px 100px 120px;
    gap: 0.5rem;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .impact-hero-section {
    min-height: 75vh;
    padding: 2rem 0;
  }

  .impact-hero-content {
    padding: 1rem;
  }

  .hero-live-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .live-stat-card {
    min-width: auto;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .leaderboard-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .table-header {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .stories-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .impact-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .impact-hero-content {
    padding: 0.5rem;
  }

  .hero-badge-dynamic {
    padding: 0.5rem 1.5rem;
  }

  .dashboard-card {
    padding: 1.5rem;
  }

  .story-card {
    padding: 1.5rem;
  }

  .story-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .story-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }

  .process-container {
    padding: 1.5rem;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .process-connector {
    display: none;
  }
}

/* ================================================
   JOIN THE MOVEMENT PAGE STYLES
   ================================================ */

/* MOVEMENT HERO SECTION */
.movement-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--color-accent) 0%,
    var(--color-primary) 25%,
    var(--color-secondary) 50%,
    var(--color-accent) 75%,
    var(--color-primary) 100%
  );
}

.movement-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cultural-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.kente-inspired-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 40%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 60%
    );
  background-size: 60px 60px, 80px 80px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 60px 60px, -80px 80px;
  }
}

.adinkra-symbols {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.symbol {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.1);
  animation: symbolFloat 12s infinite ease-in-out;
}

.symbol-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.symbol-2 {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}
.symbol-3 {
  top: 60%;
  left: 8%;
  animation-delay: 4s;
}
.symbol-4 {
  top: 75%;
  right: 5%;
  animation-delay: 6s;
}
.symbol-5 {
  top: 40%;
  left: 85%;
  animation-delay: 8s;
}
.symbol-6 {
  top: 85%;
  left: 40%;
  animation-delay: 10s;
}

@keyframes symbolFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
}

.movement-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 39, 77, 0.2) 0%,
    rgba(0, 165, 217, 0.1) 30%,
    rgba(242, 102, 73, 0.15) 70%,
    rgba(0, 39, 77, 0.2) 100%
  );
}

.movement-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.cultural-badge-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.cultural-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(20px);
}

.badge-kente-strip {
  width: 30px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e, #ffd700);
  border-radius: 2px;
  animation: kente-shimmer 3s infinite;
}

@keyframes kente-shimmer {
  0%,
  100% {
    opacity: 0.8;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

.badge-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.movement-hero-title {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
}

.title-cultural {
  color: var(--color-secondary);
  display: inline-block;
  position: relative;
  margin-right: 1rem;
}

.title-main {
  color: white;
  display: inline-block;
  position: relative;
}

.title-cultural-line {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 6px;
  background: linear-gradient(
    90deg,
    #ffd700 0%,
    #ff6b35 25%,
    #f7931e 50%,
    #ffd700 75%,
    #ff6b35 100%
  );
  border-radius: 3px;
  animation: culturalLineGlow 4s infinite;
}

@keyframes culturalLineGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
  }
}

.hero-mission-statement {
  margin-bottom: 3rem;
}

.movement-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
}

.text-highlight {
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 0 10px rgba(242, 102, 73, 0.3);
}

.hero-cultural-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cultural-element-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.cultural-element-mini:hover {
  transform: translateY(-3px);
}

.mini-day-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  backdrop-filter: blur(10px);
}

.mini-day-name {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cultural-connector {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

/* CULTURAL HERITAGE SECTION */
.cultural-heritage-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cultural-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.cultural-story-side {
  padding-right: 2rem;
}

.cultural-section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cultural-section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.cultural-values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cultural-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-primary);
}

.cultural-value-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-content {
  flex: 1;
}

.value-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.value-description {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.day-born-showcase {
  padding-left: 2rem;
}

.day-born-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.day-born-card {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.day-born-card:hover {
  transform: rotateY(180deg);
}

.day-card-front,
.day-card-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backface-visibility: hidden;
}

.day-card-front {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: white;
}

.day-card-back {
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-primary) 100%
  );
  color: white;
  transform: rotateY(180deg);
}

.day-symbol {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.day-name {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}

.day-meaning {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.day-color-strip {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.day-traits h4 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.day-traits ul {
  list-style: none;
  padding: 0;
}

.day-traits li {
  font-size: var(--font-size-sm);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* MISSION STATEMENT SECTION */
.mission-statement-section {
  padding: 6rem 0;
  background: white;
}

.mission-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-pillar {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  text-align: center;
}

.mission-pillar:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.featured-pillar {
  border: 2px solid var(--color-primary);
  transform: scale(1.05);
}

.pillar-featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.pillar-icon {
  font-size: 3rem;
  position: relative;
  z-index: 2;
}

.pillar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 1;
  animation: pillarGlow 3s infinite ease-in-out;
}

.fitness-glow {
  background: radial-gradient(
    circle,
    rgba(0, 165, 217, 0.2) 0%,
    transparent 70%
  );
}

.culture-glow {
  background: radial-gradient(
    circle,
    rgba(242, 102, 73, 0.2) 0%,
    transparent 70%
  );
}

.growth-glow {
  background: radial-gradient(circle, rgba(0, 39, 77, 0.2) 0%, transparent 70%);
}

@keyframes pillarGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.pillar-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.pillar-description {
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.pillar-stats {
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.1),
    rgba(242, 102, 73, 0.1)
  );
  border-radius: 15px;
}

.stat-highlight {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

/* KNOXXI HEALTH PLATFORM SECTION */
.knoxxi-health-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.health-platform-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.platform-info-side {
  padding-right: 2rem;
}

.platform-section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.platform-section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.platform-features-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature-category {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-primary);
}

.category-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.feature-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  font-size: var(--font-size-md);
  flex-shrink: 0;
}

.feature-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.platform-why-matters {
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.1),
    rgba(242, 102, 73, 0.1)
  );
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 165, 217, 0.2);
}

.why-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.why-description {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.platform-demo-side {
  display: flex;
  justify-content: center;
  position: relative;
}

.app-demo-container {
  position: relative;
}

.phone-mockup-advanced {
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 280px;
  height: 570px;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-radius: 35px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
}

.app-header {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 12px;
  color: white;
  font-weight: var(--font-weight-semibold);
}

.signal-icons {
  display: flex;
  gap: 0.25rem;
}

.app-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: white;
}

.profile-avatar {
  width: 30px;
  height: 30px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
}

.app-dashboard {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-stats {
  display: flex;
  gap: 0.5rem;
}

.stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-icon {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: white;
}

.stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.health-metrics {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.metric-value {
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  color: white;
}

.team-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem;
  border-radius: 12px;
}

.team-icon {
  width: 25px;
  height: 25px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--font-weight-bold);
  font-size: 11px;
}

.team-text {
  font-size: 11px;
  color: white;
  font-weight: var(--font-weight-semibold);
}

.team-rank {
  font-size: 10px;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
}

.phone-reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(44, 62, 80, 0.3), transparent);
  border-radius: 50%;
  filter: blur(20px);
}

.floating-health-indicators {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.health-indicator {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  animation: indicatorFloat 6s infinite ease-in-out;
}

.indicator-1 {
  top: 20%;
  left: -20%;
  animation-delay: 0s;
}

.indicator-2 {
  top: 50%;
  right: -25%;
  animation-delay: 2s;
}

.indicator-3 {
  bottom: 20%;
  left: -15%;
  animation-delay: 4s;
}

@keyframes indicatorFloat {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  padding: 6rem 0;
  background: white;
}

.how-it-works-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #f0f0f0;
}

.workflow-step:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-step {
  border: 2px solid var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.05),
    rgba(242, 102, 73, 0.05)
  );
}

.step-featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
  border-radius: 50%;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  box-shadow: 0 10px 30px rgba(0, 165, 217, 0.3);
}

.step-icon {
  font-size: 2rem;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.step-description {
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.step-platforms {
  display: flex;
  gap: 0.5rem;
}

.platform-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-badge.ios {
  background: #007aff;
  color: white;
}

.platform-badge.android {
  background: #34a853;
  color: white;
}

.step-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.highlight-item {
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.1),
    rgba(242, 102, 73, 0.1)
  );
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  border: 1px solid rgba(0, 165, 217, 0.2);
}

.step-levels {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.level-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.level-badge.fun {
  background: #28a745;
  color: white;
}

.level-badge.elite-lite {
  background: var(--color-primary);
  color: white;
}

.level-badge.elite-pro {
  background: var(--color-secondary);
  color: white;
}

.flow-connector {
  width: 4px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    var(--color-primary),
    var(--color-secondary)
  );
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.flow-connector::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid var(--color-secondary);
}

/* 60-DAY CHALLENGE SECTION */
.sixty-day-challenge-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.challenge-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.challenge-details-side {
  padding-right: 2rem;
}

.challenge-section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-highlight {
  color: var(--color-secondary);
}

.challenge-section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.challenge-structure {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.challenge-structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .challenge-structure-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.structure-category {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-primary);
}

.category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.category-icon {
  font-size: var(--font-size-lg);
}

.category-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-list li {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.category-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
}

.challenge-benefits {
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.1),
    rgba(242, 102, 73, 0.1)
  );
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 165, 217, 0.2);
}

.benefits-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}

.benefit-icon {
  font-size: var(--font-size-md);
  flex-shrink: 0;
}

.benefit-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.challenge-visualization-side {
  padding-left: 2rem;
}

.challenge-timeline-container {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.timeline-header {
  text-align: center;
  margin-bottom: 2rem;
}

.timeline-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.timeline-progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 10px;
  transition: width 0.8s ease;
}

.progress-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-semibold);
}

.timeline-milestones {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.milestone {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.milestone.completed {
  background: rgba(40, 167, 69, 0.1);
  border-left: 4px solid #28a745;
}

.milestone.active {
  background: rgba(0, 165, 217, 0.1);
  border-left: 4px solid var(--color-primary);
}

.milestone.pending {
  background: rgba(108, 117, 125, 0.1);
  border-left: 4px solid #6c757d;
}

.milestone-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.milestone.completed .milestone-marker {
  background: #28a745;
}

.milestone.active .milestone-marker {
  background: var(--color-primary);
  animation: pulse 2s infinite;
}

.milestone.pending .milestone-marker {
  background: #6c757d;
}

.milestone-content {
  flex: 1;
}

.milestone-content h5 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.milestone-content p {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.milestone-status {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.milestone.completed .milestone-status {
  color: #28a745;
}

.milestone.active .milestone-status {
  color: var(--color-primary);
}

.milestone.pending .milestone-status {
  color: #6c757d;
}

.dashboard-preview {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
}

.preview-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  background: white;
  border-radius: 8px;
}

.feature-emoji {
  font-size: var(--font-size-sm);
  margin-right: 0.5rem;
}

.feature-name {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  flex: 1;
}

.feature-value {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

/* MOVEMENT CTA SECTION */
.movement-cta-section {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-primary) 50%,
    var(--color-secondary) 100%
  );
}

.movement-cta-grid {
  text-align: center;
}

.movement-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.movement-cta-buttons {
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.additional-cta {
  display: flex;
  justify-content: center;
}

.insights-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.insights-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.insights-icon {
  font-size: var(--font-size-md);
}

.insights-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.insights-arrow {
  font-size: var(--font-size-md);
  transition: transform 0.3s ease;
}

.insights-link:hover .insights-arrow {
  transform: translateX(3px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .cultural-content-layout,
  .health-platform-layout,
  .challenge-content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cultural-story-side,
  .platform-info-side,
  .challenge-details-side {
    padding-right: 0;
  }

  .day-born-showcase,
  .challenge-visualization-side {
    padding-left: 0;
  }

  .mission-pillars-grid {
    grid-template-columns: 1fr;
  }

  .featured-pillar {
    transform: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .floating-health-indicators {
    display: none;
  }
}

@media (max-width: 768px) {
  .movement-hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }

  .movement-hero-content {
    padding: 1rem;
  }

  .hero-cultural-preview {
    flex-direction: row;
    gap: 0.75rem;
  }

  .cultural-connector {
    display: none;
  }

  .day-born-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .day-born-card {
    height: 200px;
  }

  .how-it-works-flow {
    gap: 1rem;
  }

  .workflow-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .step-icon {
    text-align: center;
    margin: 0 auto;
  }

  .workflow-step:hover {
    transform: translateY(-5px);
  }

  .flow-connector {
    display: none;
  }

  .phone-frame {
    width: 250px;
    height: 500px;
  }

  .movement-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .movement-hero-content {
    padding: 0.5rem;
  }

  .cultural-badge {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.6rem 0.8rem;
    max-width: 280px;
    margin: 0 auto;
  }

  .cultural-badge .badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .cultural-badge .badge-kente-strip {
    width: 20px;
    height: 3px;
  }

  .hero-cultural-preview {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cultural-value-item,
  .mission-pillar,
  .workflow-step {
    padding: 1.5rem;
  }

  .day-born-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .platform-features-showcase {
    gap: 1rem;
  }

  .feature-category {
    padding: 1.5rem;
  }

  .challenge-timeline-container {
    padding: 1.5rem;
  }

  .phone-frame {
    width: 220px;
    height: 450px;
  }

  /* Extra small mobile devices */
  @media (max-width: 360px) {
    .cultural-badge {
      padding: 0.5rem 0.6rem;
      max-width: 240px;
    }

    .cultural-badge .badge-text {
      font-size: 0.65rem;
      letter-spacing: 0.3px;
    }

    .cultural-badge .badge-kente-strip {
      width: 18px;
      height: 2px;
    }
  }
}

/* ================================================
   SPONSORS & CONTACT PAGE STYLES
   ================================================ */

/* SPONSORS & CONTACT HERO SECTION */
.sponsors-contact-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    130deg,
    var(--color-primary) 0%,
    var(--color-accent) 30%,
    var(--color-secondary) 70%,
    var(--color-primary) 100%
  );
}

.sponsors-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.partnership-network-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.network-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: networkPulse 4s infinite ease-in-out;
}

.network-node:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.network-node:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 0.8s;
}
.network-node:nth-child(3) {
  top: 50%;
  left: 20%;
  animation-delay: 1.6s;
}
.network-node:nth-child(4) {
  top: 65%;
  right: 10%;
  animation-delay: 2.4s;
}
.network-node:nth-child(5) {
  top: 80%;
  left: 30%;
  animation-delay: 3.2s;
}
.network-node:nth-child(6) {
  top: 40%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes networkPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
}

.network-connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  animation: connectionFlow 6s infinite ease-in-out;
}

.connection-1 {
  top: 20%;
  left: 10%;
  width: 300px;
  transform: rotate(15deg);
  animation-delay: 0s;
}

.connection-2 {
  top: 45%;
  right: 10%;
  width: 250px;
  transform: rotate(-20deg);
  animation-delay: 1.5s;
}

.connection-3 {
  top: 70%;
  left: 15%;
  width: 200px;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.connection-4 {
  top: 35%;
  left: 40%;
  width: 180px;
  transform: rotate(-45deg);
  animation-delay: 4.5s;
}

@keyframes connectionFlow {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0);
  }
  50% {
    opacity: 0.6;
    transform: scaleX(1);
  }
}

.sponsors-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 39, 77, 0.15) 0%,
    rgba(0, 165, 217, 0.1) 40%,
    rgba(242, 102, 73, 0.15) 80%,
    rgba(0, 39, 77, 0.2) 100%
  );
}

.sponsors-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.sponsors-hero-title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
}

.title-partners {
  color: var(--color-secondary);
  display: inline-block;
  position: relative;
}

.title-connector {
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-light);
  margin: 0 1rem;
}

.title-contact {
  color: white;
  display: inline-block;
}

.title-partnership-line {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    var(--color-primary) 50%,
    var(--color-secondary) 100%
  );
  border-radius: 3px;
  animation: partnershipLineGlow 4s infinite;
}

@keyframes partnershipLineGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(242, 102, 73, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 165, 217, 0.6);
  }
}

.hero-partnership-statement {
  margin-bottom: 3rem;
}

.sponsors-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.text-highlight {
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 0 10px rgba(242, 102, 73, 0.3);
}

.hero-partnership-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partnership-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  min-width: 180px;
}

.partnership-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.partnership-stat .stat-icon {
  font-size: 1.75rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-medium);
}

/* SPONSORS & PARTNERS SECTION */
.sponsors-partners-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sponsors-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.sponsors-intro-side {
  padding-right: 2rem;
}

.sponsors-section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sponsors-section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.partnership-benefits-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-preview-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-primary);
}

.benefit-preview-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.sponsorship-tiers-side {
  padding-left: 2rem;
}

.sponsorship-tiers-container {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.tiers-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 2rem;
  text-align: center;
}

.sponsorship-tier {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sponsorship-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platinum-tier {
  background: linear-gradient(
    135deg,
    rgba(155, 89, 182, 0.1),
    rgba(142, 68, 173, 0.1)
  );
  border-color: #9b59b6;
}

.gold-tier {
  background: linear-gradient(
    135deg,
    rgba(241, 196, 15, 0.1),
    rgba(243, 156, 18, 0.1)
  );
  border-color: #f1c40f;
}

.silver-tier {
  background: linear-gradient(
    135deg,
    rgba(149, 165, 166, 0.1),
    rgba(127, 140, 141, 0.1)
  );
  border-color: #95a5a6;
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tier-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  color: white;
}

.tier-badge.platinum {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.tier-badge.gold {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.tier-badge.silver {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.tier-icon {
  font-size: var(--font-size-md);
}

.tier-name {
  font-weight: var(--font-weight-bold);
}

.tier-investment {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  font-style: italic;
}

.tier-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tier-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-check {
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefit-text {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* CURRENT SPONSORS SHOWCASE */
.current-sponsors-showcase {
  padding: 6rem 0;
  background: white;
}

.sponsors-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sponsor-logo-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-align: center;
  position: relative;
}

.sponsor-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-sponsor {
  border: 2px solid var(--color-primary);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 15px;
}

.logo-container img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: all 0.3s ease;
}

.sponsor-logo-card:hover .logo-container img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.sponsor-info {
  text-align: center;
}

.sponsor-name {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.sponsor-role {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

/* CONTACT INFORMATION SECTION */
.contact-information-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-intro-side {
  padding-right: 2rem;
}

.contact-section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-primary);
}

.contact-method:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  border-radius: 15px;
  flex-shrink: 0;
}

.contact-icon {
  font-size: 1.5rem;
  color: white;
}

.contact-details {
  flex: 1;
}

.contact-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.contact-link {
  font-size: var(--font-size-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.contact-link:hover {
  color: var(--color-secondary);
  transform: translateX(2px);
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.social-link:hover {
  background: rgba(0, 165, 217, 0.1);
  color: var(--color-secondary);
  transform: translateX(3px);
}

.social-icon {
  font-size: var(--font-size-md);
}

.social-name {
  font-weight: var(--font-weight-semibold);
}

.contact-form-side {
  padding-left: 2rem;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.form-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: var(--font-size-sm);
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 165, 217, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 1rem;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 165, 217, 0.3);
  background: linear-gradient(
    135deg,
    var(--color-accent),
    var(--color-secondary)
  );
}

.btn-text {
  font-size: var(--font-size-sm);
}

.btn-icon {
  font-size: var(--font-size-md);
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
  transform: translateX(3px);
}

/* PARTNERSHIP CTA SECTION */
.partnership-cta-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 50%,
    var(--color-secondary) 100%
  );
}

.partnership-cta-grid {
  text-align: center;
}

.partnership-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.partnership-cta-buttons {
  justify-content: center;
  gap: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .sponsors-content-layout,
  .contact-content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sponsors-intro-side,
  .contact-intro-side {
    padding-right: 0;
  }

  .sponsorship-tiers-side,
  .contact-form-side {
    padding-left: 0;
  }

  .sponsors-logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .featured-sponsor {
    transform: none;
  }
}

@media (max-width: 768px) {
  .sponsors-contact-hero {
    min-height: 75vh;
    padding: 2rem 0;
  }

  .sponsors-hero-content {
    padding: 1rem;
  }

  .hero-partnership-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .partnership-stat {
    min-width: auto;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .partnership-stat .stat-info {
    align-items: center;
  }

  .sponsors-logo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-methods {
    gap: 1.5rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .social-links {
    align-items: center;
  }

  .partnership-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .sponsors-hero-content {
    padding: 0.5rem;
  }

  .benefit-preview-item,
  .contact-method {
    padding: 1.5rem;
  }

  .sponsorship-tiers-container,
  .contact-form-container {
    padding: 2rem;
  }

  .tier-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .sponsors-logo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sponsor-logo-card {
    padding: 1.5rem;
  }

  /* Extra small mobile devices */
  @media (max-width: 360px) {
  }
}

/* Knoxxi Custom Footer Styles */
.knoxxi-footer {
  background: #000;
  color: #fff;
  padding: 3rem 0 0 0;
  font-family: var(--font-family-primary);
}
.knoxxi-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.knoxxi-footer-col {
  min-width: 0;
}
.knoxxi-footer-logo {
  margin-bottom: 1rem;
}
.footer-logo-img {
  max-width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}
.knoxxi-footer-desc {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 0;
}
.knoxxi-footer-heading {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: #fff;
}
.knoxxi-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.knoxxi-footer-list li {
  margin-bottom: 0.5rem;
}
.knoxxi-footer-link {
  color: #ccc;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}
.knoxxi-footer-link:hover {
  color: #fff;
  text-decoration: none;
}
.knoxxi-footer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.2s ease;
}
.knoxxi-footer-link:hover::after {
  width: 100%;
}
.knoxxi-footer-socials {
  display: flex;
  gap: 1rem;
}
.knoxxi-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.2s ease;
  text-decoration: none;
}
.knoxxi-social-link:hover {
  background: #fff;
  transform: translateY(-2px);
}
.social-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}
.knoxxi-social-link:hover .social-icon {
  filter: brightness(0) invert(0);
}
.knoxxi-footer-bottom {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #333;
  text-align: center;
}
.knoxxi-footer-bottom p {
  color: #999;
  margin: 0;
  font-size: 0.875rem;
}
.knoxxi-footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .knoxxi-footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
  .knoxxi-footer-col:first-child {
    grid-column: span 1;
  }
}

/* ================================
   CHALLENGE OVERVIEW STYLING
   ================================ */

.challenge-overview {
  margin-bottom: 4rem;
}

.challenge-intro-card {
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.05),
    rgba(242, 102, 73, 0.05)
  );
  border: 2px solid rgba(0, 165, 217, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.challenge-intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
}

.challenge-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 39, 77, 0.12);
  border-color: rgba(0, 165, 217, 0.25);
}

.intro-icon {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.challenge-intro-card:hover .intro-icon {
  transform: scale(1.05);
}

.intro-content {
  flex: 1;
}

.intro-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

.challenge-intro {
  font-size: var(--font-size-lg);
  color: var(--text-body);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.highlight-item {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background: rgba(0, 165, 217, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(0, 165, 217, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(0, 165, 217, 0.15);
  border-color: rgba(0, 165, 217, 0.3);
  transform: translateY(-1px);
}

/* Challenge Intro Description Styling */
.challenge-intro-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-body);
  padding: 0 1rem;
}

/* ================================
   CHALLENGE CARDS STYLING
   ================================ */

.challenge-how-it-works {
  margin-top: 3rem;
}

.how-it-works-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.how-it-works-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
}

.challenge-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.challenge-card {
  background: var(--color-bg);
  border: 2px solid rgba(0, 165, 217, 0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 39, 77, 0.08);
  overflow: hidden;
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 165, 217, 0.3);
  box-shadow: 0 12px 40px rgba(0, 39, 77, 0.15);
}

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

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.1),
    rgba(242, 102, 73, 0.1)
  );
  border-radius: 12px;
  transition: all 0.3s ease;
}

.challenge-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.2),
    rgba(242, 102, 73, 0.2)
  );
}

.card-number {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

.card-description {
  font-size: var(--font-size-base);
  color: var(--text-body);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  background: rgba(0, 165, 217, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 165, 217, 0.2);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(0, 165, 217, 0.15);
  border-color: rgba(0, 165, 217, 0.3);
  transform: translateY(-1px);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 165, 217, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.challenge-card:hover .card-glow {
  opacity: 1;
}

/* Card Variations */
.challenge-card.card-1 .card-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 165, 217, 0.1),
    rgba(0, 165, 217, 0.2)
  );
}

.challenge-card.card-2 .card-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.1),
    rgba(255, 193, 7, 0.2)
  );
}

.challenge-card.card-3 .card-icon {
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.1),
    rgba(220, 53, 69, 0.2)
  );
}

.challenge-card.card-4 .card-icon {
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1),
    rgba(40, 167, 69, 0.2)
  );
}

.challenge-card.card-5 .card-icon {
  background: linear-gradient(
    135deg,
    rgba(111, 66, 193, 0.1),
    rgba(111, 66, 193, 0.2)
  );
}

.challenge-card.card-6 .card-icon {
  background: linear-gradient(
    135deg,
    rgba(253, 126, 20, 0.1),
    rgba(253, 126, 20, 0.2)
  );
}

/* Responsive Design for Challenge Cards */
@media (max-width: 1024px) {
  .challenge-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .challenge-card {
    padding: 1.75rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .challenge-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .challenge-card {
    padding: 1.5rem;
  }

  .card-header {
    margin-bottom: 1.25rem;
  }

  .card-title {
    font-size: var(--font-size-lg);
  }

  .card-description {
    font-size: var(--font-size-sm);
  }

  .how-it-works-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .challenge-card {
    padding: 1.25rem;
  }

  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.75rem;
  }

  .card-title {
    font-size: var(--font-size-md);
  }

  .card-description {
    font-size: var(--font-size-sm);
    margin-bottom: 1.25rem;
  }

  .feature-tag {
    font-size: var(--font-size-xs);
    padding: 0.25rem 0.5rem;
  }

  .how-it-works-title {
    font-size: var(--font-size-xl);
    margin-bottom: 1.5rem;
  }

  /* Challenge Overview Responsive */
  .challenge-intro-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .intro-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
  }

  .intro-title {
    font-size: var(--font-size-xl);
  }

  .challenge-intro {
    font-size: var(--font-size-base);
  }

  .intro-highlights {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .step-highlights,
  .step-levels {
    justify-content: center;
  }
}
