*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-dark: #0f0e0c;
            --bg-card: #1a1815;
            --bg-section: #1f1c18;
            --gold: #d4a843;
            --gold-light: #f0d48a;
            --gold-dark: #a67c2e;
            --text-primary: #f0ede8;
            --text-secondary: #c5bfb5;
            --text-muted: #8a847a;
            --accent-red: #c0392b;
            --accent-green: #27ae60;
            --accent-blue: #2d7fc1;
            --border-color: #2a2722;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
            --radius: 10px;
            --radius-sm: 6px;
            --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(180deg, #1a1815 0%, #0f0e0c 100%);
            border-bottom: 2px solid var(--gold-dark);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--gold);
            text-transform: uppercase;
            text-shadow: 0 0 12px rgba(212, 168, 67, 0.25);
            transition: text-shadow var(--transition);
        }
        .my-logo:hover {
            text-shadow: 0 0 24px rgba(212, 168, 67, 0.45);
            text-decoration: none;
        }
        .my-logo span {
            color: var(--text-primary);
            font-weight: 300;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(212, 168, 67, 0.12);
        }
        #nav-toggle {
            display: none;
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width var(--transition);
        }
        .nav-menu a:hover::after,
        .nav-menu a:focus::after {
            width: 60%;
        }
        .nav-menu a:hover {
            color: var(--gold-light);
            background: rgba(212, 168, 67, 0.06);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .sep {
            color: var(--text-muted);
            opacity: 0.5;
        }
        .breadcrumb .current {
            color: var(--gold);
            font-weight: 500;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            font-weight: 800;
            color: var(--gold);
            text-shadow: 0 2px 20px rgba(212, 168, 67, 0.2);
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero .subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 24px;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: var(--text-muted);
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
            color: var(--gold);
        }
        section {
            padding: 40px 0;
        }
        .section-title {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 700;
            color: var(--gold);
            border-left: 5px solid var(--gold);
            padding-left: 18px;
            margin-bottom: 28px;
        }
        .section-subtitle {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--gold-light);
            margin-top: 32px;
            margin-bottom: 14px;
        }
        .section-subtitle-h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: var(--text-secondary);
        }
        .content-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .content-card strong {
            color: var(--text-primary);
        }
        .highlight-box {
            background: rgba(212, 168, 67, 0.08);
            border-left: 4px solid var(--gold);
            padding: 18px 22px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 20px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--bg-card);
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
            border-top: 1px solid var(--border-color);
        }
        ul,
        ol {
            margin: 0 0 18px 24px;
            color: var(--text-secondary);
        }
        li {
            margin-bottom: 8px;
        }
        .checklist {
            list-style: none;
            margin-left: 0;
        }
        .checklist li::before {
            content: '✓ ';
            color: var(--accent-green);
            font-weight: 700;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 600px;
            margin: 20px auto 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            background: var(--bg-dark);
            color: var(--text-primary);
            font-size: 1rem;
            transition: border var(--transition);
        }
        .search-form input:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
        }
        .search-form button {
            padding: 14px 28px;
            background: var(--gold);
            border: none;
            border-radius: var(--radius-sm);
            color: #0f0e0c;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 700px;
            margin: 20px 0;
        }
        .comment-form input,
        .comment-form textarea,
        .score-form input,
        .score-form select {
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            background: var(--bg-dark);
            color: var(--text-primary);
            font-size: 1rem;
            font-family: inherit;
            transition: border var(--transition);
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form input:focus,
        .score-form select:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            align-self: flex-start;
            padding: 12px 32px;
            background: var(--gold);
            border: none;
            border-radius: var(--radius-sm);
            color: #0f0e0c;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }
        .score-summary {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 10px 0 20px;
            padding: 16px 20px;
            background: rgba(212, 168, 67, 0.06);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
        }
        .score-summary .avg {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--gold);
        }
        .score-summary .stars {
            color: var(--gold);
            font-size: 1.3rem;
            letter-spacing: 2px;
        }
        .score-summary .count {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .links-grid a {
            display: block;
            padding: 10px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            transition: all var(--transition);
            font-size: 0.95rem;
        }
        .links-grid a:hover {
            border-color: var(--gold-dark);
            background: rgba(212, 168, 67, 0.05);
            color: var(--gold-light);
            text-decoration: none;
            transform: translateX(4px);
        }
        .links-grid a i {
            margin-right: 8px;
            color: var(--gold);
            width: 18px;
            text-align: center;
        }
        footer {
            border-top: 2px solid var(--border-color);
            padding: 40px 0 30px;
            margin-top: 30px;
            background: linear-gradient(0deg, #0a0908, #0f0e0c);
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        footer a {
            color: var(--text-muted);
            display: block;
            padding: 4px 0;
            font-size: 0.92rem;
        }
        footer a:hover {
            color: var(--gold-light);
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(212, 168, 67, 0.06);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        friend-link a:hover {
            border-color: var(--gold-dark);
            color: var(--gold-light);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            color: var(--text-muted);
            font-size: 0.85rem;
            border-top: 1px solid var(--border-color);
        }
        .copyright strong {
            color: var(--gold);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-card);
                border: 1px solid var(--border-color);
                border-radius: var(--radius);
                padding: 12px;
                margin-top: 10px;
                gap: 4px;
            }
            #nav-toggle:checked~.nav-menu {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .content-card {
                padding: 18px 16px;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .score-summary {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            section {
                padding: 28px 0;
            }
            .section-title {
                font-size: 1.4rem;
                padding-left: 12px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
            }
            .hero .meta {
                flex-direction: column;
                gap: 6px;
                align-items: center;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .comment-form button,
            .score-form button {
                width: 100%;
                justify-content: center;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
