* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #0f0a08;
            color: #e8ddd0;
            line-height: 1.75;
            font-size: 1.05rem;
            scroll-behavior: smooth;
        }
        a {
            color: #d4a853;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f5d68a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(180deg, #1a0e0b 0%, #0f0a08 100%);
            border-bottom: 2px solid #3a251b;
            padding: 18px 0 12px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #d4a853;
            text-shadow: 0 2px 12px rgba(212, 168, 83, 0.25);
            font-family: 'Impact', 'Arial Black', sans-serif;
            transition: text-shadow 0.3s;
        }
        .my-logo:hover {
            text-shadow: 0 0 20px rgba(212, 168, 83, 0.5);
            text-decoration: none;
        }
        .my-logo small {
            display: block;
            font-size: 0.55rem;
            letter-spacing: 2px;
            color: #a08070;
            text-transform: none;
            font-family: 'Georgia', serif;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #d4a853;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a1a14;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 18px;
        }
        .navbar a {
            font-size: 0.95rem;
            font-weight: 500;
            color: #d4c8b8;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
            font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
        }
        .navbar a:hover {
            color: #f5d68a;
            border-bottom-color: #d4a853;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #a08070;
            font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
        }
        .breadcrumb a {
            color: #b89570;
        }
        .breadcrumb a:hover {
            color: #f5d68a;
        }
        .breadcrumb span {
            color: #d4a853;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5d68a;
            text-shadow: 0 3px 20px rgba(212, 168, 83, 0.3);
            line-height: 1.2;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }
        .hero .subhead {
            font-size: 1.15rem;
            color: #c0a890;
            max-width: 750px;
            margin: 0 auto 20px;
            font-style: italic;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #908070;
            font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
        }
        .hero .meta i {
            margin-right: 5px;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0 60px;
        }
        .main-article h2 {
            font-size: 2rem;
            color: #d4a853;
            border-left: 5px solid #d4a853;
            padding-left: 18px;
            margin: 48px 0 18px;
            line-height: 1.3;
        }
        .main-article h2:first-of-type {
            margin-top: 0;
        }
        .main-article h3 {
            font-size: 1.5rem;
            color: #e8c88a;
            margin: 32px 0 12px;
            font-weight: 600;
        }
        .main-article h4 {
            font-size: 1.2rem;
            color: #dbbc90;
            margin: 24px 0 10px;
            font-weight: 600;
        }
        .main-article p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .main-article ul,
        .main-article ol {
            margin: 12px 0 20px 28px;
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article .highlight-box {
            background: #1f1410;
            border-left: 4px solid #d4a853;
            padding: 18px 24px;
            border-radius: 0 8px 8px 0;
            margin: 24px 0;
            font-style: italic;
        }
        .main-article .stat-badge {
            display: inline-block;
            background: #2a1a14;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #d4a853;
            font-weight: 600;
            font-family: 'Segoe UI', sans-serif;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .featured-image figcaption {
            background: #1a0e0b;
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #a08070;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
        }
        .sidebar section {
            background: #1a0e0b;
            border: 1px solid #2a1a14;
            border-radius: 10px;
            padding: 20px 22px;
            margin-bottom: 28px;
        }
        .sidebar h3 {
            font-size: 1.25rem;
            color: #d4a853;
            border-bottom: 1px solid #2a1a14;
            padding-bottom: 10px;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
            font-size: 0.92rem;
        }
        .sidebar li a {
            color: #c0a890;
            display: block;
            padding: 4px 0;
            border-bottom: 1px solid #1f1410;
            transition: color 0.2s, padding-left 0.2s;
        }
        .sidebar li a:hover {
            color: #f5d68a;
            padding-left: 6px;
            text-decoration: none;
        }
        .sidebar li a i {
            margin-right: 8px;
            color: #d4a853;
            width: 18px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid #2a1a14;
            border-radius: 6px;
            background: #0f0a08;
            color: #e8ddd0;
            font-size: 0.92rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: #d4a853;
        }
        .search-form button {
            padding: 10px 18px;
            background: #d4a853;
            border: none;
            border-radius: 6px;
            color: #0f0a08;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #f5d68a;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #2a1a14;
            border-radius: 6px;
            background: #0f0a08;
            color: #e8ddd0;
            font-size: 0.92rem;
            resize: vertical;
            min-height: 90px;
            font-family: 'Georgia', serif;
            outline: none;
            transition: border 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #d4a853;
        }
        .comment-form .form-row {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 140px;
            padding: 10px 14px;
            border: 1px solid #2a1a14;
            border-radius: 6px;
            background: #0f0a08;
            color: #e8ddd0;
            font-size: 0.92rem;
            outline: none;
            transition: border 0.25s;
        }
        .comment-form .form-row input:focus {
            border-color: #d4a853;
        }
        .comment-form button {
            padding: 10px 26px;
            background: #d4a853;
            border: none;
            border-radius: 6px;
            color: #0f0a08;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
            margin-top: 10px;
        }
        .comment-form button:hover {
            background: #f5d68a;
            transform: scale(1.02);
        }
        .score-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }
        .score-form select {
            padding: 8px 14px;
            border: 1px solid #2a1a14;
            border-radius: 6px;
            background: #0f0a08;
            color: #e8ddd0;
            font-size: 0.95rem;
            outline: none;
            cursor: pointer;
        }
        .score-form select:focus {
            border-color: #d4a853;
        }
        .score-form button {
            padding: 8px 22px;
            background: #d4a853;
            border: none;
            border-radius: 6px;
            color: #0f0a08;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
        }
        .score-form button:hover {
            background: #f5d68a;
            transform: scale(1.02);
        }
        .score-display {
            margin-top: 12px;
            font-size: 0.9rem;
            color: #a08070;
        }
        .score-display .stars {
            color: #d4a853;
            letter-spacing: 2px;
        }
        friend-link {
            display: block;
            padding: 30px 0 20px;
            border-top: 2px solid #2a1a14;
            margin-top: 20px;
        }
        friend-link h3 {
            font-size: 1.2rem;
            color: #d4a853;
            margin-bottom: 16px;
            font-weight: 600;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
        }
        friend-link li {
            font-size: 0.92rem;
        }
        friend-link li a {
            color: #b89570;
            transition: color 0.2s;
        }
        friend-link li a:hover {
            color: #f5d68a;
        }
        footer {
            background: #0a0705;
            border-top: 2px solid #2a1a14;
            padding: 28px 0 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #706050;
            font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
        }
        footer .copyright {
            letter-spacing: 1px;
        }
        footer .copyright i {
            margin: 0 4px;
        }
        @media (max-width: 1024px) {
            .content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .sidebar section {
                margin-bottom: 0;
            }
        }
        @media (max-width: 820px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a0e0b;
                padding: 14px 0 18px;
                border-top: 1px solid #2a1a14;
                margin-top: 10px;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                padding: 10px 0;
                border-bottom: 1px solid #2a1a14;
                width: 100%;
                text-align: center;
            }
            .navbar a:last-child {
                border-bottom: none;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            .content {
                padding: 20px 0 40px;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 6px;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: auto;
            }
            .score-form {
                flex-direction: column;
                align-items: stretch;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .main-article h2 {
                font-size: 1.35rem;
                padding-left: 12px;
            }
            .main-article h3 {
                font-size: 1.15rem;
            }
            .main-article p {
                font-size: 0.98rem;
            }
            .my-logo {
                font-size: 1.2rem;
                letter-spacing: 1px;
            }
            .my-logo small {
                font-size: 0.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        .main-article a,
        .sidebar a,
        .breadcrumb a,
        friend-link a {
            transition: color 0.2s ease;
        }
        h2,
        h3,
        h4 {
            scroll-margin-top: 100px;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #2a1a14, transparent);
            margin: 30px 0;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 6px;
        }
        .last-updated {
            display: inline-block;
            background: #1f1410;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #a08070;
            font-family: 'Segoe UI', sans-serif;
        }
