
        :root {
            --primary: #3a86ff;
            --primary-dark: #2563eb;
            --secondary: #ff006e;
            --accent: #8338ec;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #6b7280;
            --success: #10b981;
            --warning: #f59e0b;
            --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

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

        body {
            background: linear-gradient(135deg, #cee4fa 0%, #a1badb 100%);
            min-height: 100vh;
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            padding-bottom: 2rem;
        }

        .header {
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: white;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-family: 'Roboto Slab', serif;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }

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

        .whatsapp-banner {
            background: linear-gradient(to right, #25D366, #128C7E);
            color: white;
            text-align: center;
            padding: 1rem;
            margin: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-banner a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .whatsapp-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            100% {
                left: 100%;
            }
        }

        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }

        .page-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 1rem;
        }

        .page-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .intro-section {
            text-align: center;
            margin: 0 auto 3rem auto;
            padding: 2.5rem;
            background: white;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            max-width: 800px;
        }

        .intro-section h2 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .intro-section p {
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.7;
        }

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

        .option-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            box-shadow: 3px 3px rgb(0, 110, 255);
            display: flex;
            flex-direction: column;
            height: 100%;
            cursor: pointer;
            position: relative;
            border: 2px solid transparent;
        }

        .option-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
        }

        .card-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--secondary);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.35rem 0.75rem;
            border-radius: 50px;
            z-index: 2;
        }

        .card-icon {
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right bottom, #f0f9ff, #e0f2fe);
            position: relative;
            overflow: hidden;
        }

        .card-icon img {
            max-width: 230px;
            height: auto;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
            transition: var(--transition);
        }

        .card-icon img[alt="Play without console"] {
           filter: saturate(0);
        }

        .option-card:hover .card-icon img {
            transform: scale(1.1);
        }

        .comics-icon {
            font-size: 3.5rem;
            display: flex;
            gap: 0.5rem;
        }

        .comics-icon span {
            display: inline-block;
            animation: bounce 2s infinite;
        }

        .comics-icon span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .comics-icon span:nth-child(3) {
            animation-delay: 0.4s;
        }

        .comics-icon span:nth-child(4) {
            animation-delay: 0.6s;
        }

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

        .card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-content h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .card-subtitle {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .card-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .card-button {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
            text-align: center;
            margin-top: auto;
        }

        .card-button:hover {
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }

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

        .info-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--card-shadow);
            border-left: 4px solid var(--primary);
        }

        .info-card h3 {
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-card h3 i {
            color: var(--primary);
        }

        .info-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        .ad-container {
            width: 100%;
            margin: 3rem 0;
            display: flex;
            justify-content: center;
        }

        .ad-placeholder {
            width: 100%;
            max-width: 970px;
            height: 250px;
            background: #f1f5f9;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-weight: 500;
            border: 2px dashed #cbd5e1;
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                padding: 1rem;
            }
            
            .nav-links {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .intro-section {
                padding: 1.5rem;
            }
            
            .options-grid {
                grid-template-columns: 1fr;
            }
            
            .info-sections {
                grid-template-columns: 1fr;
            }
            
        }

        /* Animation utilities */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
