:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #00b0ff;
            --text-light: #f8f9fa;
            --bg-dark: #1a1a2e;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            padding: 120px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .game-feature-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        .btn-glow {
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
        }
        .btn-glow:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .tag {
            background: rgba(255,255,255,0.1);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--secondary-color);
            transform: scale(1.05);
        }
        .rating-stars {
            color: #ffc107;
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
        }
        .highlight-text {
            color: var(--secondary-color);
            font-weight: 600;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        footer {
            background: rgba(0,0,0,0.8);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
