:root {
            --primary-blue: #1a5276;
            --secondary-teal: #17a2b8;
            --accent-orange: #e67e22;
            --deep-purple: #6c5ce7;
            --text-light: #f8f9fa;
            --bg-dark: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #34495e 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--secondary-teal), var(--deep-purple));
            -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(--secondary-teal);
        }
        .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-teal);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--accent-orange);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-orange);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--secondary-teal) 0%, transparent 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 700;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--secondary-teal);
            margin-right: 15px;
            vertical-align: middle;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
            transition: transform 0.3s ease;
            margin: 20px 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-pills .nav-link {
            color: var(--text-light);
            margin: 5px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .nav-pills .nav-link:hover, .nav-pills .nav-link.active {
            background: var(--secondary-teal);
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background: rgba(0,0,0,0.8);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 3px solid var(--accent-orange);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 20px;
                margin: 15px 0;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .stat-box {
            background: rgba(23, 162, 184, 0.2);
            border-left: 4px solid var(--secondary-teal);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote-section {
            border-left: 4px solid var(--accent-orange);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            background: rgba(230, 126, 34, 0.1);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
