        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom right, #f0f4f8, #e9ecef);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a { color: #2a6ebb; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #e63946; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-areas:
                "header"
                "breadcrumb"
                "main"
                "sidebar"
                "footer";
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .container {
                grid-template-columns: 3fr 1fr;
                grid-template-areas:
                    "header header"
                    "breadcrumb breadcrumb"
                    "main sidebar"
                    "footer footer";
            }
        }
        header {
            grid-area: header;
            background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        .logo-area {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            background: linear-gradient(to right, #ffd166, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo a { background: none; -webkit-text-fill-color: inherit; }
        .hamburger {
            display: block;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (min-width: 768px) { .hamburger { display: none; } }
        nav {
            width: 100%;
            margin-top: 1.5rem;
            display: none;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 1rem;
        }
        nav.active { display: flex; }
        @media (min-width: 768px) {
            nav {
                display: flex;
                flex-direction: row;
                justify-content: center;
                background: transparent;
                padding: 0;
                margin-top: 1rem;
            }
        }
        nav a {
            color: #f1faee;
            padding: 0.8rem 1.2rem;
            margin: 0.2rem;
            border-radius: 6px;
            text-align: center;
            font-weight: 600;
        }
        nav a:hover {
            background-color: rgba(231, 57, 70, 0.7);
            color: white;
        }
        .breadcrumb {
            grid-area: breadcrumb;
            padding: 1rem;
            background-color: #e9ecef;
            border-radius: 8px;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #1d3557; }
        main {
            grid-area: main;
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        article h1 {
            font-size: 2.8rem;
            color: #1d3557;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #e63946;
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #457b9d;
            margin: 2.5rem 0 1.2rem;
            padding-top: 0.5rem;
        }
        article h3 {
            font-size: 1.6rem;
            color: #1d3557;
            margin: 2rem 0 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #e63946;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
            border-left: 5px solid #e63946;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 3px 3px 8px rgba(0,0,0,0.05);
        }
        .game-image {
            width: 80%;
            margin: 2rem auto;
            border: 8px solid #1d3557;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        aside {
            grid-area: sidebar;
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 1rem;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: #1d3557;
            border-bottom: 2px solid #ffd166;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #a8dadc;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(to right, #457b9d, #1d3557);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #1d3557, #e63946);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .stars i { cursor: pointer; transition: transform 0.2s; }
        .stars i:hover { transform: scale(1.2); }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 0.8rem;
            border: 2px solid #a8dadc;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .update-time {
            font-size: 0.9rem;
            color: #777;
            text-align: center;
            padding: 0.5rem;
            background-color: #f8f9fa;
            border-radius: 6px;
        }
        footer {
            grid-area: footer;
            background: #1d3557;
            color: #f1faee;
            padding: 2.5rem 1.5rem;
            border-radius: 12px 12px 0 0;
            text-align: center;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .friend-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .friend-link:hover {
            background: rgba(231, 57, 70, 0.7);
            transform: translateY(-3px);
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #457b9d;
            font-size: 0.9rem;
            color: #a8dadc;
        }
        .emoji { font-size: 1.2em; }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
