        *,
        *::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: #f8f7f4;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45309;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover {
            color: #78350f;
        }
        a:focus-visible {
            outline: 3px solid #b45309;
            outline-offset: 2px;
            border-radius: 2px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e2a3a 0%, #2d3b4f 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fbbf24;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.9;
            color: #fbbf24;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #f59e0b;
        }
        .my-logo span {
            background: #fbbf24;
            color: #1e2a3a;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-toggle:focus-visible {
            outline: 3px solid #fbbf24;
            outline-offset: 2px;
        }
        .primary-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #e2e8f0;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: rgba(251, 191, 36, 0.2);
            color: #fbbf24;
        }
        .primary-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e5e7eb;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #6b7280;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #9ca3af;
            font-size: 1.2rem;
            margin-right: 4px;
        }
        .breadcrumb a {
            color: #b45309;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb [aria-current="page"] {
            color: #1e2a3a;
            font-weight: 600;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .hero {
            text-align: center;
            padding: 30px 0 20px;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1e2a3a;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        .hero h1 i {
            color: #f59e0b;
            margin-right: 10px;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #6b7280;
            margin-top: 12px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 16px;
            background: #e5e7eb;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #4b5563;
        }
        .hero .last-updated i {
            margin-right: 6px;
        }
        article {
            background: #fff;
            border-radius: 20px;
            padding: 40px 40px 50px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin-bottom: 40px;
        }
        article h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e2a3a;
            margin-top: 40px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #fbbf24;
            display: inline-block;
        }
        article h2:first-of-type {
            margin-top: 0;
        }
        article h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #2d3b4f;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        article h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4b5563;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        article p {
            margin-bottom: 18px;
            color: #374151;
            font-size: 1.02rem;
        }
        article p strong {
            color: #1e2a3a;
        }
        article ul,
        article ol {
            margin: 12px 0 20px 24px;
            color: #374151;
        }
        article li {
            margin-bottom: 8px;
        }
        article .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #f3f4f6;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .featured-image:hover img {
            transform: scale(1.01);
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #6b7280;
            background: #f9fafb;
            border-top: 1px solid #e5e7eb;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .info-card {
            background: #f9fafb;
            border-radius: 14px;
            padding: 22px 20px;
            border-left: 4px solid #fbbf24;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .info-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .info-card i {
            font-size: 1.6rem;
            color: #b45309;
            margin-bottom: 10px;
        }
        .info-card h4 {
            margin-top: 0;
            font-size: 1.05rem;
        }
        .info-card p {
            font-size: 0.92rem;
            margin-bottom: 0;
            color: #6b7280;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 36px 40px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin-bottom: 40px;
        }
        .search-section h2 {
            font-size: 1.6rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            font-size: 1rem;
            background: #f9fafb;
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #fbbf24;
            box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            background: #1e2a3a;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #2d3b4f;
            transform: translateY(-1px);
        }
        .search-form button:active {
            transform: translateY(0);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        @media (max-width: 800px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 20px;
            padding: 30px 34px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }
        .comment-section h2,
        .rating-section h2 {
            font-size: 1.4rem;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e5e7eb;
            border-radius: 14px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #f9fafb;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }
        .comment-section textarea:focus {
            border-color: #fbbf24;
            box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
        }
        .comment-section .form-row {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .comment-section .form-row input {
            flex: 1;
            min-width: 140px;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            font-size: 0.95rem;
            background: #f9fafb;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-section .form-row input:focus {
            border-color: #fbbf24;
        }
        .comment-section button,
        .rating-section button {
            padding: 12px 28px;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #78350f;
            transform: translateY(-1px);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            margin: 12px 0 8px;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f59e0b;
        }
        .rating-stars i:hover {
            transform: scale(1.15);
        }
        .rating-value {
            font-size: 0.9rem;
            color: #6b7280;
            margin-left: 8px;
        }
        .site-footer {
            background: #1e2a3a;
            color: #e2e8f0;
            padding: 40px 0 30px;
            margin-top: 20px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media (max-width: 720px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .footer-brand .my-logo {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 0.88rem;
            color: #9ca3af;
            max-width: 360px;
            line-height: 1.6;
        }
        .footer-links h4,
        .footer-friend h4 {
            color: #fbbf24;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-links ul,
        .footer-friend ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li,
        .footer-friend li {
            margin-bottom: 8px;
        }
        .footer-links a,
        .footer-friend a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.2s;
        }
        .footer-links a:hover,
        .footer-friend a:hover {
            color: #fbbf24;
        }
        .footer-friend {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            margin-top: 8px;
            grid-column: 1 / -1;
        }
        .footer-friend ul {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        .footer-friend li {
            margin-bottom: 4px;
        }
        .footer-friend li a {
            background: rgba(255, 255, 255, 0.05);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.82rem;
        }
        .footer-friend li a:hover {
            background: rgba(251, 191, 36, 0.12);
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 8px;
            font-size: 0.82rem;
            color: #6b7280;
            text-align: center;
        }
        .copyright strong {
            color: #9ca3af;
        }
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            article {
                padding: 28px 20px;
            }
            .search-section {
                padding: 28px 20px;
            }
            .comment-section,
            .rating-section {
                padding: 22px 18px;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding: 16px 0 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 8px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 16px;
                border-radius: 10px;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero .subtitle {
                font-size: 0.95rem;
            }
            article h2 {
                font-size: 1.4rem;
            }
            article h3 {
                font-size: 1.15rem;
            }
            .info-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 420px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.35rem;
            }
            article {
                padding: 18px 12px;
                border-radius: 12px;
            }
            .breadcrumb ol {
                gap: 4px 8px;
                font-size: 0.75rem;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .text-accent {
            color: #b45309;
        }
        .text-gold {
            color: #f59e0b;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
