:root {
            --primary-color: #ff6b6b;
            --secondary-color: #4ecdc4;
            --accent-color: #45b7d1;
            --festival-pink: #e84393;
            --festival-blue: #0984e3;
            --festival-yellow: #fdcb6e;
            --festival-green: #00b894;
            --text-dark: #2d3436;
            --bg-light: #f9f7fe;
        }
        body {
            font-family: 'Segoe UI', system-ui, 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-blue));
            -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(135deg, var(--festival-pink) 0%, var(--festival-blue) 50%, var(--festival-green) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .content-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            color: white;
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        h2 {
            color: var(--festival-pink);
            border-left: 5px solid var(--festival-yellow);
            padding-left: 1rem;
        }
        h3 {
            color: var(--festival-blue);
            font-size: 1.4rem;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--festival-yellow) 0%, var(--festival-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.3rem;
        }
        .btn-download {
            background: linear-gradient(45deg, var(--festival-pink), var(--festival-blue));
            border: none;
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            color: white;
        }
        .btn-login {
            background: white;
            border: 2px solid var(--festival-pink);
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: 700;
            color: var(--festival-pink);
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background: var(--festival-pink);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            margin: 2rem 0;
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .rating-stars {
            color: var(--festival-yellow);
            font-size: 1.2rem;
        }
        .tag {
            display: inline-block;
            background: var(--bg-light);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        .tag:hover {
            background: var(--festival-blue);
            color: white;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .footer {
            background: linear-gradient(135deg, #2d3436 0%, #2d3436 100%);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .game-stats {
            background: linear-gradient(135deg, var(--festival-green), var(--accent-color));
            color: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
        }
        .player-review {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 5px solid var(--festival-pink);
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--festival-pink), var(--festival-blue));
            border-radius: 50px;
        }
        .nav-pills .nav-link {
            color: var(--text-dark);
            border-radius: 50px;
            margin: 0.2rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
