* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f0e8;
            color: #2c2c2c;
            line-height: 1.75;
            padding: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a2a1a 0%, #0f1a0f 100%);
            color: #f5f0e8;
            padding: 0 0 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 12px 20px;
            max-width: 1140px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #c9a84c;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #dfc06a;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #b8a07a;
            display: block;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #e8e0d0;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.25s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .nav-list li a:hover {
            background: #c9a84c;
            color: #1a1a0e;
            border-color: #c9a84c;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #c9a84c;
            cursor: pointer;
            padding: 4px 10px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1a0f;
                padding: 12px 0 16px 0;
                border-top: 1px solid #2a3a2a;
                margin-top: 8px;
                gap: 2px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 12px 20px;
                border-radius: 0;
                background: transparent;
                border: none;
                border-bottom: 1px solid #1e2e1e;
                font-size: 0.95rem;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .breadcrumb {
            padding: 8px 20px;
            max-width: 1140px;
            margin: 0 auto;
            font-size: 0.8rem;
            color: #b8a07a;
            background: transparent;
        }
        .breadcrumb a {
            color: #c9a84c;
        }
        .breadcrumb a:hover {
            color: #dfc06a;
        }
        .breadcrumb span {
            color: #8a7a6a;
        }
        main {
            padding: 32px 0 48px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        .article-body h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a2a1a;
            line-height: 1.2;
            margin-bottom: 8px;
            border-left: 6px solid #c9a84c;
            padding-left: 18px;
        }
        .article-body .subtitle {
            font-size: 1.1rem;
            color: #5a5a4a;
            margin-bottom: 24px;
            font-style: italic;
        }
        .article-body .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.85rem;
            color: #7a7a6a;
            margin-bottom: 28px;
            padding-bottom: 12px;
            border-bottom: 1px solid #ddd6c8;
        }
        .article-body .meta-info span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .article-body h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a2a1a;
            margin-top: 44px;
            margin-bottom: 16px;
            padding-bottom: 6px;
            border-bottom: 2px solid #c9a84c;
        }
        .article-body h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #2d4a2d;
            margin-top: 32px;
            margin-bottom: 10px;
        }
        .article-body h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #3a5a3a;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .article-body p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px 30px;
        }
        .article-body li {
            margin-bottom: 6px;
        }
        .article-body strong {
            color: #1a3a1a;
            font-weight: 700;
        }
        .article-body .highlight-box {
            background: #e8e0d0;
            border-left: 6px solid #c9a84c;
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
        }
        .article-body .highlight-box strong {
            color: #b8860b;
        }
        .hero-img-wrapper {
            margin: 28px 0 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }
        .hero-img-wrapper img {
            width: 100%;
            display: block;
        }
        .hero-img-wrapper figcaption {
            background: #1a2a1a;
            color: #c9a84c;
            padding: 10px 18px;
            font-size: 0.85rem;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #f0ebe0;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #ddd6c8;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a2a1a;
            border-bottom: 2px solid #c9a84c;
            padding-bottom: 8px;
            margin-bottom: 16px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px solid #ddd6c8;
        }
        .sidebar ul li a {
            font-size: 0.9rem;
            font-weight: 500;
        }
        .search-section {
            background: #1a2a1a;
            padding: 32px 24px;
            border-radius: 16px;
            margin: 40px 0 20px 0;
            color: #f5f0e8;
        }
        .search-section h3 {
            color: #c9a84c;
            font-size: 1.3rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: #f5f0e8;
            color: #2c2c2c;
            outline: none;
            transition: box-shadow 0.3s;
        }
        .search-form input:focus {
            box-shadow: 0 0 0 3px #c9a84c;
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #c9a84c;
            color: #1a1a0e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #dfc06a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 20px 0;
        }
        @media (max-width: 700px) {
            .interaction-area {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #f0ebe0;
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid #ddd6c8;
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a2a1a;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-box input,
        .comment-box textarea,
        .rating-box select {
            padding: 12px 16px;
            border: 1px solid #ccc4b4;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fdfaf5;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-box input:focus,
        .comment-box textarea:focus,
        .rating-box select:focus {
            border-color: #c9a84c;
            outline: none;
            box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box button,
        .rating-box button {
            align-self: flex-start;
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            background: #1a2a1a;
            color: #c9a84c;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #2d4a2d;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 42, 26, 0.3);
        }
        footer {
            background: #0f1a0f;
            color: #b8a07a;
            padding: 40px 20px 28px 20px;
            margin-top: 48px;
            border-top: 4px solid #c9a84c;
        }
        .footer-inner {
            max-width: 1140px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #c9a84c;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .footer-inner ul li a {
            color: #b8a07a;
        }
        .footer-inner ul li a:hover {
            color: #c9a84c;
        }
        .friend-link {
            display: block;
            padding: 14px 18px;
            background: #1a2a1a;
            border-radius: 12px;
            border-left: 4px solid #c9a84c;
            margin: 12px 0;
            font-size: 0.9rem;
        }
        .friend-link a {
            color: #c9a84c;
            font-weight: 600;
        }
        .friend-link a:hover {
            color: #dfc06a;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #2a3a2a;
            font-size: 0.8rem;
            color: #7a6a5a;
            max-width: 1140px;
            margin-left: auto;
            margin-right: auto;
        }
        .copyright strong {
            color: #b8a07a;
        }
        @media (max-width: 480px) {
            .article-body h1 {
                font-size: 1.8rem;
                padding-left: 12px;
            }
            .article-body h2 {
                font-size: 1.4rem;
            }
            .article-body h3 {
                font-size: 1.15rem;
            }
            .search-form input {
                min-width: 140px;
                padding: 12px 16px;
            }
            .search-form button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .sidebar {
                position: static;
            }
            .breadcrumb {
                font-size: 0.7rem;
                padding: 6px 16px;
            }
        }
        .text-gold {
            color: #c9a84c;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-12 {
            gap: 12px;
        }
        button,
        a,
        .my-logo {
            transition: all 0.2s ease;
        }
        ::selection {
            background: #c9a84c;
            color: #1a1a0e;
        }
