        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #2a5db0; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ff9900; text-decoration: underline; }
        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(90deg, #1a237e 0%, #283593 50%, #3949ab 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #FFD700, #FFEE58);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 0 #000;
            letter-spacing: 1px;
        }
        .my-logo a { color: inherit; text-decoration: none; }
        .my-logo:hover { transform: scale(1.05); transition: transform 0.3s ease; }
        .nav-toggle { display: none; }
        .nav-toggle-label {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #FFD700;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-size: 1rem;
        }
        .main-nav a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            text-decoration: none;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #666;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
            flex-grow: 1;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        main article {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        article h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #283593;
            margin: 2.5rem 0 1rem 0;
            padding-top: 1rem;
            border-top: 1px dashed #c5cae9;
        }
        article h3 {
            font-size: 1.5rem;
            color: #3949ab;
            margin: 2rem 0 1rem 0;
        }
        article h4 {
            font-size: 1.2rem;
            color: #5c6bc0;
            margin: 1.5rem 0 0.8rem 0;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: #1a237e;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-left: 5px solid #2196f3;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            border: 3px solid #ddd;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.01);
        }
        .last-updated {
            font-style: italic;
            color: #666;
            text-align: right;
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        aside {
            background-color: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.3rem;
            color: #1a237e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #FFD700;
        }
        .search-form { display: flex; }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #c5cae9;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #3949ab;
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #283593;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-form .stars .star:hover,
        .rating-form .stars .star.active {
            color: #FFD700;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #c5cae9;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #3949ab;
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, #3949ab, #283593);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, #283593, #1a237e);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .site-footer {
            background: linear-gradient(90deg, #1a237e, #283593);
            color: #e8eaf6;
            padding: 3rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #FFD700;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #c5cae9;
        }
        .footer-links a:hover {
            color: #FFD700;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #90a4ae;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-toggle-label {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                padding-top: 1rem;
            }
            .main-nav li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .nav-toggle:checked ~ .main-nav {
                max-height: 500px;
            }
            article h1 { font-size: 2.2rem; }
            article { padding: 1.5rem; }
            .content-wrapper { gap: 1.5rem; }
        }
