        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #fdf8f0;
            color: #2d1b0e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: underline;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e67e22;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 40%, #e67e22 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 255, 255, 0.12);
            padding: 0.2rem 1rem 0.2rem 0.8rem;
            border-radius: 40px;
            backdrop-filter: blur(4px);
            transition: background 0.3s;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.25);
            color: #fff;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #fdd835;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.2);
            color: #fdd835;
        }
        .main-nav a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #f0e4d8;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            color: #5a3e2b;
            border-bottom: 1px solid #e0d0c0;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #8b1a1a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #a07050;
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: #2d1b0e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d1b0e 0%, #5a3e2b 60%, #8b1a1a 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎲";
            font-size: 12rem;
            position: absolute;
            right: -3rem;
            bottom: -3rem;
            opacity: 0.08;
            transform: rotate(-15deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 0.6rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero h1 i {
            color: #fdd835;
            margin-right: 0.4rem;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0.5rem auto 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(6px);
            padding: 0.4rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero-badge i {
            color: #fdd835;
            margin-right: 0.4rem;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #e0d0c0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fdf8f0;
        }
        .search-form input:focus {
            border-color: #c0392b;
        }
        .search-form button {
            padding: 0.7rem 2rem;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #8b1a1a;
            transform: scale(1.02);
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h2 {
            font-size: 1.9rem;
            color: #8b1a1a;
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #e67e22;
            display: inline-block;
        }
        .article-body h2 i {
            color: #e67e22;
            margin-right: 0.5rem;
        }
        .article-body h3 {
            font-size: 1.4rem;
            color: #5a3e2b;
            margin: 1.8rem 0 0.8rem;
            font-weight: 700;
        }
        .article-body h3 i {
            color: #c0392b;
            margin-right: 0.5rem;
            font-size: 1.1rem;
        }
        .article-body h4 {
            font-size: 1.15rem;
            color: #2d1b0e;
            margin: 1.2rem 0 0.5rem;
            font-weight: 700;
        }
        .article-body p {
            margin-bottom: 1.1rem;
            font-size: 1.02rem;
            color: #2d1b0e;
        }
        .article-body strong {
            color: #8b1a1a;
        }
        .article-body .highlight {
            background: #fef3e7;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .article-body ul,
        .article-body ol {
            margin-bottom: 1.2rem;
        }
        .article-body li {
            margin-bottom: 0.4rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #f0e4d8;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5a3e2b;
            background: #fdf8f0;
            font-style: italic;
            border-top: 2px solid #e0d0c0;
        }
        .sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0e4d8;
            align-self: start;
            position: sticky;
            top: 5.5rem;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #8b1a1a;
            margin-bottom: 1rem;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 0.4rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar li {
            margin-bottom: 0.5rem;
        }
        .sidebar a {
            display: block;
            padding: 0.4rem 0.6rem;
            background: #fdf8f0;
            border-radius: 8px;
            text-decoration: none;
            color: #2d1b0e;
            font-size: 0.92rem;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            border-left: 3px solid transparent;
        }
        .sidebar a:hover {
            background: #fef3e7;
            color: #c0392b;
            border-left-color: #e67e22;
            transform: translateX(4px);
        }
        .sidebar a i {
            color: #e67e22;
            width: 1.2rem;
            margin-right: 0.3rem;
        }
        .interaction-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.8rem;
            margin-top: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0e4d8;
        }
        .interaction-section h3 {
            font-size: 1.4rem;
            color: #8b1a1a;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interaction-section h3 i {
            color: #e67e22;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 650px;
        }
        .comment-form input,
        .comment-form textarea,
        .score-form select,
        .score-form button {
            padding: 0.7rem 1rem;
            border: 2px solid #e0d0c0;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fdf8f0;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form select:focus {
            border-color: #c0392b;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            align-self: flex-start;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #8b1a1a;
            transform: scale(1.02);
        }
        .score-form {
            flex-direction: row;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .score-form select {
            min-width: 120px;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #fdd835;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: #7a6a5a;
            background: #f0e4d8;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin: 1.5rem 0;
            width: fit-content;
        }
        .last-updated i {
            color: #c0392b;
        }
        friend-link {
            display: block;
            background: #2d1b0e;
            color: #f0e4d8;
            padding: 2rem 0;
            margin-top: 2rem;
            text-align: center;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem 2.5rem;
        }
        friend-link a {
            color: #fdd835;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        friend-link .label {
            font-size: 0.85rem;
            color: #b09880;
            letter-spacing: 2px;
            text-transform: uppercase;
            width: 100%;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .site-footer {
            background: #1a0f08;
            color: #b09880;
            padding: 1.8rem 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 3px solid #c0392b;
        }
        .site-footer .container {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }
        .site-footer a {
            color: #fdd835;
            text-decoration: none;
        }
        .site-footer a:hover {
            text-decoration: underline;
        }
        .site-footer .copyright {
            font-size: 0.82rem;
            color: #7a6a5a;
        }
        .site-footer .copyright i {
            color: #c0392b;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.3rem;
                padding-top: 0.8rem;
                border-top: 1px solid rgba(255, 255, 255, 0.15);
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
                padding: 0.1rem 0.8rem 0.1rem 0.6rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 12px;
            }
            .score-form {
                flex-direction: column;
                align-items: stretch;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: #c0392b;
            color: #fff;
            padding: 0.5rem 1rem;
            z-index: 9999;
            text-decoration: none;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #c0392b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
            transition: background 0.3s, transform 0.2s;
            z-index: 900;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #8b1a1a;
            transform: scale(1.08);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
