        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #3685d8;
            --primary-hover: #2f72bf;
            --text-dark: #0f172a;
            --text-light: #d1d5db;
            --bg-dark: #000;
            --bg-light-start: rgba(245, 247, 248, 0.85);
            --bg-light-end: rgba(230, 235, 238, 0.85);
            --font-primary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            --shadow-color: #004aad;
        }

        body {
            font-family: var(--font-primary);
            background: linear-gradient(135deg, var(--bg-light-start) 0%, var(--bg-light-end) 100%);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .navbar {
            position: fixed;
            top: 1rem;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        .navbar.hidden {
            transform: translateY(-120%);
            opacity: 0;
        }

        .nav-container {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .pill-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1200px;
            border-radius: 9999px;
            padding: 1rem 1.5rem;
            background: linear-gradient(180deg, var(--bg-light-start) 0%, var(--bg-light-end) 100%);
            color: var(--text-dark);
            box-shadow: 0 6px 24px var(--shadow-color);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .nav-logo {
            font-size: 1.1rem;
            font-weight: bold;
        }

        .nav-links {
            display: none;
            gap: 1.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* ====== MOBILE MENU ====== */
       /* ====== MOBILE MENU ====== */
.nav-mobile {
  display: flex;
}

.menu-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
}

.menu-icon .line {
  width: 1.5rem;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
}

.menu-icon.active .line-1 {
  transform: translateY(0.35rem) rotate(45deg);
}

.menu-icon.active .line-2 {
  opacity: 0;
}

.menu-icon.active .line-3 {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 1rem;
  left: 50%;
  width: 90%;
  max-width: 400px;
  background: linear-gradient(180deg, rgb(245, 247, 248) 0%, rgb(230, 235, 238) 100%);
  color: var(--text-dark);
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 4rem 2rem 2rem;
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -20px);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, visibility 0s 0.4s;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mobile-menu.mobile-menu-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.close-menu-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

.close-menu-btn svg {
  width: 100%;
  height: 100%;
  color: var(--text-dark);
}

.mobile-menu a {
  width: 100%;
  text-align: right;
  padding: 0.75rem 0;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 500;
}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1005;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-mobile {
    display: none;
  }

  .mobile-menu,
  .menu-backdrop {
    display: none;
  }
}
        /* ====== END MOBILE MENU ====== */


        /* Hero Section */
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background-color: #000;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            z-index: 10;
            opacity: 0;
            animation: fadeInUp 1.2s ease-out 0.5s forwards;

        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #fff 0%, var(--primary-color) 50%, #fff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 4s ease-in-out infinite;
            position: relative;

        }

        .hero-content h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            animation: line-glow 2s ease-in-out infinite alternate;
        }

        @keyframes gradient-shift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes line-glow {
            0% {
                opacity: 0.5;
                box-shadow: 0 0 5px var(--primary-color);
            }

            100% {
                opacity: 1;
                box-shadow: 0 0 20px var(--primary-color);
            }
        }


        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: white;

        }

        .legal-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 10px 20px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            margin-top: 1rem;
            color: var(--primary-color);
            font-weight: 600;
            border: 2px solid rgba(54, 133, 216, 0.2);
            animation: legalPulse 3s ease-in-out infinite;
        }

        .legal-icon {
            font-size: 1.2rem;
        }

        .flag-emoji {
            font-size: 1.5rem;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            top: 40%;
            left: 20%;
            animation-delay: 4s;
        }

        /* Dual Section */
        .dual-section {
            padding: 100px 0;
            position: relative;
        }

        .section-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .section-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 24px;
            padding: 3rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(54, 133, 216, 0.1);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            color: var(--text-dark);
            box-shadow: 0 10px 30px rgba(0, 74, 173, 0.1);
        }

        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-hover), var(--primary-color));
            background-size: 200% 100%;
            animation: gradientShift 3s ease-in-out infinite;
        }

        .section-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .section-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            animation: iconBounce 2s ease-in-out infinite;
        }

        .section-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-card p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .benefits-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .benefits-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0;
            animation: slideInLeft 0.6s ease-out forwards;
        }
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* behind hero content */
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}

        .benefits-list li:nth-child(1) {
            animation-delay: 0.2s;
        }

        .benefits-list li:nth-child(2) {
            animation-delay: 0.4s;
        }

        .benefits-list li:nth-child(3) {
            animation-delay: 0.6s;
        }

        .benefits-list li:nth-child(4) {
            animation-delay: 0.8s;
        }

        .check-mark {
            width: 24px;
            height: 24px;
            background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            animation: checkPulse 2s ease-in-out infinite;
            color: white;
        }

        /* Youth Section */
        .youth-section {
            padding: 100px 0;
            text-align: center;
            background: rgba(54, 133, 216, 0.05);
            backdrop-filter: blur(10px);
        }

        .youth-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .youth-section h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .youth-section p {
            color: var(--text-dark);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transform: scale(0.9);
            animation: statPop 0.6s ease-out forwards;
            border: 1px solid rgba(54, 133, 216, 0.1);
        }

        .stat-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .stat-item:nth-child(2) {
            animation-delay: 0.3s;
        }

        .stat-item:nth-child(3) {
            animation-delay: 0.5s;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        /* Interactive Elements */
        .interactive-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }

        .interactive-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .interactive-btn:hover::before {
            left: 100%;
        }

        .interactive-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(54, 133, 216, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {

            0%,
            100% {
                background-position: -200% center;
            }

            50% {
                background-position: 200% center;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes iconBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes checkPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        @keyframes statPop {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-card {
                padding: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
/* ====== FOOTER ====== */
.footer {
  background-color: #0f172a;
  color: var(--text-light);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.footer a {
  color: var(--text-light);
  margin: 0 0.75rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
}