* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f6f2;
            color: #2c2c2c;
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #b38b5b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #8a6a3f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 3px solid #b38b5b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5e6c8, #b38b5b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(179, 139, 91, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #b38b5b;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b38b5b;
            color: #f5e6c8;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #b38b5b;
            color: #1a1a2e;
        }
        .main-nav {
            display: flex;
            gap: 10px 24px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8e0d5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
        }
        .main-nav a:hover {
            border-bottom-color: #b38b5b;
            color: #f5e6c8;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            color: #b38b5b;
        }
        .breadcrumb-wrap {
            background: #ece8e0;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d9d0c4;
        }
        .breadcrumb-wrap .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb-wrap a {
            color: #6f5e4a;
        }
        .breadcrumb-wrap a:hover {
            color: #b38b5b;
        }
        .breadcrumb-wrap span {
            color: #4a3f33;
        }
        .breadcrumb-wrap .sep {
            color: #b38b5b;
            margin: 0 4px;
        }
        .hero {
            background: linear-gradient(145deg, #2d2a44 0%, #1f1b32 100%);
            color: #f5f0ea;
            padding: 40px 0 48px;
            text-align: center;
            border-bottom: 4px solid #b38b5b;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #f5e6c8, #d4b48c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 16px;
            color: #d4cdc4;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            color: #b38b5b;
        }
        .hero .meta-info i {
            margin-right: 6px;
        }
        .content-wrap {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content h2 {
            font-size: 2rem;
            color: #1a1a2e;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #b38b5b;
            display: inline-block;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #2d2a44;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #4a3f33;
            margin-top: 24px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #3d3d3d;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 28px;
            color: #3d3d3d;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #f0ebe4;
            border-left: 5px solid #b38b5b;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box i {
            color: #b38b5b;
            margin-right: 10px;
        }
        .main-content .insight-card {
            background: #ffffff;
            border: 1px solid #e2d9ce;
            border-radius: 16px;
            padding: 24px;
            margin: 24px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .main-content .insight-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .main-content .insight-card h4 i {
            color: #b38b5b;
            margin-right: 8px;
        }
        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 28px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0ebe4;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #4a3f33;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #e2d9ce;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #e2d9ce;
        }
        .table-wrap th {
            background: #1a1a2e;
            color: #f5e6c8;
            font-weight: 600;
        }
        .table-wrap tr:nth-child(even) {
            background: #f8f5f0;
        }
        .table-wrap tr:hover {
            background: #f0ebe4;
        }
        .btn {
            display: inline-block;
            background: #b38b5b;
            color: #fff;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: 0.25s;
        }
        .btn:hover {
            background: #8a6a3f;
            transform: translateY(-1px);
            text-decoration: none;
            color: #fff;
        }
        .btn i {
            margin-right: 8px;
        }
        .sidebar {
            position: relative;
        }
        .sidebar-card {
            background: #fff;
            border: 1px solid #e2d9ce;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #1a1a2e;
            margin-bottom: 16px;
            border-bottom: 2px solid #b38b5b;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .sidebar-card ul li a {
            color: #4a3f33;
        }
        .sidebar-card ul li a:hover {
            color: #b38b5b;
        }
        .sidebar-card ul li i {
            color: #b38b5b;
            margin-right: 8px;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #e2d9ce;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: 0.25s;
        }
        .search-form input:focus {
            border-color: #b38b5b;
        }
        .search-form button {
            background: #b38b5b;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 10px 20px;
            cursor: pointer;
            transition: 0.25s;
        }
        .search-form button:hover {
            background: #8a6a3f;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border: 1px solid #e2d9ce;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.5rem;
            color: #1a1a2e;
            margin-bottom: 18px;
            border-bottom: 2px solid #b38b5b;
            padding-bottom: 10px;
        }
        .comment-section textarea,
        .rating-section textarea,
        .comment-section input,
        .rating-section input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2d9ce;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: 0.25s;
            margin-bottom: 14px;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .rating-section textarea:focus,
        .comment-section input:focus,
        .rating-section input:focus {
            border-color: #b38b5b;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            margin-bottom: 14px;
            font-size: 1.6rem;
            color: #d9d0c4;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f5c542;
        }
        .rating-stars i:hover {
            color: #f5c542;
        }
        .site-footer {
            background: #1a1a2e;
            color: #d4cdc4;
            padding: 40px 0 24px;
            border-top: 4px solid #b38b5b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-inner h4 {
            color: #f5e6c8;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.9rem;
            color: #b8afa4;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .footer-inner ul li a {
            color: #b8afa4;
        }
        .footer-inner ul li a:hover {
            color: #f5e6c8;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid #2d2a44;
            margin-top: 20px;
            font-size: 0.95rem;
            color: #b8afa4;
        }
        friend-link a {
            color: #b38b5b;
            margin: 0 12px 0 4px;
        }
        friend-link a:hover {
            color: #f5e6c8;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d2a44;
            font-size: 0.85rem;
            color: #8a7f72;
        }
        .copyright a {
            color: #b38b5b;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                border-bottom: 1px solid #2d2a44;
                width: 100%;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content h2 {
                font-size: 1.6rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .container {
                padding: 0 14px;
            }
            .comment-section,
            .rating-section {
                padding: 18px 16px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 8px 18px;
                font-size: 0.85rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #b38b5b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: 0.25s;
            border: none;
            z-index: 999;
        }
        .scroll-top:hover {
            background: #8a6a3f;
            transform: translateY(-3px);
        }
        .scroll-top:focus {
            outline: 2px solid #f5e6c8;
        }
