        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #faf7f2;
            color: #2c1810;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #8b3a2a;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #b54a3a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1f0f08;
            font-weight: 700;
            margin-top: 0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.6rem;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 3px solid #d4a373;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.6rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1f0f08 0%, #3a1f14 100%);
            color: #f5ede4;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
            border-bottom: 3px solid #d4a373;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5ede4 !important;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 163, 115, 0.15);
            padding: 4px 18px 4px 14px;
            border-radius: 40px;
            border: 1px solid rgba(212, 163, 115, 0.3);
            transition: background 0.3s;
        }
        .my-logo i {
            color: #d4a373;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            background: rgba(212, 163, 115, 0.28);
            text-decoration: none !important;
        }
        .my-logo span {
            font-weight: 300;
            color: #d4a373;
            font-size: 0.8rem;
            margin-left: 4px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f5ede4;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
            text-decoration: none;
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(212, 163, 115, 0.2);
            border-color: #d4a373;
            color: #f5ede4;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #d4a373;
            color: #1f0f08;
            border-color: #d4a373;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5ede4;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(212, 163, 115, 0.2);
        }
        .breadcrumb-wrap {
            background: #efe6dc;
            padding: 10px 0;
            border-bottom: 1px solid #ddd0c0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.85rem;
            color: #5a3f32;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #a1836e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a4e3a;
        }
        .breadcrumb a:hover {
            color: #b54a3a;
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #3a1f14;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2c1810 0%, #4a2c1e 50%, #1f0f08 100%);
            color: #f5ede4;
            padding: 50px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚡";
            font-size: 12rem;
            position: absolute;
            right: -30px;
            bottom: -40px;
            opacity: 0.06;
            transform: rotate(-12deg);
            pointer-events: none;
        }
        .hero h1 {
            color: #f5ede4;
            font-size: 2.8rem;
            margin-bottom: 0.4rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            margin: 0 auto 1.2rem;
            opacity: 0.88;
        }
        .hero .meta-badge {
            display: inline-block;
            background: #d4a373;
            color: #1f0f08;
            padding: 4px 22px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .hero .last-updated {
            margin-top: 12px;
            font-size: 0.85rem;
            opacity: 0.7;
        }
        .search-section {
            background: #fff;
            padding: 24px 0;
            border-bottom: 1px solid #e5d9ce;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 8px;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 14px 22px;
            border: none;
            font-size: 1rem;
            background: #f9f5f0;
            outline: none;
            color: #2c1810;
            min-width: 0;
        }
        .search-form input[type="text"]::placeholder {
            color: #9a7e6a;
        }
        .search-form button {
            background: #8b3a2a;
            border: none;
            color: #fff;
            padding: 0 28px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #b54a3a;
        }
        .main-wrap {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede4da;
            transition: box-shadow 0.3s;
        }
        .card:hover {
            box-shadow: 0 8px 36px rgba(0, 0, 0, 0.09);
        }
        .feature-img {
            margin: 24px 0 20px;
            border-radius: 14px;
            overflow: hidden;
            background: #e5d9ce;
        }
        .feature-img img {
            width: 100%;
            object-fit: cover;
            max-height: 460px;
        }
        .feature-img figcaption {
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #5a3f32;
            background: #f5ede4;
            font-style: italic;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 10px 18px;
            list-style: none;
            padding: 0;
            margin: 16px 0 8px;
        }
        .link-list li {
            padding: 4px 0;
        }
        .link-list li a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
        }
        .link-list li a i {
            color: #d4a373;
            font-size: 0.8rem;
        }
        .highlight-box {
            background: #f5ede4;
            border-left: 5px solid #d4a373;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #8b3a2a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            background: #f9f5f0;
            padding: 16px 12px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #ede4da;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #8b3a2a;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #5a3f32;
            margin-top: 2px;
        }
        .sidebar-module {
            background: #fff;
            border-radius: 16px;
            padding: 22px 20px;
            margin-bottom: 24px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede4da;
        }
        .sidebar-module h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 12px;
            border-bottom: 2px solid #d4a373;
            padding-bottom: 8px;
        }
        .sidebar-module ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-module ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0e8de;
        }
        .sidebar-module ul li:last-child {
            border-bottom: none;
        }
        .sidebar-module ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
        }
        .sidebar-module ul li a i {
            color: #d4a373;
            font-size: 0.7rem;
        }
        .comment-form-wrap,
        .rating-form-wrap {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede4da;
        }
        .comment-form-wrap h3,
        .rating-form-wrap h3 {
            margin-top: 0;
            border-bottom: 2px solid #d4a373;
            padding-bottom: 10px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #3a1f14;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd0c0;
            border-radius: 10px;
            font-size: 1rem;
            background: #faf7f2;
            transition: border 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d4a373;
            box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            background: #8b3a2a;
            color: #fff;
        }
        .btn:hover {
            background: #b54a3a;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: #d4a373;
            color: #1f0f08;
        }
        .btn-secondary:hover {
            background: #c4915f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 2rem;
            margin: 8px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd0c0;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .site-footer {
            background: #1f0f08;
            color: #cdbcae;
            padding: 44px 0 20px;
            border-top: 4px solid #d4a373;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 28px;
        }
        .footer-grid h4 {
            color: #f5ede4;
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-bottom: 1px solid #3a1f14;
            padding-bottom: 6px;
        }
        .footer-grid a {
            color: #cdbcae;
            display: block;
            padding: 3px 0;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #d4a373;
            text-decoration: underline;
        }
        .footer-bottom {
            border-top: 1px solid #3a1f14;
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            gap: 10px;
        }
        .footer-bottom .copyright {
            opacity: 0.7;
        }
        friend-link {
            display: block;
            margin-top: 12px;
            padding: 10px 14px;
            background: rgba(212, 163, 115, 0.08);
            border-radius: 10px;
            border: 1px solid rgba(212, 163, 115, 0.15);
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #2c1810;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 8px;
                gap: 4px;
                border: 1px solid #3a1f14;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 10px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .card {
                padding: 20px 18px;
            }
            .comment-form-wrap,
            .rating-form-wrap {
                padding: 20px 18px;
            }
            .content-sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form button {
                padding: 14px;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
                padding: 4px 12px;
            }
            .my-logo span {
                font-size: 0.65rem;
            }
            .container {
                padding: 0 14px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-item .num {
                font-size: 1.5rem;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .text-muted {
            color: #7a6556;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .align-center {
            align-items: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 16px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        table th,
        table td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid #ede4da;
        }
        table th {
            background: #f5ede4;
            font-weight: 700;
            color: #1f0f08;
        }
        table tr:hover td {
            background: #faf7f2;
        }
        .tag {
            display: inline-block;
            background: #f0e8de;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.78rem;
            font-weight: 600;
            color: #5a3f32;
        }
        .tag-gold {
            background: #d4a373;
            color: #1f0f08;
        }
