:root {
            --primary-gold: #FFD700;
            --deep-purple: #4B0082;
            --rich-red: #DC143C;
            --vibrant-orange: #FF8C00;
            --light-cream: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--deep-purple), var(--rich-red));
            -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(75, 0, 130, 0.8), rgba(220, 20, 60, 0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 40px;
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border-left: 5px solid var(--primary-gold);
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-btn {
            background: linear-gradient(45deg, var(--vibrant-orange), var(--rich-red));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
        }
        .login-btn {
            background: transparent;
            border: 2px solid var(--deep-purple);
            color: var(--deep-purple);
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            background: var(--deep-purple);
            color: white;
        }
        .rating-stars {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        .tag {
            display: inline-block;
            background: #f0f0f0;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--deep-purple);
            color: white;
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        .game-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .game-image:hover img {
            transform: scale(1.03);
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 1.2rem;
        }
        h1 {
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .highlight {
            background: linear-gradient(120deg, var(--primary-gold) 0%, var(--primary-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, var(--deep-purple), var(--primary-gold), var(--rich-red));
            margin: 40px 0;
            border-radius: 3px;
        }
        footer {
            background: linear-gradient(135deg, var(--deep-purple) 0%, #2c003e 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: var(--light-cream);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 50px 0;
                border-radius: 0 0 20px 20px;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
