 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #2E1F15;
            overflow-x: hidden;
        }

        .sr-only {
          visibility: hidden;

        }
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(180deg, #FFFDF7 0%, #FFE08A 25%, #FFD24D 55%, #FFB703 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .logo {
            font-size: 5rem;
            margin-bottom: 1rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        h1 {
            font-size: 4rem;
            font-weight: 900;
            color: #2E1F15;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        }

        .tagline {
            font-size: 1.5rem;
            color: #5A4632;
            margin-bottom: 3rem;
            font-weight: 500;
        }

        .cta-button {
            background: linear-gradient(135deg, #2A9D8F 0%, #21867A 100%);
            color: white;
            padding: 1.5rem 3rem;
            font-size: 1.5rem;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(42, 157, 143, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(42, 157, 143, 0.4);
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: #FFFDF7;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: #2E1F15;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #5A4632;
            margin-bottom: 4rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            border: 2px solid rgba(255, 183, 3, 0.3);
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.75rem;
            color: #2E1F15;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .feature-description {
            color: #5A4632;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Game Modes Section */
        .game-modes {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #FFD24D 0%, #FFB703 100%);
        }

        .modes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mode-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .mode-card:hover {
            border-color: #2A9D8F;
            transform: scale(1.05);
        }

        .mode-emoji {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .mode-name {
            font-size: 1.75rem;
            font-weight: bold;
            color: #2E1F15;
            margin-bottom: 0.5rem;
        }

        .mode-description {
            color: #5A4632;
            font-size: 1rem;
        }

        /* How it Works Section */
        .how-it-works {
            padding: 6rem 2rem;
            background: #FFFDF7;
        }

        .steps {
            max-width: 900px;
            margin: 0 auto;
        }

        .step {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            gap: 2rem;
        }

        .step-number {
            background: linear-gradient(135deg, #FFB703, #FF9E1B);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: bold;
            flex-shrink: 0;
            box-shadow: 0 5px 20px rgba(255, 183, 3, 0.4);
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-size: 1.75rem;
            color: #2E1F15;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .step-text {
            color: #5A4632;
            font-size: 1.1rem;
        }

        /* CTA Section */
        .final-cta {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #2A9D8F 0%, #21867A 100%);
            text-align: center;
            color: white;
        }

        .final-cta h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button-white {
            background: white;
            color: #2A9D8F;
            padding: 1.5rem 3rem;
            font-size: 1.5rem;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-button-white:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: #2E1F15;
            color: #FFD24D;
            padding: 2rem;
            text-align: center;
        }

        footer a {
            color: #FFB703;
            text-decoration: none;
        }

        .warning {
            background: rgba(230, 57, 70, 0.1);
            border: 2px solid #E63946;
            border-radius: 10px;
            padding: 1rem 2rem;
            margin-top: 2rem;
            display: inline-block;
        }

        .warning-text {
            color: #E63946;
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .step {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                font-size: 3rem;
            }
        }