* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f4f0;
            color: #2d2a24;
            line-height: 1.8;
            font-size: 16px;
        }
        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;
        }
        .site-header {
            background: linear-gradient(145deg, #2d1f14 0%, #4a3222 100%);
            padding: 16px 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5e6d3;
            text-shadow: 2px 2px 0 #b8860b;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5e6d3;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 300;
            letter-spacing: 1px;
            color: #c9b69a;
            display: block;
            text-shadow: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f5e6d3;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #b8860b;
            color: #2d1f14;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8ddd0;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: 0.2s;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(184, 134, 11, 0.25);
            border-color: #b8860b;
            text-decoration: none;
            color: #f5e6d3;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.8rem;
        }
        .breadcrumb-wrap {
            background: #efe6dc;
            padding: 10px 0;
            border-bottom: 1px solid #dccfc0;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb-wrap a {
            color: #6b4f3a;
        }
        .breadcrumb-wrap a:hover {
            color: #b8860b;
        }
        .breadcrumb-wrap span {
            color: #8a7a6a;
        }
        .breadcrumb-wrap .sep {
            color: #b8860b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #3d2b1e 0%, #5c3f2b 100%);
            padding: 50px 0 40px;
            color: #f5ece4;
            text-align: center;
            border-bottom: 6px solid #b8860b;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        .hero h1 i {
            color: #f0c27a;
            margin-right: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 20px;
            opacity: 0.9;
            line-height: 1.7;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            background: rgba(0, 0, 0, 0.25);
            padding: 10px 28px;
            border-radius: 40px;
            font-size: 0.9rem;
            backdrop-filter: blur(4px);
        }
        .hero .meta-badge i {
            color: #f0c27a;
            margin-right: 6px;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .main-content .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body {
            background: #fff;
            border-radius: 20px;
            padding: 36px 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .content-body h2 {
            font-size: 2rem;
            color: #2d1f14;
            margin-top: 48px;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 3px solid #b8860b;
            font-weight: 700;
        }
        .content-body h2:first-child {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.5rem;
            color: #4a3222;
            margin-top: 32px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .content-body h4 {
            font-size: 1.15rem;
            color: #6b4f3a;
            margin-top: 22px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 18px;
            color: #3d342c;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 20px;
            padding-left: 24px;
            color: #3d342c;
        }
        .content-body li {
            margin-bottom: 8px;
        }
        .content-body .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
            background: #efe6dc;
        }
        .content-body .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .content-body .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #6b5a4a;
            background: #f8f4f0;
            font-style: italic;
        }
        .content-body blockquote {
            border-left: 5px solid #b8860b;
            background: #f8f4f0;
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #4a3a2a;
        }
        .content-body blockquote strong {
            color: #2d1f14;
        }
        .content-body .highlight-box {
            background: #f0ebe4;
            border-radius: 14px;
            padding: 20px 26px;
            margin: 24px 0;
            border: 1px solid #dccfc0;
        }
        .content-body .highlight-box i {
            color: #b8860b;
            margin-right: 8px;
        }
        .content-body .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .content-body table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 500px;
        }
        .content-body th {
            background: #2d1f14;
            color: #f5ece4;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .content-body td {
            padding: 10px 16px;
            border-bottom: 1px solid #e0d6ca;
        }
        .content-body tr:nth-child(even) td {
            background: #faf7f3;
        }
        .content-body .btn-link {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: 0.2s;
        }
        .content-body .btn-link:hover {
            background: #8b6508;
            text-decoration: none;
            color: #fff;
            transform: translateY(-1px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #2d1f14;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #b8860b;
            font-weight: 700;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 10px;
            background: #f8f4f0;
            transition: 0.2s;
            font-size: 0.9rem;
            color: #3d342c;
        }
        .sidebar-card li a:hover {
            background: #efe6dc;
            text-decoration: none;
            color: #b8860b;
        }
        .sidebar-card li a i {
            color: #b8860b;
            font-size: 0.8rem;
            width: 20px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #dccfc0;
            border-radius: 30px;
            font-size: 0.9rem;
            outline: none;
            transition: 0.2s;
            background: #faf7f3;
        }
        .search-form input:focus {
            border-color: #b8860b;
            background: #fff;
        }
        .search-form button {
            padding: 10px 20px;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .search-form button:hover {
            background: #8b6508;
        }
        .comment-area,
        .rating-area {
            margin-top: 36px;
            padding-top: 28px;
            border-top: 2px solid #e0d6ca;
        }
        .comment-area h3,
        .rating-area h3 {
            font-size: 1.4rem;
            color: #2d1f14;
            margin-bottom: 16px;
            font-weight: 700;
        }
        .comment-area textarea,
        .rating-area textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #dccfc0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            background: #faf7f3;
            transition: 0.2s;
            outline: none;
        }
        .comment-area textarea:focus,
        .rating-area textarea:focus {
            border-color: #b8860b;
            background: #fff;
        }
        .comment-area .form-row,
        .rating-area .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 12px;
        }
        .comment-area .form-row input,
        .rating-area .form-row input {
            flex: 1;
            min-width: 160px;
            padding: 10px 16px;
            border: 2px solid #dccfc0;
            border-radius: 30px;
            font-size: 0.9rem;
            outline: none;
            background: #faf7f3;
            transition: 0.2s;
        }
        .comment-area .form-row input:focus,
        .rating-area .form-row input:focus {
            border-color: #b8860b;
            background: #fff;
        }
        .comment-area .form-row button,
        .rating-area .form-row button {
            padding: 10px 28px;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .comment-area .form-row button:hover,
        .rating-area .form-row button:hover {
            background: #8b6508;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #dccfc0;
            cursor: pointer;
            margin: 8px 0;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active {
            color: #f0c27a;
        }
        .star-rating i:hover {
            color: #f0c27a;
            transform: scale(1.1);
        }
        .site-footer {
            background: #2d1f14;
            color: #dccfc0;
            padding: 40px 0 20px;
            border-top: 6px solid #b8860b;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .site-footer h4 {
            color: #f5e6d3;
            font-size: 1.1rem;
            margin-bottom: 14px;
            font-weight: 700;
        }
        .site-footer a {
            color: #c9b69a;
        }
        .site-footer a:hover {
            color: #f0c27a;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
        }
        .site-footer li {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #4a3222;
            font-size: 0.85rem;
            color: #a69480;
        }
        friend-link {
            display: block;
            padding: 14px 18px;
            background: #3d2b1e;
            border-radius: 12px;
            margin-top: 8px;
            font-size: 0.9rem;
            line-height: 1.8;
            color: #c9b69a;
        }
        friend-link a {
            color: #f0c27a;
            margin: 0 4px;
        }
        friend-link a:hover {
            color: #fff;
        }
        @media (max-width: 992px) {
            .main-content .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .sidebar .sidebar-card:first-child {
                grid-column: 1 / -1;
            }
            .site-footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 12px;
                border-top: 1px solid #4a3222;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 10px;
                border: 1px solid transparent;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-body {
                padding: 24px 18px;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.25rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .breadcrumb-wrap .container {
                font-size: 0.75rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero .meta-badge {
                flex-direction: column;
                gap: 6px;
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            .content-body {
                padding: 16px 12px;
            }
            .comment-area .form-row,
            .rating-area .form-row {
                flex-direction: column;
            }
            .comment-area .form-row input,
            .rating-area .form-row input {
                width: 100%;
                min-width: auto;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .toast-msg {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: #2d1f14;
            color: #f5ece4;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 0.9rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
            border: 1px solid #b8860b;
        }
        .toast-msg.show {
            opacity: 1;
        }
