        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a1a1a;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e8d5a3;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            color: #f5e6c8;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.6rem;
            font-weight: 800;
            color: #f5d742;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(245, 215, 66, 0.25);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5d742;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #f5d742;
        }
        .my-logo span {
            font-size: 0.75rem;
            display: block;
            color: #c9b896;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5d742;
            color: #f5d742;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .nav-toggle:hover {
            background: rgba(245, 215, 66, 0.15);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8d5a3;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #f5d742;
            color: #1a1a2e;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.35rem;
        }
        .breadcrumb-wrap {
            background: #f0ebe0;
            padding: 0.6rem 0;
            border-bottom: 1px solid #ddd6c4;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb-wrap nav a {
            color: #6b5b3e;
        }
        .breadcrumb-wrap nav span {
            color: #b8860b;
            font-weight: 600;
        }
        .breadcrumb-wrap .sep {
            color: #aaa;
            margin: 0 0.2rem;
        }
        .hero {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #f5e6c8;
            padding: 2.5rem 0 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♠ ♥ ♦ ♣";
            position: absolute;
            bottom: -10px;
            right: -10px;
            font-size: 6rem;
            opacity: 0.04;
            color: #f5d742;
            pointer-events: none;
            letter-spacing: 20px;
        }
        .hero h1 {
            color: #f5d742;
            font-size: 2.8rem;
            text-shadow: 0 4px 20px rgba(245, 215, 66, 0.15);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0.8rem auto 1.2rem;
            opacity: 0.92;
        }
        .hero .badge {
            display: inline-block;
            background: #f5d742;
            color: #1a1a2e;
            padding: 0.25rem 1.2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .content-body {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .content-body .update-info {
            font-size: 0.85rem;
            color: #888;
            border-bottom: 1px solid #eee;
            padding-bottom: 0.6rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .content-body .update-info i {
            margin-right: 0.3rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.4rem 1.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0e8d8;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            color: #1a1a2e;
            border-left: 3px solid #f5d742;
            padding-left: 0.7rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-card ul li {
            padding: 0.35rem 0;
            border-bottom: 1px dotted #eee;
        }
        .sidebar-card ul li a {
            font-size: 0.9rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 140px;
            padding: 0.65rem 1rem;
            border: 2px solid #ddd6c4;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s ease;
            background: #faf8f4;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.65rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #9a7209;
        }
        .comment-section,
        .score-section {
            background: #faf8f4;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            margin-top: 2rem;
            border: 1px solid #e8dcc8;
        }
        .comment-section h3,
        .score-section h3 {
            margin-top: 0;
        }
        .comment-form textarea,
        .score-form select,
        .score-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6c4;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s ease;
            background: #fff;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .score-form select:focus,
        .score-form input[type="text"]:focus {
            border-color: #b8860b;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            background: #1a1a2e;
            color: #f5d742;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #2a2a4e;
        }
        .score-form .star-display {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #f5c542;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        .score-form .star-display i {
            transition: transform 0.1s ease;
        }
        .score-form .star-display i:hover {
            transform: scale(1.2);
        }
        .content-img {
            border-radius: 14px;
            margin: 1.8rem 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            width: 100%;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #777;
            text-align: center;
            margin-top: 0.3rem;
            font-style: italic;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c9b896;
            padding: 2rem 0 1.2rem;
            margin-top: auto;
            border-top: 3px solid #f5d742;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .site-footer friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(245, 215, 66, 0.15);
        }
        .site-footer friend-link a {
            color: #e8d5a3;
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .site-footer friend-link a:hover {
            color: #f5d742;
        }
        .footer-copy {
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            color: #8a7e66;
        }
        .footer-copy strong {
            color: #f5d742;
        }
        @media (max-width: 860px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .content-body {
                padding: 1.5rem 1.2rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(22, 33, 62, 0.95);
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                white-space: normal;
            }
            .header-inner {
                align-items: center;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.6rem;
            }
            .content-body {
                padding: 1rem 0.8rem;
            }
            .comment-section,
            .score-section {
                padding: 1rem 0.8rem;
            }
        }
        .highlight-box {
            background: #fcf8ee;
            border-left: 4px solid #f5d742;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #b8860b;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding-left: 0;
        }
        .link-list-inline li a {
            background: #f5f0e6;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.88rem;
            border: 1px solid #e8dcc8;
            transition: all 0.2s ease;
        }
        .link-list-inline li a:hover {
            background: #f5d742;
            border-color: #f5d742;
            color: #1a1a2e;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        table th,
        table td {
            padding: 0.7rem 0.8rem;
            border: 1px solid #e0d6c4;
            text-align: left;
        }
        table th {
            background: #1a1a2e;
            color: #f5d742;
            font-weight: 600;
        }
        table tr:nth-child(even) {
            background: #faf8f4;
        }
        .btn-top {
            display: inline-block;
            background: #1a1a2e;
            color: #f5d742;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            transition: background 0.2s ease;
        }
        .btn-top:hover {
            background: #2a2a4e;
            color: #f5d742;
            text-decoration: none;
        }
        .star-rating-static {
            color: #f5c542;
            letter-spacing: 2px;
        }
