        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
            background: #f8f6f2;
            color: #1e2a3a;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #78350f;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e2a3a;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.75rem;
            margin-top: 2.5rem;
            margin-bottom: 0.75rem;
            border-bottom: 3px solid #eab308;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.75rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.25rem;
            margin-bottom: 0.3rem;
            color: #334155;
        }
        p {
            margin-bottom: 1rem;
        }
        blockquote {
            border-left: 4px solid #eab308;
            background: #fef9e7;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d2e1b;
        }
        hr {
            border: none;
            border-top: 2px dashed #d1d5db;
            margin: 2rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1e2a3a 0%, #2d3a4a 100%);
            color: #fff;
            padding: 0.75rem 0;
            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.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fbbf24;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #f59e0b;
        }
        .my-logo:hover {
            color: #fcd34d;
            text-decoration: none;
        }
        .my-logo span {
            font-size: 0.75rem;
            font-weight: 400;
            color: #94a3b8;
            display: block;
            letter-spacing: 1px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .nav-bar a {
            color: #e2e8f0;
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-bar a:hover,
        .nav-bar a.active {
            background: #fbbf24;
            color: #1e2a3a;
            text-decoration: none;
        }
        .nav-bar a i {
            margin-right: 0.3rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fbbf24;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: #f1ede6;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            color: #64748b;
        }
        .breadcrumb a {
            color: #b45309;
        }
        .breadcrumb a:hover {
            color: #78350f;
        }
        .breadcrumb span {
            margin: 0 0.4rem;
            color: #94a3b8;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media(max-width:900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .sidebar {
            position: relative;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.5rem;
            border: 1px solid #ede9e0;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #eab308;
            padding-bottom: 0.4rem;
            margin-bottom: 0.8rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-link-list li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f1ede6;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar-link-list a i {
            color: #eab308;
            font-size: 0.75rem;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #eab308;
            background: #fff;
            transition: box-shadow 0.3s;
        }
        .search-form:focus-within {
            box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.25);
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.7rem 1.2rem;
            font-size: 0.95rem;
            outline: none;
            background: transparent;
            color: #1e2a3a;
        }
        .search-form button {
            background: #eab308;
            border: none;
            padding: 0.7rem 1.2rem;
            cursor: pointer;
            color: #1e2a3a;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #ca8a04;
        }
        .comment-box,
        .rating-box {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #ede9e0;
            margin-top: 2rem;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            border-bottom: 2px solid #eab308;
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            transition: border-color 0.2s;
            background: #fafaf9;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #eab308;
            outline: none;
            background: #fff;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            background: #eab308;
            color: #1e2a3a;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .btn-primary:hover {
            background: #ca8a04;
            transform: translateY(-1px);
        }
        .btn-primary i {
            margin-right: 0.4rem;
        }
        .star-display {
            display: flex;
            gap: 0.25rem;
            font-size: 1.4rem;
            color: #d1d5db;
            margin-bottom: 0.8rem;
        }
        .star-display .fa-star.active {
            color: #eab308;
        }
        .featured-image-wrapper {
            margin: 1.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image-wrapper img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image-wrapper figcaption {
            background: #f1ede6;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #475569;
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fff;
            padding: 1.2rem 1rem;
            border-radius: 14px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede9e0;
        }
        .stat-card .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #eab308;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 0.8rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .styled-table th {
            background: #1e2a3a;
            color: #fbbf24;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .styled-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #f1ede6;
        }
        .styled-table tr:last-child td {
            border-bottom: none;
        }
        .styled-table tr:hover td {
            background: #fef9e7;
        }
        .site-footer {
            background: #1e2a3a;
            color: #cbd5e1;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media(max-width:700px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .site-footer h4 {
            color: #fbbf24;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1rem;
            border-bottom: 2px solid #334155;
            padding-bottom: 0.4rem;
        }
        .site-footer a {
            color: #94a3b8;
        }
        .site-footer a:hover {
            color: #fbbf24;
            text-decoration: none;
        }
        .friend-link {
            display: block;
            background: #2d3a4a;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
            font-size: 0.9rem;
            border-left: 4px solid #eab308;
        }
        .friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            color: #fbbf24;
        }
        .friend-link a:hover {
            color: #fcd34d;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            font-size: 0.85rem;
            color: #94a3b8;
        }
        .copyright strong {
            color: #fbbf24;
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2d3a4a;
                border-radius: 12px;
                padding: 0.8rem;
                margin-top: 0.8rem;
                gap: 0.2rem;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 6px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .container {
                padding: 0 1rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .styled-table {
                font-size: 0.8rem;
            }
        }
        .text-accent {
            color: #b45309;
        }
        .bg-soft {
            background: #fef9e7;
            padding: 1.2rem 1.5rem;
            border-radius: 14px;
            border-left: 4px solid #eab308;
            margin: 1.2rem 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #f1ede6;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #475569;
            margin-bottom: 1rem;
        }
        .last-updated i {
            color: #eab308;
        }
