: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%);
            min-height: 100vh;
        }
        .main-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            margin-top: 20px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        .logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            text-shadow: 3px 3px 0px rgba(255,107,53,0.2);
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 15px 15px 0 0;
            padding: 15px 0;
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            margin: 0 10px;
            transition: all 0.3s ease;
            border-radius: 10px;
            padding: 8px 15px !important;
        }
        .nav-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--primary-color);
            padding-bottom: 10px;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,107,53,0.2) 0%, rgba(255,107,53,0) 100%);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid var(--primary-color);
            margin: 25px 0;
        }
        .key-point {
            background: var(--bg-light);
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            border-left: 4px solid var(--accent-color);
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: all 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .content-section {
            padding: 40px 30px;
        }
        footer {
            background: linear-gradient(90deg, var(--text-dark), #34495e);
            color: white;
            padding: 30px 0;
            border-radius: 0 0 15px 15px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(255,107,53,0.4);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--secondary-color);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .logo {
                font-size: 2rem;
            }
            .content-section {
                padding: 25px 15px;
            }
        }
        .table-of-contents {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid var(--primary-color);
        }
        .toc-list {
            list-style-type: none;
            padding-left: 0;
        }
        .toc-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .toc-list li:before {
            content: "▶";
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }
        .toc-list a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .toc-list a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .character-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .character-img {
            height: 200px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }
        .character-info {
            padding: 20px;
        }
        .stats-bar {
            height: 8px;
            background: #ecf0f1;
            border-radius: 10px;
            margin: 10px 0;
            overflow: hidden;
        }
        .stats-fill {
            height: 100%;
            border-radius: 10px;
        }
        .speed-fill {
            width: 90%;
            background: var(--primary-color);
        }
        .agility-fill {
            width: 85%;
            background: var(--secondary-color);
        }
        .power-fill {
            width: 70%;
            background: var(--accent-color);
        }
