:root {
            --primary-color: #1a6fb3;
            --secondary-color: #ff5a00;
            --dark-color: #0a1a2a;
            --light-color: #f8f9fa;
            --text-color: #333;
            --gray-color: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-color);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo i {
            color: var(--secondary-color);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }
        nav a:hover {
            color: var(--secondary-color);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--gray-color);
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        .content {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 15px;
        }
        article h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ddd;
        }
        article h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin: 25px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        article em {
            font-style: italic;
            color: var(--gray-color);
        }
        article strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        .highlight-box {
            background-color: #e3f2fd;
            border-left: 5px solid var(--primary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 25px auto;
            display: block;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.01);
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .feature-item {
            background: white;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            border-top: 4px solid var(--secondary-color);
            transition: var(--transition);
        }
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .feature-item i {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        aside {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-result {
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 10px;
        }
        .comments-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #eee;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--secondary-color);
        }
        .footer-links {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            margin: 8px 15px 8px 0;
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            background-color: white;
            padding: 8px 16px;
            border-radius: 30px;
            border: 1px solid #ddd;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .web-link a:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid #444;
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            nav ul {
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 15px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                border-bottom: 1px solid #2a3a4a;
            }
            nav a {
                display: block;
                padding: 12px 0;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .content, aside {
                padding: 20px;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }
