        *,
        *::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, sans-serif;
            background: #0f0f1a;
            color: #e8e6e3;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f0e8;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f0c040;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f0c040;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d8a0;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #d4caba;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong,
        b {
            color: #f5e6c8;
            font-weight: 700;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            border-bottom: 2px solid #f0c04040;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f0c040, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c040;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #d4d0c8;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #f0c04022;
            color: #f0c040;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0c040;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ffffff10;
        }
        .breadcrumb {
            background: #1a1a2ecc;
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a3e;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #b0a890;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 500;
        }
        .hero-section {
            margin: 2rem 0 1.5rem;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background: #1e1e32;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .hero-section img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            border-radius: 16px;
        }
        .hero-caption {
            padding: 1.2rem 1.5rem;
            background: #1a1a2ee0;
            font-size: 0.95rem;
            color: #ccc;
            border-top: 1px solid #f0c04030;
        }
        .hero-caption strong {
            color: #f0c040;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: #16162a;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            border: 1px solid #2a2a44;
            max-height: 80vh;
            overflow-y: auto;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #f0c04030;
            padding-bottom: 0.6rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.3rem;
        }
        .sidebar a {
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            font-size: 0.9rem;
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }
        .sidebar a:hover {
            background: #f0c04010;
            border-left-color: #f0c040;
            text-decoration: none;
        }
        .search-box {
            display: flex;
            margin: 1.2rem 0 1.8rem;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #3a3a5a;
            background: #1a1a30;
            transition: border-color 0.3s;
        }
        .search-box:focus-within {
            border-color: #f0c040;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            background: transparent;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #888;
        }
        .search-box button {
            background: #f0c040;
            border: none;
            padding: 0 1.5rem;
            color: #1a1a2e;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #ffd866;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
            padding: 1.8rem;
            background: #16162a;
            border-radius: 16px;
            border: 1px solid #2a2a44;
        }
        .comment-section,
        .rating-section {
            background: #1e1e36;
            padding: 1.5rem;
            border-radius: 12px;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .comment-section textarea,
        .comment-section input,
        .rating-section input,
        .rating-section select {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3a5a;
            background: #0f0f1a;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            width: 100%;
        }
        .comment-section textarea:focus,
        .comment-section input:focus,
        .rating-section input:focus,
        .rating-section select:focus {
            border-color: #f0c040;
        }
        .comment-section textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn-submit {
            background: #f0c040;
            color: #1a1a2e;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #ffd866;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            padding: 0;
        }
        friend-link a {
            color: #b0a890;
            font-size: 0.9rem;
            border-bottom: 1px dotted transparent;
        }
        friend-link a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .site-footer {
            background: #0c0c1a;
            border-top: 2px solid #f0c04020;
            padding: 2rem 0 1.5rem;
            margin-top: auto;
            font-size: 0.9rem;
            color: #999;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .footer-copy {
            font-size: 0.85rem;
        }
        .footer-copy strong {
            color: #f0c040;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                max-height: none;
                margin-top: 2rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 0.8rem 0;
                border-top: 1px solid #2a2a44;
                margin-top: 0.8rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero-section img {
                max-height: 220px;
            }
            .container {
                padding: 0 14px;
            }
            .interaction-area {
                padding: 1rem;
            }
            .comment-section,
            .rating-section {
                padding: 1rem;
            }
            .search-box button span {
                display: none;
            }
            .search-box button {
                padding: 0 1rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.98rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #f0c04018;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #f0c040;
            border: 1px solid #f0c04030;
            margin-bottom: 1.2rem;
        }
        .stat-highlight {
            background: #1e1e36;
            border-left: 4px solid #f0c040;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a30;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a44;
        }
        th {
            background: #f0c04020;
            color: #f0c040;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .tip-box {
            background: #1e2a1e;
            border: 1px solid #4a8a4a50;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.2rem 0;
        }
        .tip-box strong {
            color: #8fca8f;
        }
        .warning-box {
            background: #2a1e1e;
            border: 1px solid #aa4a4a50;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.2rem 0;
        }
        .warning-box strong {
            color: #e88080;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted #f0c04060;
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .fa-ul li {
            margin-bottom: 0.6rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a5a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a5a7a;
        }
