        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0e0d12;
            color: #e8e6e3;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f0c060;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd98c;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            color: #f5e7c8;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #3a3226;
            padding-bottom: 0.3em;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --bg-dark: #0e0d12;
            --bg-card: #18161c;
            --bg-card-hover: #211e28;
            --gold: #f0c060;
            --gold-dim: #c9a24e;
            --gold-bright: #ffd98c;
            --accent-ember: #b87333;
            --text-primary: #e8e6e3;
            --text-secondary: #b5aea3;
            --border-light: #3a3226;
            --shadow-glow: 0 0 20px rgba(240, 192, 96, 0.06);
        }
        .site-header {
            background: #121016;
            border-bottom: 1px solid #2a2420;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            color: var(--gold);
            text-transform: uppercase;
            text-shadow: 0 0 12px rgba(240, 192, 96, 0.2);
            transition: text-shadow 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            text-shadow: 0 0 24px rgba(240, 192, 96, 0.4);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: var(--text-secondary);
            font-size: 0.7em;
            letter-spacing: 0.2em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2420;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.2s;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--gold-bright);
            background: #211e28;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: var(--gold);
            border-bottom: 2px solid var(--gold);
            border-radius: 0;
            background: transparent;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--gold-dim);
        }
        .breadcrumb a:hover {
            color: var(--gold-bright);
        }
        .breadcrumb span.sep {
            margin: 0 0.3rem;
            color: #555;
        }
        .hero-section {
            padding: 2.8rem 0 2rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1f1a24 0%, #0e0d12 70%);
        }
        .hero-section h1 {
            font-size: 2.8rem;
            margin-bottom: 0.4rem;
            letter-spacing: -0.01em;
        }
        .hero-section .subhead {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 1.8rem;
        }
        .hero-section .last-updated {
            font-size: 0.85rem;
            color: #7a7166;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .hero-section .last-updated i {
            color: var(--gold-dim);
        }
        .search-wrap {
            max-width: 540px;
            margin: 1.2rem auto 0;
            display: flex;
            gap: 0.4rem;
        }
        .search-wrap input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 1px solid #3a3226;
            border-radius: 40px;
            background: #18161c;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-wrap input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 12px rgba(240, 192, 96, 0.15);
        }
        .search-wrap input::placeholder {
            color: #7a7166;
        }
        .search-wrap button {
            padding: 0.75rem 1.6rem;
            border: none;
            border-radius: 40px;
            background: var(--gold);
            color: #0e0d12;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-wrap button:hover {
            background: var(--gold-bright);
            transform: scale(1.02);
        }
        .search-wrap button:active {
            transform: scale(0.97);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.4rem;
            padding: 2rem 0 3rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .card {
            background: var(--bg-card);
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid #252128;
            transition: box-shadow 0.3s, background 0.2s;
            box-shadow: var(--shadow-glow);
        }
        .card:hover {
            background: var(--bg-card-hover);
            box-shadow: 0 0 28px rgba(240, 192, 96, 0.08);
        }
        .card h2:first-child {
            margin-top: 0;
        }
        .card h3:first-child,
        .card h4:first-child {
            margin-top: 0;
        }
        .featured-img {
            border-radius: 12px;
            margin: 1.4rem 0 1.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
            width: 100%;
            object-fit: cover;
            aspect-ratio: 16/9;
            background: #1f1a24;
        }
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1rem 0 1.4rem;
            padding: 0.8rem 1rem;
            background: #121016;
            border-radius: 10px;
            border-left: 3px solid var(--gold-dim);
        }
        .link-group a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gold-dim);
        }
        .link-group a:hover {
            color: var(--gold-bright);
        }
        .widget {
            background: var(--bg-card);
            border-radius: 14px;
            padding: 1.6rem 1.6rem;
            margin-bottom: 1.8rem;
            border: 1px solid #252128;
        }
        .widget h3 {
            font-size: 1.15rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 1px solid #2a2420;
            padding-bottom: 0.5rem;
            color: var(--gold);
        }
        .widget ul {
            list-style: none;
            padding: 0;
        }
        .widget ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1e1b22;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            font-size: 0.9rem;
            color: var(--text-secondary);
            display: block;
            transition: color 0.2s, padding-left 0.2s;
        }
        .widget ul li a:hover {
            color: var(--gold-bright);
            padding-left: 4px;
            text-decoration: none;
        }
        .rating-wrap {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 1.2rem 0 0.6rem;
            padding: 1rem 0;
            border-top: 1px solid #2a2420;
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #4a4238;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:not(:checked)~label:hover,
        .rating-stars input:not(:checked)~label:hover~label {
            color: var(--gold);
        }
        .rating-stars input:checked~label {
            color: var(--gold);
        }
        .rating-stars label i {
            pointer-events: none;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
            width: 100%;
        }
        .rating-form button {
            padding: 0.5rem 1.4rem;
            border: none;
            border-radius: 30px;
            background: var(--gold);
            color: #0e0d12;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: var(--gold-bright);
        }
        .rating-note {
            font-size: 0.8rem;
            color: #7a7166;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin: 1.2rem 0 0.4rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border: 1px solid #3a3226;
            border-radius: 8px;
            background: #121016;
            color: #e8e6e3;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: var(--gold);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 30px;
            background: var(--gold);
            color: #0e0d12;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: var(--gold-bright);
        }
        .site-footer {
            background: #0a0910;
            border-top: 1px solid #2a2420;
            padding: 2.4rem 0 1.6rem;
            margin-top: 1rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-grid h4 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1rem;
            letter-spacing: 0.04em;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            padding: 0.25rem 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .footer-grid ul li a:hover {
            color: var(--gold-bright);
        }
        .footer-copy {
            margin-top: 2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #1e1b22;
            text-align: center;
            font-size: 0.85rem;
            color: #6a6258;
        }
        .footer-copy a {
            color: var(--gold-dim);
        }
        .footer-copy a:hover {
            color: var(--gold-bright);
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }
        friend-link a {
            color: var(--gold-dim);
            margin: 0 0.4rem;
        }
        friend-link a:hover {
            color: var(--gold-bright);
        }
        @media (max-width: 960px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #121016;
                padding: 0.8rem 0 1.2rem;
                border-top: 1px solid #2a2420;
                margin-top: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 0;
            }
            .hero-section h1 {
                font-size: 1.8rem;
            }
            .hero-section .subhead {
                font-size: 0.95rem;
            }
            .card {
                padding: 1.2rem 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .search-wrap {
                flex-direction: column;
            }
            .search-wrap button {
                justify-content: center;
            }
            .rating-wrap {
                flex-direction: column;
                align-items: flex-start;
            }
            .link-group {
                flex-direction: column;
                gap: 0.3rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero-section h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .card {
                padding: 1rem 0.9rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-muted {
            color: var(--text-secondary);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        small {
            font-size: 0.85rem;
            color: #7a7166;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2420;
            margin: 1.6rem 0;
        }
        .emoji-big {
            font-size: 1.4em;
            line-height: 1;
        }
        .pill {
            display: inline-block;
            background: #2a2420;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: var(--text-secondary);
            letter-spacing: 0.03em;
        }
