        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #faf8f3;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1a2a3a;
            margin-top: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        :root {
            --primary: #1a2a3a;
            --primary-light: #2c4055;
            --gold: #d4a843;
            --gold-hover: #c49a35;
            --orange: #e8592b;
            --cream: #faf8f3;
            --cream-dark: #f0ece3;
            --text-dark: #1e1e2a;
            --text-muted: #5a5a6a;
            --border-light: #e8e2d6;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: 0.25s ease;
        }
        .site-header {
            background: var(--primary);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--gold);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            color: #f0d080;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: #fff;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            color: #f0ede8;
            padding: 0.5rem 0.9rem;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
        }
        .main-nav li a:hover,
        .main-nav li a.active {
            background: rgba(212, 168, 67, 0.2);
            color: var(--gold);
            text-decoration: none;
        }
        .main-nav li a i {
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb {
            background: var(--cream-dark);
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid var(--border-light);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: var(--text-muted);
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--text-dark);
            font-weight: 600;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .hero {
            background: linear-gradient(135deg, #1a2a3a 0%, #2c4055 100%);
            color: #fff;
            padding: 3rem 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🀄🀅🀆🀇🀈🀉";
            position: absolute;
            bottom: -10px;
            right: -10px;
            font-size: 5rem;
            opacity: 0.06;
            letter-spacing: 0.5rem;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 0.6rem;
            font-weight: 800;
        }
        .hero h1 span {
            color: var(--gold);
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 750px;
            margin: 0 auto 1.2rem;
        }
        .hero .last-update {
            font-size: 0.9rem;
            opacity: 0.7;
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            padding: 0.3rem 1rem;
            border-radius: 30px;
        }
        .hero .last-update i {
            margin-right: 0.4rem;
        }
        .content-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
        }
        .content-section h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.6rem;
            border-bottom: 3px solid var(--gold);
            display: inline-block;
        }
        .content-section h3 {
            font-size: 1.5rem;
            color: var(--primary-light);
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        .content-section h4 {
            font-size: 1.2rem;
            color: #3a4a5a;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .content-section p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
        }
        .content-section .feature-img {
            margin: 1.5rem 0;
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .highlight-box {
            background: #f8f4ec;
            border-left: 4px solid var(--gold);
            padding: 1.2rem 1.6rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: var(--primary);
        }
        .tip-box {
            background: #edf4f0;
            border-left: 4px solid #2a8a5e;
            padding: 1.2rem 1.6rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.5rem 0;
        }
        .tip-box strong {
            color: #1a6a44;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: var(--cream);
            padding: 1.2rem;
            border-radius: var(--radius-sm);
            text-align: center;
            border: 1px solid var(--border-light);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--gold);
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.8rem;
            margin: 1.2rem 0 0.5rem;
        }
        .link-grid a {
            background: var(--cream);
            padding: 0.7rem 1.2rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-grid a:hover {
            background: var(--cream-dark);
            border-color: var(--gold);
            text-decoration: none;
        }
        .link-grid a i {
            color: var(--gold);
        }
        .search-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            max-width: 600px;
            margin: 1rem 0 0;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.25s;
        }
        .search-form input:focus {
            border-color: var(--gold);
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width:700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem 1.1rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border-color 0.25s;
        }
        .comment-form textarea:focus {
            border-color: var(--gold);
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1.1rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.25s;
            margin-bottom: 0.7rem;
        }
        .comment-form input:focus {
            border-color: var(--gold);
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 120px;
        }
        .comment-form button,
        .rating-form button {
            padding: 0.7rem 1.6rem;
            background: var(--gold);
            color: #1a2a3a;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: var(--gold-hover);
            transform: translateY(-1px);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.8rem 0;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5b342;
            transform: scale(1.05);
        }
        .rating-form .current-rating {
            font-weight: 600;
            color: var(--text-muted);
            margin-left: 0.5rem;
        }
        .friend-links-section {
            background: var(--primary);
            color: #e8e2d6;
            padding: 2.5rem 0;
            margin-top: 1rem;
        }
        .friend-links-section h3 {
            color: var(--gold);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        friend-link {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem 1.8rem;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        friend-link a {
            color: #d4c8b0;
            font-size: 0.95rem;
            transition: color 0.2s;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
        }
        friend-link a:hover {
            color: var(--gold);
            background: rgba(212, 168, 67, 0.1);
            text-decoration: none;
        }
        .site-footer {
            background: #0f1a26;
            color: #b0b0b8;
            padding: 2rem 0 1.5rem;
            font-size: 0.9rem;
            border-top: 2px solid rgba(212, 168, 67, 0.15);
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .site-footer .copyright {
            opacity: 0.8;
        }
        .site-footer .copyright strong {
            color: var(--gold);
        }
        @media (max-width:840px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary-light);
                border-radius: var(--radius-sm);
                padding: 0.6rem 0.4rem;
                margin-top: 0.6rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
            }
            .header-inner {
                align-items: center;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-section {
                padding: 1.5rem 1.2rem;
            }
            .content-section h2 {
                font-size: 1.6rem;
            }
            .content-section h3 {
                font-size: 1.3rem;
            }
            .search-section {
                padding: 1.5rem 1.2rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.3rem 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width:480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 2rem 1rem;
            }
            .content-section {
                padding: 1.2rem 0.9rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .search-form input {
                min-width: 100%;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--gold);
            color: #1a2a3a;
            padding: 0.6rem 1.2rem;
            font-weight: 700;
            z-index: 9999;
            border-radius: 0 0 6px 0;
        }
        .skip-link:focus {
            top: 0;
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
