        *,
        *::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: #0f0e17;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease, border-bottom 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            border-bottom: 1px solid #ffd966;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #f5d742;
            text-shadow: 2px 2px 0 #3a2a0a;
            margin: 0 0 1.2rem 0;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #e6c54a;
            border-left: 5px solid #b8860b;
            padding-left: 1rem;
            margin: 2.5rem 0 1.2rem 0;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #d4b06a;
            margin: 2rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c4a055;
            margin: 1.4rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .text-small {
            font-size: 0.9rem;
            color: #aaa;
        }
        .text-muted {
            color: #9c9c9c;
        }
        strong,
        b {
            color: #f5e3b3;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
            padding: 0.6rem 0;
            border-bottom: 3px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5d742;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-bottom: none !important;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #d4a017;
            font-size: 2rem;
        }
        .my-logo:hover {
            color: #ffd966;
            border-bottom: none !important;
        }
        .my-logo span {
            font-weight: 300;
            color: #c9a53c;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem 1.4rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            color: #f5d742;
            border-bottom-color: #f5d742;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f5d742;
            font-size: 1.6rem;
            padding: 0.2rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(184, 134, 11, 0.2);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.85rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #777;
        }
        .breadcrumb a {
            color: #c9a53c;
        }
        .breadcrumb a:hover {
            color: #f5d742;
        }
        .breadcrumb .current {
            color: #aaa;
        }
        .hero-figure {
            margin: 2rem 0 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid #2a2a3a;
            background: #1a1a2a;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .hero-figure img {
            width: 100%;
            height: auto;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-style: italic;
            color: #bdbdbd;
            background: #1a1a2a;
            font-size: 0.9rem;
            border-top: 1px solid #2a2a3a;
        }
        .search-section {
            background: #1c1c2e;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2a40;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
        }
        .search-section form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1 1 260px;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            border: 2px solid #3a3a55;
            background: #0f0f1a;
            color: #eee;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #b8860b;
            outline: none;
        }
        .search-section button {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, #b8860b, #d4a017);
            border: none;
            border-radius: 8px;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media(max-width:700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #1c1c2e;
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #2a2a40;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
        }
        .card h3 {
            margin-top: 0;
            border-left: 4px solid #b8860b;
            padding-left: 0.8rem;
            font-size: 1.3rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.8rem 0 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label::before {
            content: "\f005";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c542;
            transform: scale(1.15);
        }
        .card textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 2px solid #3a3a55;
            background: #0f0f1a;
            color: #eee;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .card textarea:focus {
            border-color: #b8860b;
            outline: none;
        }
        .card .btn-submit {
            margin-top: 0.8rem;
            padding: 0.6rem 1.8rem;
            background: #b8860b;
            border: none;
            border-radius: 8px;
            color: #0f0e17;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            font-size: 0.95rem;
        }
        .card .btn-submit:hover {
            background: #d4a017;
            transform: translateY(-2px);
        }
        .rating-display {
            font-size: 1.1rem;
            margin-top: 0.6rem;
            color: #c9a53c;
        }
        .rating-display i {
            color: #f5c542;
        }
        .site-footer {
            background: #0f0e17;
            border-top: 3px solid #2a2a40;
            padding: 2.5rem 0 1.8rem 0;
            margin-top: 3.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:750px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media(max-width:480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            color: #d4b06a;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            border-left: 3px solid #b8860b;
            padding-left: 0.6rem;
        }
        .footer-col a {
            display: block;
            padding: 0.2rem 0;
            font-size: 0.92rem;
            color: #b0a88a;
        }
        .footer-col a:hover {
            color: #f5d742;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
            font-size: 0.95rem;
            color: #c9a53c;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        }
        .friend-link::before {
            content: "🔗 ";
            font-size: 0.8rem;
        }
        .friend-link:hover {
            color: #f5d742;
            border-bottom-color: #f5d742;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #1e1e30;
            color: #777;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #c9a53c;
        }
        @media(max-width:780px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.2rem;
                padding: 0.8rem 0 0.4rem 0;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.4rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .emoji-lg {
            font-size: 1.6rem;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #0f0e17;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .highlight-box {
            background: rgba(184, 134, 11, 0.08);
            border-left: 4px solid #b8860b;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.6rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a40;
        }
        th {
            background: #1a1a2e;
            color: #f0c040;
            font-weight: 600;
        }
        tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b8860b;
            color: #0f0e17;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.2s, background 0.2s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            background: #d4a017;
        }
