:root {
            --primary: #ff6b6b;
            --secondary: #4ecdc4;
            --dark: #2d3436;
            --light: #f9f9f9;
            --gray: #636e72;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #1a1e2c 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
            letter-spacing: -1px;
        }
        .my-logo span { color: var(--secondary); }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        nav ul {
            display: flex;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover { color: var(--secondary); }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: var(--transition);
        }
        nav a:hover::after { width: 100%; }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 20px;
            margin-top: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--dark); }
        .breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
        .breadcrumb i { margin: 0 8px; color: var(--gray); }
        main.container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-top: 2rem;
            margin-bottom: 3rem;
        }
        article { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: var(--shadow); }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--primary);
            padding-left: 1.5rem;
        }
        h2 {
            color: var(--dark);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #eee;
        }
        h3 { font-size: 1.5rem; margin: 2rem 0 1rem; color: #444; }
        h4 { font-size: 1.2rem; margin: 1.8rem 0 0.8rem; color: #555; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead {
            font-size: 1.3rem;
            color: var(--dark);
            font-weight: 500;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--secondary);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #fff9c4 0%, #fff9c4 100%);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #ffd54f;
        }
        .info-box {
            background: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--primary);
        }
        .stat-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
        .stat-card h3 { font-size: 2.2rem; color: var(--dark); margin: 0.5rem 0; }
        .game-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: var(--transition);
        }
        .game-img:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
        .caption { text-align: center; font-style: italic; color: var(--gray); margin-top: -1.5rem; margin-bottom: 2rem; font-size: 0.95rem; }
        emoji { font-size: 1.2em; margin-right: 5px; }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: var(--dark);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #eee;
        }
        .search-box { position: relative; }
        #search-input {
            width: 100%;
            padding: 0.9rem 1rem 0.9rem 3rem;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        #search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
        }
        .search-box i {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }
        .rating-widget .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            justify-content: center;
        }
        .stars i {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover, .stars i.active { color: #ffc107; }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .comment-form textarea:focus, .comment-form input:focus { border-color: var(--primary); outline: none; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), #ff8e8e);
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1rem;
        }
        .btn:hover {
            background: linear-gradient(to right, #ff5252, var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
        }
        .btn-secondary {
            background: linear-gradient(to right, var(--secondary), #6dece3);
        }
        .btn-secondary:hover { background: linear-gradient(to right, #3dc9bf, var(--secondary)); box-shadow: 0 7px 15px rgba(78, 205, 196, 0.4); }
        .related-links a {
            display: block;
            padding: 0.9rem 1rem;
            margin-bottom: 0.8rem;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
        }
        .related-links a:hover { background: #e9ecef; transform: translateX(5px); }
        footer {
            background: var(--dark);
            color: #ccc;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 0.6rem 1.2rem;
            margin: 0.3rem;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        friend-link:hover { background: rgba(255,255,255,0.1); color: var(--secondary); }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #999;
        }
        @media (max-width: 992px) {
            main.container { grid-template-columns: 1fr; }
            aside { position: static; margin-top: 2rem; }
        }
        @media (max-width: 768px) {
            .header-top { flex-direction: column; align-items: flex-start; }
            .mobile-toggle { display: block; position: absolute; top: 1.5rem; right: 20px; }
            nav { width: 100%; display: none; margin-top: 1rem; }
            nav.active { display: block; }
            nav ul { flex-direction: column; gap: 0; }
            nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
            nav a { display: block; padding: 1rem 0; }
            h1 { font-size: 2.2rem; }
            .lead { font-size: 1.1rem; }
            article { padding: 1.8rem; }
        }
