:root {
            --primary-color: #ff6b35;
            --secondary-color: #1e88e5;
            --accent-color: #ffd54f;
            --text-dark: #2d3748;
            --text-light: #718096;
            --bg-light: #f7fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .main-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        .logo {
            font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            text-shadow: 3px 3px 0px rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 5px 5px 0px rgba(255, 107, 53, 0.4);
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        h1 {
            font-size: 3rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin: 2rem 0;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 6px solid var(--primary-color);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2rem;
        }
        .content-section {
            padding: 3rem 2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--bg-light), #e2e8f0);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 5px solid var(--accent-color);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .key-point {
            background: var(--accent-color);
            color: var(--text-dark);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            margin: 0.5rem;
            font-size: 0.9rem;
        }
        footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .copyright {
            background: #1a202c;
            color: #a0aec0;
            padding: 1.5rem 0;
            text-align: center;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-section {
                padding: 2rem 1rem;
            }
            .logo {
                font-size: 2rem;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .seo-keyword {
            font-weight: 700;
            color: var(--primary-color);
        }
        .rating-stars {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
