        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0b0e;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffe174;
            text-decoration: underline;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #fff;
            margin-top: 1.8em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4em;
            background: linear-gradient(135deg, #f5c842, #f9e076);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid #f5c842;
            padding-left: 1rem;
            margin-top: 2.2em;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 1.8em;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.4em;
            color: #f0e6d0;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
            color: #d5d0c8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #121216;
            border-bottom: 2px solid #2a2a30;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(18, 18, 22, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5c842, #f9e076, #f5c842);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c842;
            font-size: 1.5rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8c4bc;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: #2a2a32;
            color: #f5c842;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2a32;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #18181e;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #25252b;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 600;
        }
        .search-section {
            background: #18181e;
            padding: 1.2rem 0;
            border-bottom: 1px solid #25252b;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3a3a44;
            background: #0b0b0e;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border 0.25s, box-shadow 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
            outline: none;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: #f5c842;
            color: #0b0b0e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffe174;
            transform: scale(1.02);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .article-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .article-body {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-card {
            background: #18181e;
            border-radius: 14px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #2a2a32;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-left: 3px solid #f5c842;
            padding-left: 0.7rem;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #25252b;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-size: 0.92rem;
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            background: #1a1a22;
            padding: 4px;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #2a2a32;
        }
        .featured-image figcaption {
            padding: 0.8rem 1rem 0.4rem;
            font-size: 0.88rem;
            color: #aaa;
            text-align: center;
            font-style: italic;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #18181e;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2a32;
        }
        .game-table th {
            background: #23232b;
            color: #f5c842;
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .game-table td {
            padding: 0.8rem 1rem;
            border-top: 1px solid #2a2a32;
            color: #d5d0c8;
            font-size: 0.95rem;
        }
        .game-table tr:hover td {
            background: #202028;
        }
        .game-table .status-badge {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .status-confirmed {
            background: #1e3a2e;
            color: #6fcf97;
        }
        .status-rumour {
            background: #3a2e1e;
            color: #f2c94c;
        }
        .status-speculation {
            background: #2a1e3a;
            color: #bb86fc;
        }
        .rating-area,
        .comment-area {
            background: #18181e;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1.5rem;
            border: 1px solid #2a2a32;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
            margin-bottom: 1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #555;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        .rate-form button,
        .comment-form button {
            padding: 0.7rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f5c842;
            color: #0b0b0e;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .rate-form button:hover,
        .comment-form button:hover {
            background: #ffe174;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border-radius: 12px;
            border: 1px solid #3a3a44;
            background: #0b0b0e;
            color: #e8e6e3;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            margin-bottom: 1rem;
            font-family: inherit;
            transition: border 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #f5c842;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.1);
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3a3a44;
            background: #0b0b0e;
            color: #e8e6e3;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            transition: border 0.25s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f5c842;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.1);
        }
        .site-footer {
            background: #0d0d11;
            border-top: 2px solid #1f1f27;
            padding: 2.5rem 0 1.8rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            margin-top: 0;
            color: #f5c842;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            padding: 0.25rem 0;
        }
        .footer-grid ul li a {
            font-size: 0.92rem;
            color: #b0aca4;
        }
        .footer-grid ul li a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid #1f1f27;
            border-bottom: 1px solid #1f1f27;
            margin: 1.2rem 0;
            font-size: 0.92rem;
            color: #aaa;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            color: #c8c4bc;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #777;
            border-top: 1px solid #1a1a22;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 1024px) {
            .article-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #18181e;
                border-radius: 12px;
                padding: 0.8rem;
                margin-top: 0.5rem;
                border: 1px solid #2a2a32;
            }
            .nav-list li a {
                display: block;
                padding: 0.7rem 1rem;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .rating-area,
            .comment-area {
                padding: 1.2rem 1.2rem;
            }
            .game-table {
                font-size: 0.85rem;
            }
            .game-table th,
            .game-table td {
                padding: 0.5rem 0.6rem;
            }
            .sidebar-card {
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .featured-image {
                margin: 1.2rem 0;
            }
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
        }
        .highlight {
            color: #f5c842;
            font-weight: 600;
        }
        .small-meta {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 1.5rem;
            display: block;
        }
        .divider {
            border: none;
            border-top: 1px solid #2a2a32;
            margin: 2.5rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .last-updated {
            display: inline-block;
            background: #1e1e26;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #aaa;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #f5c842;
        }
