:root {
            --primary: #4a1e88;
            --secondary: #ff6b00;
            --accent: #00c9b7;
            --light: #f8f5ff;
            --dark: #1a0b2e;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(106, 13, 173, 0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul, ol {
            list-style-position: inside;
            padding-left: 1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #ff6b00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .logo:hover {
            transform: scale(1.03);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            gap: 2rem;
        }
        .nav-list li {
            list-style: none;
        }
        .nav-link {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light);
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        main {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            max-width: 100%;
        }
        .article-header {
            margin-bottom: 2.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .meta-item i {
            margin-right: 0.5rem;
        }
        .intro {
            font-size: 1.2rem;
            color: #555;
            padding: 1.5rem;
            background: linear-gradient(to right, #f8f5ff, #eef2ff);
            border-left: 5px solid var(--secondary);
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            font-size: 1.5rem;
            color: #444;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background-color: rgba(255, 107, 0, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--secondary);
            margin: 1.5rem 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin: 2rem auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: translateY(-5px);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            border-top: 4px solid var(--accent);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        }
        .feature-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .interactive-section {
            background-color: var(--light);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .interactive-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-btn {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: linear-gradient(135deg, var(--dark), var(--primary));
        }
        .rating-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 0.25rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .submit-btn {
            background: linear-gradient(135deg, var(--secondary), #ff8c42);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, #ff8c42, var(--secondary));
            transform: scale(1.03);
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .popular-games {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .game-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem;
            border-radius: 8px;
            background-color: #f9f9f9;
            transition: var(--transition);
        }
        .game-link:hover {
            background-color: #eef2ff;
            transform: translateX(5px);
        }
        .game-link i {
            color: var(--secondary);
        }
        .footer-links {
            background-color: var(--dark);
            padding: 3rem 0 2rem;
            color: white;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem 0.5rem 0;
            padding: 0.5rem 1.2rem;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        footer {
            background-color: #120822;
            color: #bbb;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-list.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-input,
            .search-btn {
                border-radius: 8px;
                width: 100%;
            }
            .search-btn {
                margin-top: 0.5rem;
                padding: 1rem;
            }
        }
        .text-bold {
            font-weight: 700;
        }
        .text-italic {
            font-style: italic;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .color-primary {
            color: var(--primary);
        }
        .color-secondary {
            color: var(--secondary);
        }
