        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #f8f7f4;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        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;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            color: #f0e6d3;
            padding: 18px 0 14px;
            border-bottom: 4px solid #b8860b;
            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: 12px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: #f0e6d3;
            text-transform: uppercase;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f0e6d3;
        }
        .my-logo .logo-icon {
            font-size: 2.6rem;
            line-height: 1;
        }
        .my-logo .logo-sub {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 4px;
            color: #b8860b;
            display: block;
            font-family: 'Segoe UI', sans-serif;
            margin-top: -6px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-nav {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav a {
            color: #e0d5c5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: rgba(184, 134, 11, 0.2);
            color: #ffd700;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f0e6d3;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            background: #eeece7;
            padding: 10px 0 8px;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd8cf;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #9a8a7a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a6a5a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #3a2a1a;
            font-weight: 600;
        }
        .hero-banner {
            position: relative;
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            background: #1a1a2e;
            min-height: 280px;
            display: flex;
            align-items: center;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.55;
            position: absolute;
            top: 0;
            left: 0;
        }
        .hero-overlay {
            position: relative;
            z-index: 2;
            padding: 40px 36px;
            color: #fff;
            max-width: 720px;
        }
        .hero-overlay h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .hero-overlay h1 span {
            color: #ffd700;
        }
        .hero-overlay p {
            font-size: 1.15rem;
            opacity: 0.92;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            max-width: 600px;
        }
        .hero-meta {
            display: flex;
            gap: 20px;
            margin-top: 18px;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-section {
            background: #fff;
            padding: 20px 24px;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }
        .search-section label {
            font-weight: 600;
            color: #2a2a2a;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 1.05rem;
        }
        .search-form {
            flex: 1;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            min-width: 200px;
        }
        .search-form input {
            flex: 1;
            min-width: 140px;
            padding: 12px 18px;
            border: 2px solid #ddd8cf;
            border-radius: 10px;
            font-size: 1rem;
            background: #fafaf8;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15);
        }
        .search-form button {
            padding: 12px 28px;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9a7209;
            transform: translateY(-1px);
        }
        .search-form button:active {
            transform: translateY(1px);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 28px 0 40px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: relative;
        }
        .sidebar-inner {
            background: #fff;
            border-radius: 14px;
            padding: 24px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 110px;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 20px 0;
            color: #1a1a2e;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 36px 0 14px 0;
            color: #1a1a2e;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 28px 0 12px 0;
            color: #2a2a3e;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 8px 0;
            color: #3a3a4e;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2e2e2e;
        }
        .content-section {
            background: #fff;
            padding: 28px 30px;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            margin-bottom: 28px;
        }
        .content-section img {
            margin: 20px 0;
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .highlight-box {
            background: #faf6ee;
            border-left: 5px solid #b8860b;
            padding: 16px 22px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #b8860b;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .stat-badge {
            display: inline-block;
            background: #1a1a2e;
            color: #ffd700;
            padding: 2px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-links li {
            margin-bottom: 6px;
        }
        .sidebar-links a {
            display: block;
            padding: 8px 12px;
            background: #f8f7f4;
            border-radius: 8px;
            font-size: 0.92rem;
            transition: background 0.2s, color 0.2s;
            border-left: 3px solid transparent;
        }
        .sidebar-links a:hover {
            background: #eeece7;
            border-left-color: #b8860b;
            text-decoration: none;
            color: #1a1a2e;
        }
        .sidebar-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0 20px;
        }
        .comment-box,
        .rating-box {
            background: #fff;
            padding: 24px 26px;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            border-bottom: 2px solid #eeece7;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd8cf;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fafaf8;
            transition: border-color 0.2s;
            margin-bottom: 12px;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-box button {
            padding: 12px 30px;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form button:hover,
        .rating-box button:hover {
            background: #9a7209;
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 6px;
            justify-content: flex-end;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd8cf;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd700;
        }
        .star-rating label:hover {
            transform: scale(1.15);
        }
        .rating-box .score-value {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: #2a2a2a;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c8bfb0;
            padding: 36px 0 24px;
            margin-top: 48px;
            border-top: 4px solid #b8860b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-inner h4 {
            color: #f0e6d3;
            margin-bottom: 12px;
            font-size: 1.1rem;
            border-bottom: 1px solid #3a3a4e;
            padding-bottom: 6px;
        }
        .footer-inner a {
            color: #c8bfb0;
        }
        .footer-inner a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            margin: 8px 0;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #3a3a4e;
            font-size: 0.85rem;
            color: #9a8a7a;
            grid-column: 1 / -1;
        }
        .copyright strong {
            color: #c8bfb0;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .sidebar-inner {
                position: static;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero-overlay h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 16px 0 12px;
                border-top: 2px solid #b8860b;
                margin-top: 10px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                font-size: 1rem;
                border-radius: 0;
            }
            .header-inner {
                align-items: center;
            }
            .nav-wrapper {
                width: 100%;
            }
            .my-logo {
                font-size: 1.7rem;
            }
            .hero-overlay {
                padding: 24px 20px;
            }
            .hero-overlay h1 {
                font-size: 1.6rem;
            }
            .content-section {
                padding: 18px 16px;
            }
            .search-section {
                padding: 16px 18px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .breadcrumb li+li::before {
                margin-right: 5px;
            }
        }
        @media (max-width: 480px) {
            .hero-overlay h1 {
                font-size: 1.3rem;
            }
            .hero-overlay p {
                font-size: 0.95rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 6px;
                font-size: 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .comment-box,
            .rating-box {
                padding: 16px 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .container {
                padding: 0 12px;
            }
        }
        .last-updated {
            display: inline-block;
            background: #f0ede8;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.82rem;
            color: #5a4a3a;
            margin-bottom: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 10px 14px;
            border: 1px solid #ddd8cf;
            text-align: left;
        }
        th {
            background: #1a1a2e;
            color: #ffd700;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f7f4;
        }
        .btn-small {
            padding: 6px 16px;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-small:hover {
            background: #9a7209;
        }
        .tag {
            display: inline-block;
            background: #e8e3da;
            padding: 2px 12px;
            border-radius: 16px;
            font-size: 0.75rem;
            color: #4a3a2a;
            font-weight: 600;
        }
