
        :root {
            --yellowish-orange: #FFB800;
            --yellowish-orange-light: #FFD54F;
            --dark-blue-green: #0D3B4C;
            --dark-blue-green-light: #154D66;
            --ice-blue: #A8E6CF;
            --ice-blue-light: #DFF6ED;
            --ice-blue-dark: #7BC4A8;
            --cherry-red: #E63946;
            --cherry-red-dark: #C11228;
            --cherry-red-light: #FF6B7A;
            --white: #FFFFFF;
            --off-white: #F8FAFC;
            --text-dark: #1E293B;
            --text-light: #E2E8F0;
            --text-muted: #94A3B8;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--off-white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }



        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-blue-green) 0%, var(--dark-blue-green-light) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle, rgba(168, 230, 207, 0.1) 0%, transparent 70%);
            animation: pulse 5s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            text-align: center;
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            animation: fadeInUp 0.6s ease 0.1s both;
            letter-spacing: -0.5px;
        }

        .hero-title span {
            color: var(--yellowish-orange);
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.6s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
            animation: fadeInUp 0.6s ease 0.3s both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--cherry-red);
            color: var(--white);
            padding: 18px 36px;
            border-radius: 50px;
            font-size: 1.15rem;
            font-weight: 800;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--transition-normal);
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
            animation: fadeInUp 0.6s ease 0.3s both;
        }

        .btn-primary:hover {
            background: var(--cherry-red-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
        }

        .btn-primary svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            animation: fadeInUp 0.6s ease 0.4s both;
        }

        .phone-mockup {
            width: 280px;
            height: 560px;
            background: var(--dark-blue-green);
            border-radius: 40px;
            padding: 12px;
            box-shadow: var(--shadow-lg);
            border: 4px solid rgba(255, 255, 255, 0.1);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, var(--dark-blue-green-light) 0%, var(--dark-blue-green) 100%);
            border-radius: 32px;
            overflow: hidden;
            position: relative;
        }

        /* 
          ==========================================================================
          VIDEO REPLACEMENT INSTRUCTIONS:
          ==========================================================================
          To replace the screenshot with a video of the gameplay later:
          
          1. Remove the <img> tag below
          2. Uncomment and use the following <video> structure instead:
          
          <video autoplay muted loop playsinline poster="user_input_files/poster.jpg" class="phone-video">
              <source src="user_input_files/gameplay.mp4" type="video/mp4">
              Your browser does not support the video tag.
          </video>
          
          3. Add the following CSS for the video:
          .phone-video {
              width: 100%;
              height: 100%;
              object-fit: cover;
          }
          ==========================================================================
        */
        .phone-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 10px 15px;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 8px;
            animation: floatCard 3s ease-in-out infinite;
        }

        .floating-card:nth-child(1) {
            top: 20%;
            right: -30px;
            animation-delay: 0s;
        }

        .floating-card:nth-child(2) {
            bottom: 30%;
            left: -40px;
            animation-delay: 1s;
        }

        .floating-card:nth-child(3) {
            bottom: 15%;
            right: -20px;
            animation-delay: 2s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0) rotate(-3deg); }
            50% { transform: translateY(-10px) rotate(-3deg); }
        }

        .floating-card-icon {
            width: 30px;
            height: 30px;
            background: var(--ice-blue-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-card-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--dark-blue-green);
        }

        .floating-card-text {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        /* Stats */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            animation: fadeInUp 0.6s ease 0.5s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Fredoka', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--yellowish-orange);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Benefits Section */
        .benefits {
            padding: 90px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--ice-blue-light);
            color: var(--dark-blue-green);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--dark-blue-green);
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto;
            font-weight: 500;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .benefit-card {
            background: var(--off-white);
            border-radius: 24px;
            padding: 35px;
            text-align: center;
            transition: var(--transition-normal);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--yellowish-orange);
            box-shadow: var(--shadow-md);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--yellowish-orange) 0%, var(--yellowish-orange-light) 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: var(--transition-normal);
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--dark-blue-green);
        }

        .benefit-title {
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--dark-blue-green);
            margin-bottom: 14px;
        }

        .benefit-description {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 500;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-normal);
        }

        .benefit-card:hover .benefit-description {
            opacity: 1;
            max-height: 200px;
            margin-top: 15px;
        }

        .benefit-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--off-white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 35px;
            opacity: 0;
            transition: var(--transition-normal);
            z-index: 1;
        }

        .benefit-card:hover .benefit-overlay {
            opacity: 1;
        }

        .benefit-overlay .benefit-icon {
            margin-bottom: 20px;
        }

        .benefit-overlay .benefit-title {
            margin-bottom: 0;
        }

        .benefit-overlay .benefit-description {
            opacity: 1;
            max-height: none;
        }

        .psychologist-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(230, 57, 70, 0.1);
            color: var(--cherry-red);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-top: 14px;
        }

        .psychologist-badge svg {
            width: 16px;
            height: 16px;
            fill: var(--cherry-red);
        }

        /* Features Section */
        .features {
            padding: 90px 0;
            background: linear-gradient(180deg, var(--off-white) 0%, var(--ice-blue-light) 100%);
        }

        .features-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
            align-items: center;
        }

        .features-text {
            order: 1;
        }

        .features-list {
            list-style: none;
            display: grid;
            gap: 28px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            fill: var(--cherry-red);
        }

        .feature-content h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--dark-blue-green);
            margin-bottom: 8px;
        }

        .feature-content p {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
            line-height: 1.6;
        }

        .features-visual {
            order: 2;
        }

        .features-single {
            display: flex;
            justify-content: center;
        }

        .feature-main-image {
            width: 100%;
            max-width: 500px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition-normal);
        }

        .feature-main-image:hover {
            transform: scale(1.02);
        }

        .feature-main-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Download Section */
        .download {
            padding: 90px 0;
            background: var(--white);
        }

        .filter-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 50px;
        }

        .filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--off-white);
            color: var(--dark-blue-green);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .filter-btn:hover {
            border-color: var(--yellowish-orange);
        }

        .filter-btn.active {
            background: var(--yellowish-orange);
            color: var(--dark-blue-green);
        }

        .filter-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .app-card {
            background: var(--off-white);
            border-radius: 28px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 18px;
            transition: var(--transition-normal);
            border: 2px solid transparent;
        }

        .app-card:hover {
            transform: translateY(-3px);
            border-color: var(--yellowish-orange);
            box-shadow: var(--shadow-md);
        }

        .app-card.hidden {
            display: none;
        }

        .app-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--dark-blue-green);
            margin-bottom: 0;
        }

        .app-icon {
            width: 80px;
            height: 80px;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .app-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .app-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            max-width: 280px;
        }

        .store-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 20px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition-fast);
            min-width: 100%;
        }

        .store-btn.enabled {
            background: var(--dark-blue-green);
            color: var(--white);
        }

        .store-btn.enabled:hover {
            background: var(--cherry-red);
            transform: translateY(-2px);
        }

        .store-btn.disabled {
            background: var(--text-muted);
            color: var(--white);
            cursor: not-allowed;
            opacity: 0.7;
        }

        .store-btn.disabled:hover {
            transform: none;
        }

        .store-btn svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        .store-btn-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.2;
        }

        .store-btn-text small {
            font-size: 0.65rem;
            opacity: 0.8;
        }

        .store-btn-text span {
            font-size: 0.9rem;
        }

        /* Expert Quotes Section */
        .experts {
            padding: 90px 0;
            background: var(--dark-blue-green);
        }

        .experts .section-title {
            color: var(--white);
        }

        .experts .section-subtitle {
            color: var(--text-light);
        }

        .experts-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .expert-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 32px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition-normal);
        }

        .expert-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.12);
        }

        .expert-quote {
            position: relative;
            margin-bottom: 24px;
        }

        .expert-quote svg {
            position: absolute;
            top: -10px;
            left: -5px;
            width: 40px;
            height: 40px;
            fill: var(--yellowish-orange);
            opacity: 0.5;
        }

        .expert-quote p {
            color: var(--text-light);
            font-size: 1.1rem;
            font-style: italic;
            font-weight: 500;
            line-height: 1.7;
            padding-left: 30px;
        }

        .expert-info {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .expert-avatar {
            width: 55px;
            height: 55px;
            background: var(--yellowish-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Fredoka', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--dark-blue-green);
        }

        .expert-details h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .expert-details p {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            padding: 90px 0;
            background: linear-gradient(135deg, var(--yellowish-orange) 0%, var(--yellowish-orange-light) 100%);
            text-align: center;
        }

        .cta-content {
            max-width: 650px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-blue-green);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .cta-description {
            font-size: 1.2rem;
            color: var(--dark-blue-green);
            margin-bottom: 35px;
            opacity: 0.9;
            font-weight: 600;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--dark-blue-green);
            color: var(--white);
            padding: 18px 36px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition-fast);
        }

        .cta-btn:hover {
            background: var(--cherry-red);
            transform: translateY(-3px);
        }

        .cta-btn svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        .cta-btn.secondary {
            background: transparent;
            color: var(--dark-blue-green);
            border: 3px solid var(--dark-blue-green);
        }

        .cta-btn.secondary:hover {
            background: var(--dark-blue-green);
            color: var(--white);
        }

        /* Footer */
        .footer {
            background: #0A1F2E;
            padding: 70px 0 35px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        /* .footer-brand {
            text-align: center;
        } */

        /* .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 50px;
            height: 50px;
            background: var(--yellowish-orange);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

        /* .footer-logo-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--dark-blue-green);
        }

        .footer-logo-text {
            font-family: 'Fredoka', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--white);
        }

        .footer-description {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 320px;
            margin: 0 auto 25px;
            font-weight: 500;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 16px;
        } */

        /* .social-link {
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
        }

        .social-link:hover {
            background: var(--cherry-red);
        }

        .social-link svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
        } */

        .footer-links {
            text-align: center;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .footer-links ul {
            list-style: none;
            display: grid;
            gap: 14px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--yellowish-orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .footer-copyright a {
            color: var(--yellowish-orange);
            text-decoration: none;
            font-weight: 700;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles - Tablet and Desktop */
        @media (min-width: 640px) {
            .hero-title {
                font-size: 3.3rem;
            }

            .hero-buttons {
                flex-direction: row;
            }

            .hero-stats {
                gap: 60px;
            }

            .stat-number {
                font-size: 2.4rem;
            }

            .section-title {
                font-size: 2.6rem;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .apps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .experts-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
                text-align: left;
            }

            .footer-brand {
                text-align: left;
            }

            .footer-description {
                margin: 0 0 25px;
            }

            .footer-social {
                justify-content: flex-start;
            }

            .footer-links {
                text-align: left;
            }
        }

        @media (min-width: 1024px) {
            .navbar {
                padding: 20px 0;
            }

            .nav-links {
                display: flex;
            }

            .nav-cta {
                display: block;
            }


            .mobile-menu-btn {
                display: none;
            }

            .mobile-menu-dropdown {
                display: none !important;
            }

            .hero {
                padding: 130px 0 90px;
            }

            .hero-content {
                grid-template-columns: 1fr 1fr;
                gap: 70px;
            }

            .hero-text {
                text-align: left;
            }

            .hero-description {
                margin-left: left;
            }

            .hero-buttons {
                justify-content: flex-start;
            }

            .phone-mockup {
                width: 320px;
                height: 640px;
            }

            .hero-stats {
                justify-content: flex-start;
            }

            .section-title {
                font-size: 3rem;
            }

            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-content {
                grid-template-columns: 1fr 1fr;
            }

            .features-text {
                order: 0;
            }

            .features-visual {
                order: 1;
            }

            .apps-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .experts-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .cta-title {
                font-size: 3rem;
            }

            .cta-buttons {
                flex-direction: row;
            }
                        .container {
                padding: 0 40px;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .phone-mockup {
                width: 360px;
                height: 720px;
            }
        }



        /* Mobile-specific styles */
        @media (max-width: 1023px) {
            .hero::after {
                display: none;
            }
            
            .hero::before {
                display: none;
            }
        }
   