        :root {
            --primary: #3498db;
            --primary-dark: #2980b9;
            --secondary: #2ecc71;
            --accent: #e74c3c;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --gray: #95a5a6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * { 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: #333;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 { color: var(--dark); margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 4px solid var(--primary); padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; color: var(--primary-dark); margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: var(--secondary); margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: var(--accent); margin-top: 1.5rem; }
        p { margin-bottom: 1.2rem; font-size: 1.1rem; }
        a { color: var(--primary); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--accent); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
        .text-center { text-align: center; }
        .highlight { background-color: #fffacd; padding: 2px 6px; border-radius: 3px; }
        .bold { font-weight: 800; color: var(--dark); }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .my-logo span { color: var(--accent); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f8ff;
            font-size: 0.95rem;
        }
        .breadcrumb a { color: var(--gray); }
        .breadcrumb a:hover { color: var(--primary); }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 80px 0;
            margin-bottom: 40px;
        }
        .hero h1 { color: white; border-color: white; }
        .hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 30px; }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        article { background: white; padding: 40px; border-radius: 15px; box-shadow: var(--shadow); }
        .article-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px dashed var(--light);
            color: var(--gray);
            font-size: 0.95rem;
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            margin: 30px 0;
            border: 5px solid var(--light);
        }
        .info-box {
            background: #e8f4fc;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        aside { position: sticky; top: 120px; align-self: start; }
        .sidebar-widget {
            background: white;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form { display: flex; }
        .search-form input {
            flex: 1;
            padding: 12px;
            border: 2px solid var(--light);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .rating-widget { text-align: center; }
        .stars { font-size: 2rem; color: #ffd700; margin: 10px 0; cursor: pointer; }
        .stars .far { color: #ccc; }
        .score-display { font-size: 1.5rem; font-weight: bold; color: var(--accent); }
        .comment-section { margin-top: 50px; }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 2px solid var(--light);
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form button { width: 100%; }
        .comment-list { margin-top: 40px; }
        .comment { background: #f8f9fa; padding: 20px; border-radius: 10px; margin-bottom: 20px; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; color: var(--gray); }
        .site-footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links h4 { color: white; }
        .footer-links ul { list-style: none; padding-left: 0; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #bdc3c7; }
        .footer-links a:hover { color: white; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 992px) {
            .content-main { grid-template-columns: 1fr; }
            aside { order: -1; position: static; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .main-nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; box-shadow: var(--shadow); }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .header-inner { position: relative; }
            article { padding: 25px; }
            .hero { padding: 50px 0; }
        }
