:root {
            --primary-color: #8B4513;
            --secondary-color: #FFD700;
            --accent-color: #4B0082;
            --dark-bg: #1a1a2e;
            --light-text: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--secondary-color), #FF6347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            padding: 100px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 26, 46, 0.85);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 2rem 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .keyword-highlight {
            color: var(--secondary-color);
            font-weight: bold;
            background: rgba(255, 215, 0, 0.1);
            padding: 0 5px;
            border-radius: 3px;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), #A0522D);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 10px;
        }
        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
        }
        .btn-secondary {
            background: linear-gradient(45deg, var(--accent-color), #6A0DAD);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 10px;
        }
        .btn-secondary:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(75, 0, 130, 0.4);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: rgba(255, 215, 0, 0.2);
            color: var(--secondary-color);
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag-badge:hover {
            background: rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
            text-decoration: none;
            color: var(--secondary-color);
        }
        .rating-stars {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        .footer {
            background: rgba(0, 0, 0, 0.7);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-link {
            color: var(--light-text);
            transition: color 0.3s ease;
            font-weight: 500;
        }
        .nav-link:hover {
            color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 20px;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
