        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f0e8;
            color: #2d1b0e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul,
        ol {
            list-style: none;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        :root {
            --primary: #1a0a2e;
            --gold: #b8860b;
            --gold-light: #d4a843;
            --red: #8b0000;
            --red-light: #b22222;
            --parchment: #f5f0e8;
            --parchment-dark: #e8dcc8;
            --brown: #2d1b0e;
            --brown-light: #5a3d2b;
            --white: #ffffff;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            --radius: 12px;
            --transition: 0.3s ease;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: var(--primary);
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid var(--gold);
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.8rem;
            color: var(--brown-light);
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem;
            color: var(--red);
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 3rem 0;
        }
        .text-gold {
            color: var(--gold);
        }
        .text-red {
            color: var(--red);
        }
        .fw-bold {
            font-weight: 700;
        }
        .emoji {
            font-style: normal;
        }
        .site-header {
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1b5e 100%);
            color: var(--white);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--gold-light);
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #ccc;
            font-weight: 300;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(184, 134, 11, 0.15);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.6rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #eee;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
            position: relative;
        }
        .nav-menu a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: var(--parchment-dark);
            padding: 0.7rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4c8b4;
        }
        .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb a {
            color: var(--brown-light);
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .separator {
            color: #999;
            font-size: 0.8rem;
        }
        .breadcrumb .current {
            color: var(--red);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1b5e 50%, #1a0a2e 100%);
            color: var(--white);
            padding: 4rem 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "✨";
            position: absolute;
            font-size: 12rem;
            opacity: 0.06;
            top: -2rem;
            right: 2rem;
            transform: rotate(15deg);
        }
        .hero h1 {
            color: var(--gold);
            font-size: 3rem;
            text-shadow: 0 2px 20px rgba(184, 134, 11, 0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 1rem auto 0;
            color: #ddd;
        }
        .hero .badge {
            display: inline-block;
            background: var(--gold);
            color: var(--primary);
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 1.2rem;
            letter-spacing: 1px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 3rem 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .content-main {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .content-main .featured-image {
            border-radius: var(--radius);
            margin: 1.5rem 0 2rem;
            box-shadow: var(--shadow);
            border: 2px solid var(--parchment-dark);
        }
        .content-main .featured-image img {
            border-radius: calc(var(--radius) - 2px);
        }
        .content-main .featured-image figcaption {
            font-size: 0.85rem;
            color: #888;
            padding: 0.6rem 1rem;
            background: var(--parchment);
            border-radius: 0 0 var(--radius) var(--radius);
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 1.6rem;
            box-shadow: var(--shadow);
            border: 1px solid #e8dcc8;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin: 0 0 1rem;
            color: var(--primary);
            border-bottom: 2px solid var(--gold);
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0eadc;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: var(--brown-light);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .sidebar-card ul li a:hover {
            color: var(--gold);
            transform: translateX(4px);
        }
        .sidebar-card ul li a i {
            color: var(--gold);
            font-size: 0.75rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c8b4;
            border-radius: 8px;
            font-size: 0.95rem;
            background: var(--parchment);
            transition: var(--transition);
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--gold);
            background: var(--white);
        }
        .search-form button {
            background: var(--gold);
            color: var(--primary);
            border: none;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--gold-light);
            transform: scale(1.03);
        }
        .rating-area,
        .comment-area {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            margin: 2rem 0;
            border: 1px solid #e8dcc8;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            font-size: 1.8rem;
            margin: 0.8rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .rating-form button,
        .comment-form button {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0.6rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: var(--brown-light);
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d4c8b4;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            background: var(--parchment);
            transition: var(--transition);
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: var(--gold);
            background: var(--white);
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c8b4;
            border-radius: 8px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            background: var(--parchment);
            transition: var(--transition);
            outline: none;
        }
        .comment-form input:focus {
            border-color: var(--gold);
            background: var(--white);
        }
        .site-footer {
            background: linear-gradient(135deg, #1a0a2e, #2d1b5e);
            color: #ccc;
            padding: 3rem 20px 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
        }
        .footer-inner h4 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            border-bottom: 2px solid rgba(184, 134, 11, 0.3);
            padding-bottom: 0.4rem;
        }
        .footer-inner a {
            color: #bbb;
            transition: var(--transition);
            display: inline-block;
            margin-bottom: 0.4rem;
        }
        .footer-inner a:hover {
            color: var(--gold);
            transform: translateX(3px);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            font-size: 0.85rem;
            color: #999;
        }
        .footer-bottom .copyright {
            color: #aaa;
        }
        .footer-bottom .copyright strong {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding: 1rem 1.2rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            border: 1px solid rgba(184, 134, 11, 0.15);
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: rgba(184, 134, 11, 0.1);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #ddd !important;
            transition: var(--transition);
        }
        friend-link a:hover {
            background: rgba(184, 134, 11, 0.25);
            color: var(--gold) !important;
            transform: none !important;
        }
        .game-card {
            background: var(--parchment);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            border-left: 5px solid var(--gold);
            transition: var(--transition);
        }
        .game-card:hover {
            transform: translateX(6px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .game-card h4 {
            color: var(--primary);
            margin-top: 0;
        }
        .game-card .meta {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-bottom: 0.6rem;
        }
        .game-card .meta span i {
            color: var(--gold);
            margin-right: 4px;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .header-inner {
                padding: 0.6rem 16px;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.8rem;
                gap: 0.6rem;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.5rem 0.4rem;
                font-size: 0.95rem;
            }
            .content-main {
                padding: 1.5rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.5rem 16px;
            }
            .container {
                padding: 0 16px;
            }
            .content-wrapper {
                padding: 1.5rem 16px;
            }
            .section-padding {
                padding: 1.5rem 0;
            }
            .rating-area,
            .comment-area {
                padding: 1.5rem;
            }
            .game-card {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 2.5rem 16px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .content-main {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--parchment);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold-light);
        }
        @media print {
            .site-header,
            .breadcrumb,
            .sidebar,
            .search-form,
            .rating-area,
            .comment-area,
            .site-footer {
                display: none !important;
            }
            .content-wrapper {
                display: block;
                padding: 0;
            }
            .content-main {
                box-shadow: none;
                padding: 0;
            }
        }
