:root {
            --primary-dark: #1a1a2e;
            --primary-medium: #16213e;
            --accent-color: #e94560;
            --text-light: #f1f1f1;
            --text-muted: #b8b8b8;
            --gold-accent: #ffd700;
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: var(--text-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold-accent) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        h1 {
            color: var(--gold-accent);
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        h2 {
            color: var(--accent-color);
            border-left: 4px solid var(--accent-color);
            padding-left: 15px;
            margin: 40px 0 20px;
            font-weight: 700;
        }
        h3 {
            color: var(--gold-accent);
            margin: 30px 0 15px;
            font-weight: 600;
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .game-image {
            width: 100%;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-box {
            background: rgba(233, 69, 96, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .fact-box {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--gold-accent);
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .key-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .key-feature i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        footer {
            background: rgba(0,0,0,0.8);
            padding: 30px 0;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--accent-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: #ff2e4f;
            color: white;
        }
        .table-of-contents {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        .toc-item {
            margin-bottom: 10px;
            padding-left: 15px;
            border-left: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .toc-item:hover {
            border-left: 2px solid var(--accent-color);
            padding-left: 20px;
        }
        .toc-item a {
            color: var(--text-light);
            text-decoration: none;
        }
        .toc-item a:hover {
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 20px;
            }
        }
        strong {
            color: var(--gold-accent);
            font-weight: 700;
        }
        .quote {
            font-style: italic;
            border-left: 3px solid var(--gold-accent);
            padding-left: 20px;
            margin: 25px 0;
            color: var(--text-muted);
        }
