        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-color: #6a11cb;
            --secondary-color: #2575fc;
            --accent-color: #ff4e7f;
            --text-dark: #333344;
            --text-light: #f8f9fa;
            --bg-light: #ffffff;
            --bg-alt: #f1f3ff;
            --shadow: rgba(106, 17, 203, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        a { color: var(--secondary-color); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--accent-color); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffd700, #ffec8b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.03); }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 0.3rem;
            margin-left: 1rem;
        }
        .search-box input {
            border: none;
            padding: 0.7rem 1rem;
            flex-grow: 1;
            min-width: 200px;
            outline: none;
        }
        .search-box button {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px var(--shadow);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--bg-alt);
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--primary-color); }
        .breadcrumb i { margin: 0 0.5rem; }
        main { padding: 2rem 0; }
        .article-header { text-align: center; margin-bottom: 3rem; }
        h1 {
            font-size: 3rem;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) { h1 { font-size: 2.2rem; } }
        .article-meta {
            color: #666;
            font-style: italic;
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-content { grid-template-columns: 1fr; }
        }
        .content-body {
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .content-body h2 {
            color: var(--primary-color);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent-color);
            font-size: 2rem;
        }
        .content-body h3 {
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        .content-body h4 {
            color: var(--text-dark);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.3rem;
        }
        .content-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-body strong {
            color: var(--accent-color);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, var(--bg-alt), #e3f2fd);
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .game-image {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px var(--shadow);
            margin: 2rem auto;
            border: 1px solid #eee;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            justify-content: center;
        }
        .link-list a {
            background: var(--bg-alt);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid transparent;
        }
        .link-list a:hover {
            border-color: var(--accent-color);
            transform: translateY(-3px);
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .widget {
            background: var(--bg-alt);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px var(--shadow);
        }
        .widget h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label { font-weight: 600; margin-bottom: 0.5rem; }
        .form-group input, .form-group textarea, .form-group select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
            justify-content: center;
            margin: 1rem 0;
        }
        .star-rating i:hover { transform: scale(1.2); }
        .site-footer {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            border-radius: 8px;
            border-left: 3px solid var(--accent-color);
        }
        friend-link a { color: #a3d5ff; }
        friend-link:hover { background: rgba(255,255,255,0.1); }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-desktop, .search-box { display: none; }
            .hamburger { display: block; }
            .header-content { position: relative; }
            .search-box.mobile { display: flex; margin: 1rem 0; width: 100%; }
            .search-box.mobile input { min-width: auto; }
        }
        @media (min-width: 769px) {
            .nav-mobile, .search-box.mobile { display: none !important; }
        }
        @media print {
            .site-header, .sidebar, .site-footer, .breadcrumb,
            .comment-form, .rating-form, .hamburger { display: none; }
            .article-content { grid-template-columns: 1fr; }
            body { color: #000; background: #fff; }
            a { color: #000; text-decoration: underline; }
        }
