:root {
            --primary-color: #ff6b6b;
            --secondary-color: #4ecdc4;
            --accent-color: #45b7d1;
            --festival-yellow: #ffe66d;
            --festival-pink: #ff6b9d;
            --festival-green: #2ecc71;
            --text-dark: #2d3436;
            --text-light: #f7f7f7;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--festival-pink), var(--festival-yellow), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-10px);
        }
        .color-badge {
            display: inline-block;
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: bold;
            margin: 5px;
            color: white;
        }
        .download-btn {
            background: linear-gradient(45deg, var(--festival-pink), var(--primary-color));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            color: white;
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255,107,107,0.3);
        }
        .login-btn {
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            color: white;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(78,205,196,0.3);
        }
        .tag-link {
            display: inline-block;
            background: #f1f2f6;
            padding: 8px 15px;
            border-radius: 50px;
            margin: 5px;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        .game-stats {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 15px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        footer {
            background: var(--text-dark);
            color: var(--text-light);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
        }
        h2 {
            color: var(--accent-color);
            font-size: 2rem;
            border-left: 5px solid var(--festival-yellow);
            padding-left: 15px;
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
        }
        .content-section {
            margin-bottom: 40px;
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--festival-yellow) 0%, var(--festival-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
