        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f0e8;
            color: #2d2d2d;
            line-height: 1.75;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: #740001; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #d4a017; text-decoration: underline; }
        ul, ol { padding-left: 1.5rem; margin: 0.75rem 0; }
        li { margin-bottom: 0.4rem; }
        h1, h2, h3, h4 {
            line-height: 1.3;
            color: #1a1a2e;
            margin: 1.5rem 0 0.75rem;
        }
        h1 { font-size: 2.5rem; font-weight: 800; }
        h2 { font-size: 2rem; font-weight: 700; border-bottom: 3px solid #d4a017; padding-bottom: 0.4rem; }
        h3 { font-size: 1.4rem; font-weight: 600; color: #740001; }
        h4 { font-size: 1.15rem; font-weight: 600; color: #1a1a2e; }
        p { margin: 0.85rem 0; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 60%, #740001 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 1.9rem;
            font-weight: 900;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover { text-decoration: none; color: #ffe44d; }
        .my-logo i { margin-right: 0.35rem; }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 2px solid #ffd700;
            color: #ffd700;
            font-size: 1.3rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .nav-toggle:hover { background: rgba(255,215,0,0.2); }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1rem;
            align-items: center;
        }
        .main-nav a {
            color: #e0d6c8;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .main-nav a:hover {
            color: #ffd700;
            border-bottom-color: #ffd700;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f5f0e8;
            padding: 0.6rem 0;
            border-bottom: 1px solid #ddd;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li + li::before {
            content: "/";
            margin: 0 0.5rem;
            color: #999;
        }
        .breadcrumb a { color: #740001; font-weight: 500; }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero {
            background: radial-gradient(ellipse at center, #1a1a2e 0%, #0d0d1a 100%);
            color: #f0e6d2;
            text-align: center;
            padding: 3rem 1rem;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .hero h1 {
            color: #ffd700;
            font-size: 3rem;
            text-shadow: 0 0 30px rgba(255,215,0,0.3);
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }
        .hero p {
            max-width: 700px;
            margin: 1rem auto;
            font-size: 1.2rem;
            color: #c8b89a;
            position: relative;
            z-index: 1;
        }
        .hero .tagline {
            display: inline-block;
            background: rgba(116,0,1,0.6);
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.95rem;
            border: 1px solid #ffd700;
            color: #ffd700;
            margin-top: 1rem;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 2rem auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.75rem 1rem;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #740001;
        }
        .search-form button {
            background: #740001;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover { background: #5a0000; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 2rem auto;
        }
        @media (min-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr 300px;
            }
        }
        .article-card {
            background: #fff;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            margin-bottom: 2rem;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar .widget {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            margin-bottom: 1.5rem;
        }
        .sidebar .widget h3 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #f0e0c0;
            padding-bottom: 0.5rem;
        }
        .sidebar .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar .widget ul li {
            margin-bottom: 0.4rem;
        }
        .sidebar .widget ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #333;
            font-size: 0.9rem;
        }
        .sidebar .widget ul li a:hover { color: #740001; }
        .feature-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .feature-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .feature-image:hover img { transform: scale(1.02); }
        figure figcaption {
            background: #1a1a2e;
            color: #e0d6c8;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            text-align: center;
        }
        .rating-box, .comment-box {
            background: #faf6f0;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 1px solid #e5ddd0;
        }
        .rating-box h3, .comment-box h3 {
            color: #740001;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #ddd;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .star-rating i.active { color: #ffd700; }
        .star-rating i:hover { color: #ffc107; transform: scale(1.1); }
        .btn {
            display: inline-block;
            background: #740001;
            color: #fff;
            padding: 0.6rem 1.5rem;
            border: none;
            border-radius: 30px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn:hover { background: #5a0000; color: #fff; text-decoration: none; }
        textarea, input[type="text"], input[type="email"], select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }
        textarea:focus, input:focus, select:focus { outline: 2px solid #740001; border-color: transparent; }
        .table-responsive {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th, td {
            padding: 0.75rem 1rem;
            border: 1px solid #e0d8cc;
            text-align: left;
        }
        th { background: #740001; color: #fff; }
        .callout {
            background: #fdf8ee;
            border-left: 4px solid #d4a017;
            padding: 1rem 1.25rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .callout strong { color: #740001; }
        .site-footer {
            background: #1a1a2e;
            color: #b8a88a;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) {
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
        }
        .footer-col h3 {
            color: #ffd700;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .footer-col a {
            color: #b8a88a;
            display: block;
            margin-bottom: 0.4rem;
        }
        .footer-col a:hover { color: #ffd700; text-decoration: none; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }
        friend-link a {
            color: #d4a017;
            margin: 0 0.5rem;
        }
        friend-link a:hover { color: #ffd700; }
        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #7a6a5a;
        }
        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(26,26,46,0.98);
                padding: 1rem;
                border-radius: 8px;
                margin-top: 0.5rem;
            }
            .main-nav.open { display: flex; }
            .main-nav a { padding: 0.5rem 0; font-size: 1rem; }
            .hero h1 { font-size: 2rem; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.4rem; }
            .article-card { padding: 1.25rem; }
            .top-list { grid-template-columns: 1fr; }
        }
        .top-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .game-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e5e0d5;
            transition: all 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .game-card .card-content { padding: 1.25rem; }
        .game-card h4 { margin-top: 0; color: #740001; }
        .game-card .rating-badge {
            background: #ffd700;
            color: #1a1a2e;
            font-weight: 700;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 0.5rem;
        }
        details {
            background: #fcf9f4;
            border: 1px solid #e8e0d5;
            border-radius: 8px;
            padding: 0.9rem 1.2rem;
            margin: 0.6rem 0;
        }
        summary {
            font-weight: 600;
            cursor: pointer;
            color: #1a1a2e;
            font-size: 1.05rem;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        summary::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #740001; }
        details[open] summary::after { content: "\f077"; }
        details p { margin: 0.75rem 0 0; }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #740001;
            color: #fff;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 99;
        }
        .scroll-top.show { opacity: 1; visibility: visible; }
        .scroll-top:hover { background: #5a0000; color: #ffd700; transform: translateY(-3px); }
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #740001);
            z-index: 1000;
            transition: width 0.1s ease-out;
        }
