:root {
            --primary: #8a2be2;
            --primary-dark: #5a1e9c;
            --secondary: #ff9800;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.8;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo span {
            color: var(--secondary);
            text-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav.desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        nav.desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        nav.desktop-nav a:hover {
            color: var(--secondary);
        }
        nav.desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            background: #f1f3ff;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 3rem 0;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 5px solid var(--secondary);
            padding-bottom: 1.5rem;
        }
        .intro {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            text-align: center;
            font-style: italic;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e0e0e0;
        }
        h3 {
            font-size: 1.7rem;
            color: var(--dark);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 2rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-card {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            background: #f9f9ff;
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }
        .game-img {
            width: 100%;
            border-radius: 10px;
            object-fit: cover;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .rank-badge {
            display: inline-block;
            background: var(--secondary);
            color: white;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.8rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        a.content-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted var(--primary);
            transition: color 0.3s, background 0.3s;
        }
        a.content-link:hover {
            color: white;
            background: var(--primary);
            padding: 0 3px;
            border-radius: 3px;
        }
        .quote {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--gray);
            text-align: center;
            padding: 2rem;
            border-top: 2px solid var(--secondary);
            border-bottom: 2px solid var(--secondary);
            margin: 3rem 0;
            background: #fffaf0;
        }
        .search-box {
            background: #f0f2ff;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            text-align: center;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--primary);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: var(--primary-dark);
        }
        .rating-widget {
            background: #fff8e1;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ffc107;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-section {
            background: #f9f9f9;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            background: var(--success);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #218838;
        }
        .update-time {
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 4rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .footer-links a {
            display: block;
            color: #ccc;
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        friend-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .game-card { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            nav.desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .search-box form { flex-direction: column; }
            .search-box input, .search-box button { border-radius: 8px; width: 100%; }
            .search-box button { margin-top: 10px; padding: 1rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            .intro { font-size: 1.1rem; }
        }
