        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f5f0;
            background-image: linear-gradient(to bottom, #f8f5f0 0%, #e8e1d4 100%);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #9c6d3b;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #7a5227;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #5a3921;}
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .site-header {
            background-color: #1a1a1a;
            color: #d4c19c;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(to right, #d4c19c, #9c6d3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #d4c19c;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #9c6d3b;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4c19c;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #2d2d2d;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #9c6d3b;
        }
        .breadcrumb a {
            color: #d4c19c;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .main-content {
            padding: 3rem 0;
            background-color: #fff;
            box-shadow: 0 0 30px rgba(0,0,0,0.05);
            border-radius: 0 0 12px 12px;
            margin-bottom: 2rem;
        }
        .article-header {
            margin-bottom: 3rem;
            border-bottom: 3px solid #e8e1d4;
            padding-bottom: 2rem;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            color: #3a2715;
            line-height: 1.2;
            margin-bottom: 1rem;
            font-family: 'Cinzel', serif;
        }
        .article-meta {
            color: #777;
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #5a3921;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #d4c19c;
            font-family: 'Cinzel', serif;
        }
        h3 {
            font-size: 1.7rem;
            color: #7a5227;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #9c6d3b;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: #f5efe6;
            border-left: 5px solid #9c6d3b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            max-width: 800px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .featured-image img {
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .interactive-section {
            background-color: #f5efe6;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid #e0d5c1;
        }
        .interactive-section h3 {
            color: #3a2715;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #5a3921;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s ease, box-shadow 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: #9c6d3b;
            box-shadow: 0 0 0 3px rgba(156, 109, 59, 0.2);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to bottom, #9c6d3b, #7a5227);
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(to bottom, #a87944, #8b5d2e);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(156, 109, 59, 0.3);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ffc107;
        }
        .site-footer {
            background-color: #1a1a1a;
            color: #d4c19c;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: #f8f5f0;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #d4c19c;
        }
        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: #2d2d2d;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        friend-link a {
            color: #d4c19c;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #999;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-nav ul {
                gap: 1.2rem;
            }
            h1 { font-size: 3rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #1a1a1a;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                z-index: 999;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .header-inner {
                padding: 0 10px;
            }
            .container {
                padding: 0 15px;
            }
            .interactive-section {
                padding: 1.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .my-logo { font-size: 1.8rem; }
            .btn { width: 100%; text-align: center; }
        }
