:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #2ecc71;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .main-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 20px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        .logo-brand {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .nav-custom {
            background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            padding: 10px 20px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--text-dark);
            margin-bottom: 1.2rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,107,53,0.2) 0%, rgba(255,107,53,0) 100%);
            padding: 15px;
            border-left: 4px solid var(--primary-color);
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .key-feature {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            transition: all 0.3s ease;
            border-left: 5px solid var(--accent-color);
        }
        .key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: all 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .img-caption {
            font-style: italic;
            color: var(--text-light);
            text-align: center;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        footer {
            background: linear-gradient(90deg, #1a2a6c, #b21f1f);
            color: white;
            padding: 30px 0 15px;
            margin-top: 50px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 15px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        .content-section {
            padding: 30px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .logo-brand {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 20px 15px;
            }
        }
        .toc {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
        }
        .toc ul {
            padding-left: 20px;
        }
        .toc li {
            margin-bottom: 8px;
        }
        .toc a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .toc a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .emphasis {
            font-weight: 700;
            color: var(--primary-color);
        }
        .icon-bullet {
            color: var(--accent-color);
            margin-right: 10px;
        }
