:root {
            --primary-gold: #FFD700;
            --secondary-brown: #8B4513;
            --accent-green: #228B22;
            --dark-bg: #1a1a1a;
            --light-text: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1f0d 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-gold), #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .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;
            padding: 100px 0;
            text-align: center;
            border-bottom: 3px solid var(--primary-gold);
        }
        .game-feature {
            background: rgba(255,215,0,0.1);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            border-left: 4px solid var(--primary-gold);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            background: rgba(255,215,0,0.15);
        }
        .btn-gold {
            background: linear-gradient(45deg, var(--primary-gold), #FFA500);
            color: #000;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 25px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255,215,0,0.4);
        }
        .rating-stars {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        .section-title {
            border-bottom: 2px solid var(--primary-gold);
            padding-bottom: 10px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background: rgba(255,215,0,0.2);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: rgba(255,215,0,0.3);
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        footer {
            background: #000;
            padding: 40px 0 20px;
            border-top: 2px solid var(--primary-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
        }
