        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --gold: #d4a445;
            --gold-light: #f0d28a;
            --dark-bg: #0d0b0e;
            --dark-card: #1a1619;
            --text-primary: #f0ede6;
            --text-secondary: #b8ae9e;
            --accent-red: #9e2a2a;
            --accent-teal: #3a7a7a;
            --font-serif: 'Georgia', 'Times New Roman', serif;
            --font-sans: 'Segoe UI', 'Roboto', system-ui, sans-serif;
            --radius: 10px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            padding: 0 16px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid var(--gold);
            margin-bottom: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
        }
        .my-logo {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 2px;
            text-shadow: 0 0 12px rgba(212, 164, 69, 0.25);
            line-height: 1.2;
            transition: transform var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            display: block;
            font-size: 0.5rem;
            font-family: var(--font-sans);
            font-weight: 400;
            color: var(--text-secondary);
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 1.8rem;
            padding: 0.2rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(212, 164, 69, 0.12);
        }
        nav {
            display: flex;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: background var(--transition), color var(--transition);
            white-space: nowrap;
        }
        nav a:hover {
            background: rgba(212, 164, 69, 0.12);
            color: var(--gold-light);
            text-decoration: none;
        }
        nav a.active {
            color: var(--gold);
            background: rgba(212, 164, 69, 0.08);
        }
        .breadcrumb {
            font-size: 0.8rem;
            color: var(--text-secondary);
            padding: 0.6rem 0 0.2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.5rem;
            border-bottom: 1px solid rgba(212, 164, 69, 0.15);
            margin-bottom: 1.5rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb span {
            color: var(--gold);
        }
        .search-box {
            display: flex;
            max-width: 500px;
            margin: 1.2rem 0 1.8rem;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(212, 164, 69, 0.3);
            background: var(--dark-card);
        }
        .search-box input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 0.95rem;
            outline: none;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: var(--text-secondary);
            opacity: 0.7;
        }
        .search-box button {
            padding: 0.7rem 1.2rem;
            background: var(--gold);
            border: none;
            color: #0d0b0e;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: var(--gold-light);
        }
        main {
            flex: 1;
            padding-bottom: 2rem;
        }
        h1 {
            font-family: var(--font-serif);
            font-size: 2.6rem;
            color: var(--gold);
            margin: 0.5rem 0 0.2rem;
            line-height: 1.25;
            letter-spacing: 1px;
        }
        h2 {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--gold-light);
            margin: 2.2rem 0 1rem;
            border-left: 4px solid var(--gold);
            padding-left: 1rem;
        }
        h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--text-primary);
            margin: 1.8rem 0 0.7rem;
        }
        h4 {
            font-family: var(--font-sans);
            font-size: 1.15rem;
            color: var(--gold);
            margin: 1.2rem 0 0.5rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.1rem;
            color: var(--text-secondary);
        }
        .content-card {
            background: var(--dark-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(212, 164, 69, 0.08);
            box-shadow: var(--shadow);
        }
        .highlight {
            color: var(--gold-light);
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .story-image {
            margin: 1.8rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .story-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-secondary);
            padding: 0.6rem 0 0.2rem;
            font-style: italic;
        }
        .rating-area,
        .comment-area {
            margin: 2rem 0 1.2rem;
            padding: 1.5rem 1.8rem;
            background: rgba(26, 22, 25, 0.7);
            border-radius: var(--radius);
            border: 1px solid rgba(212, 164, 69, 0.12);
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: var(--text-secondary);
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color var(--transition);
            cursor: pointer;
            color: var(--text-secondary);
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--gold);
        }
        .rating-form button,
        .comment-form button {
            padding: 0.6rem 2rem;
            background: var(--gold);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            color: #0d0b0e;
            cursor: pointer;
            transition: background var(--transition);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: var(--gold-light);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border: 1px solid rgba(212, 164, 69, 0.2);
            background: rgba(13, 11, 14, 0.7);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: var(--gold);
        }
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 6px;
            border: 1px solid rgba(212, 164, 69, 0.2);
            background: rgba(13, 11, 14, 0.7);
            color: var(--text-primary);
            font-size: 0.95rem;
            outline: none;
            margin-bottom: 0.8rem;
        }
        .comment-form input:focus {
            border-color: var(--gold);
        }
        footer {
            border-top: 2px solid rgba(212, 164, 69, 0.2);
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            border: 1px solid rgba(212, 164, 69, 0.2);
            border-radius: 20px;
            font-size: 0.85rem;
            transition: all var(--transition);
        }
        friend-link a:hover {
            background: rgba(212, 164, 69, 0.08);
            border-color: var(--gold);
        }
        .copyright {
            margin-top: 1.2rem;
            font-size: 0.8rem;
            color: var(--text-secondary);
            opacity: 0.7;
            text-align: center;
        }
        .last-updated {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .last-updated strong {
            color: var(--gold);
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            header {
                padding: 0.8rem 0 0.4rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .my-logo small {
                font-size: 0.45rem;
            }
            .nav-toggle {
                display: inline-block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark-card);
                padding: 0.8rem;
                border-radius: var(--radius);
                border: 1px solid rgba(212, 164, 69, 0.15);
                margin-top: 0.4rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.5rem 0.8rem;
                border-bottom: 1px solid rgba(212, 164, 69, 0.06);
            }
            nav a:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .content-card {
                padding: 1.2rem 1rem;
            }
            .rating-area,
            .comment-area {
                padding: 1rem 1.2rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 0.8rem;
            }
            .search-box {
                max-width: 100%;
            }
            .breadcrumb {
                font-size: 0.7rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .gap-2 {
            gap: 1.5rem;
        }
        .italic {
            font-style: italic;
        }
        .font-serif {
            font-family: var(--font-serif);
        }
