        *,
        *::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, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f8f7f2;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffb300;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.5em 0 0.3em;
            color: #1a1a2e;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin: 1.4em 0 0.5em;
            color: #1a1a2e;
            border-left: 6px solid #ffd700;
            padding-left: 18px;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.2em 0 0.4em;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.1rem;
            margin: 0.8em 0 0.3em;
            color: #3d3d54;
        }
        p {
            margin-bottom: 1.2em;
        }
        .text-muted {
            color: #6b6b7a;
            font-size: 0.92rem;
        }
        .updated-badge {
            display: inline-block;
            background: #ffd700;
            color: #1a1a2e;
            padding: 4px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #2a2a4e 100%);
            color: #fff;
            padding: 14px 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffd700;
            letter-spacing: -0.5px;
            background: rgba(255, 215, 0, 0.08);
            padding: 6px 18px;
            border-radius: 40px;
            border: 1px solid rgba(255, 215, 0, 0.25);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            background: rgba(255, 215, 0, 0.18);
            border-color: #ffd700;
            color: #fff3b0;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.6rem;
        }
        .my-logo small {
            font-weight: 400;
            font-size: 0.6rem;
            color: #aaa;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 215, 0, 0.12);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0e0f0;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(255, 215, 0, 0.14);
            color: #ffd700;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #ffd700;
            color: #1a1a2e;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 16px 0 8px;
            font-size: 0.88rem;
            color: #6b6b7a;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b6b7a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .search-wrap {
            background: #fff;
            border-radius: 50px;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 20px 0 10px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e4e4ea;
        }
        .search-wrap input {
            flex: 1;
            border: none;
            outline: none;
            padding: 12px 0;
            font-size: 1rem;
            background: transparent;
            min-width: 0;
        }
        .search-wrap button {
            background: #ffd700;
            border: none;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 700;
            color: #1a1a2e;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .search-wrap button:hover {
            background: #e6c200;
            transform: scale(1.02);
        }
        .hero-img-wrap {
            margin: 24px 0 32px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
            background: #eae8e0;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            max-height: 460px;
            object-fit: cover;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 28px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #fff;
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #efede8;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
        }
        .card h3 {
            margin-top: 0;
        }
        .card i {
            color: #b8860b;
            margin-right: 8px;
        }
        .card .fa-star {
            color: #ffd700;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        .styled-table th {
            background: #1a1a2e;
            color: #ffd700;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .styled-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #efede8;
            background: #fff;
        }
        .styled-table tr:last-child td {
            border-bottom: none;
        }
        .styled-table tr:hover td {
            background: #faf8f2;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fffbe6, #fff8d6);
            border-left: 8px solid #ffd700;
            padding: 24px 28px;
            border-radius: 0 16px 16px 0;
            margin: 28px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .block-quote {
            font-style: italic;
            color: #2d2d44;
            padding: 16px 24px;
            border-left: 4px solid #b8860b;
            background: #f9f7f0;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .rating-area {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px;
            margin: 40px 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #efede8;
        }
        .star-group {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-group .fas.fa-star {
            color: #ffd700;
        }
        .star-group .far.fa-star {
            color: #ccc;
            transition: color 0.2s;
        }
        .star-group label:hover,
        .star-group label:hover~label {
            color: #ffd700;
        }
        .star-group input {
            display: none;
        }
        .star-group label {
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-group input:checked~label {
            color: #ffd700;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 14px;
            border: 1px solid #e0ddd6;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #fcfbf8;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #b8860b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form .btn-submit {
            background: #1a1a2e;
            color: #ffd700;
            border: none;
            padding: 12px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form .btn-submit:hover {
            background: #2a2a4e;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            margin: 32px 0 16px;
            padding: 20px 24px;
            background: #fff;
            border-radius: 16px;
            border: 1px solid #efede8;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
            font-weight: 500;
        }
        friend-link a::before {
            content: "🔗 ";
            font-size: 0.8rem;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c8c8da;
            padding: 40px 0 24px;
            border-radius: 20px 20px 0 0;
            margin-top: 48px;
        }
        .site-footer .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.88rem;
            color: #8888a0;
        }
        .site-footer .copyright strong {
            color: #ffd700;
        }
        @media (max-width: 900px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 12px;
                gap: 2px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 10px;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 24px;
                padding: 12px;
                gap: 8px;
            }
            .search-wrap input {
                width: 100%;
                padding: 10px 12px;
                border-radius: 30px;
                background: #f5f3ee;
            }
            .search-wrap button {
                width: 100%;
                justify-content: center;
            }
            .star-group {
                font-size: 1.6rem;
                justify-content: center;
            }
            .rating-area {
                padding: 20px 16px;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .my-logo {
                font-size: 1.1rem;
                padding: 4px 12px;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 0 6px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
                padding-left: 12px;
            }
            .card {
                padding: 16px;
            }
            .highlight-box {
                padding: 16px 18px;
            }
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 8px;
        }
        .fw-700 {
            font-weight: 700;
        }
        .text-gold {
            color: #b8860b;
        }
        .bg-soft {
            background: #faf8f2;
            border-radius: 16px;
            padding: 20px 24px;
        }
        :target {
            scroll-margin-top: 100px;
        }
