:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #2ecc71;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
            --text-color: #34495e;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        .main-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
            color: var(--secondary-color);
        }
        .navbar {
            background: linear-gradient(90deg, var(--dark-color), #3498db);
            padding: 15px 0;
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            margin: 0 10px;
            transition: all 0.3s ease;
            border-radius: 5px;
            padding: 8px 15px !important;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 15px;
            border-left: 4px solid var(--primary-color);
            border-radius: 5px;
            margin: 20px 0;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 15px;
            vertical-align: middle;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            margin: 20px 0;
            width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        .content-section {
            padding: 40px;
        }
        .table-of-contents {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .table-of-contents h3 {
            color: white;
            text-align: center;
        }
        .table-of-contents ul {
            columns: 2;
            list-style-type: none;
            padding-left: 0;
        }
        .table-of-contents li {
            margin-bottom: 10px;
        }
        .table-of-contents a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .table-of-contents a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateX(5px);
        }
        .key-feature {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 5px solid var(--accent-color);
        }
        .key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-5px);
        }
        .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;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .table-of-contents ul {
                columns: 1;
            }
            .content-section {
                padding: 20px;
            }
        }
        .rating-stars {
            color: #f1c40f;
            font-size: 1.2rem;
        }
        .character-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .character-info {
            padding: 15px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin: 30px 0;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent-color);
            padding-left: 20px;
            margin: 25px 0;
            color: #7f8c8d;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--dark-color);
        }
