* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a2a3a;
            --secondary: #c9a84c;
            --accent: #e8d5a3;
            --bg: #faf8f2;
            --bg-card: #ffffff;
            --text: #2c2c2c;
            --text-light: #6b6b6b;
            --border: #e0dcd0;
            --radius: 12px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0 20px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-card);
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
        }
        header {
            background: var(--primary);
            color: #fff;
            padding: 20px 30px;
            position: relative;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--secondary);
            text-decoration: none;
            font-family: 'Georgia', serif;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #ccc;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            font-size: 1.8rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: var(--secondary);
            color: var(--primary);
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
        }
        nav a {
            color: #eee;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-weight: 500;
        }
        nav a:hover {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }
        .nav-search-form {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 2px 2px 2px 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: 0.3s;
        }
        .nav-search-form:focus-within {
            background: rgba(255, 255, 255, 0.18);
            border-color: var(--secondary);
        }
        .nav-search-form input {
            background: transparent;
            border: none;
            color: #fff;
            padding: 8px 0;
            font-size: 0.9rem;
            outline: none;
            min-width: 120px;
        }
        .nav-search-form input::placeholder {
            color: #aaa;
        }
        .nav-search-form button {
            background: var(--secondary);
            border: none;
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.85rem;
        }
        .nav-search-form button:hover {
            background: #dbbf5a;
        }
        .breadcrumb {
            padding: 14px 30px;
            background: #f5f2ea;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .breadcrumb .current {
            color: var(--text);
            font-weight: 600;
        }
        main {
            padding: 30px 30px 50px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        .subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 30px;
            border-left: 4px solid var(--secondary);
            padding-left: 18px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: var(--secondary);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 50px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f3a4a;
            margin: 35px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2a4a5a;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .content-image {
            margin: 30px 0;
            text-align: center;
        }
        .content-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .content-image figcaption {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 8px;
            font-style: italic;
        }
        .highlight-box {
            background: #f8f4ea;
            border-left: 5px solid var(--secondary);
            padding: 20px 25px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 30px 0;
        }
        .highlight-box strong {
            color: var(--primary);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--bg);
            padding: 20px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--secondary);
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-top: 4px;
        }
        .content-link {
            color: #1a5a7a;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dotted #b8c8d4;
            transition: 0.2s;
        }
        .content-link:hover {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0 30px;
        }
        @media (max-width: 768px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 25px;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font);
            background: #fff;
            transition: 0.2s;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
        }
        .interact-card textarea {
            resize: vertical;
            min-height: 100px;
        }
        .interact-card .btn {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .interact-card .btn:hover {
            background: #2a4a5a;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--secondary);
        }
        footer {
            background: var(--primary);
            color: #ddd;
            padding: 30px 30px 20px;
            border-top: 4px solid var(--secondary);
        }
        footer a {
            color: var(--accent);
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-bottom: 25px;
        }
        .footer-grid h4 {
            color: var(--secondary);
            margin: 0 0 12px;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 6px;
        }
        friend-link {
            display: block;
            padding: 18px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 18px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 10px 6px 0;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.14);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        @media (max-width: 860px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 18px;
                gap: 12px;
            }
            nav.open {
                display: flex;
            }
            .nav-search-form {
                width: 100%;
            }
            .nav-search-form input {
                flex: 1;
                min-width: 0;
            }
            .header-top {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            main {
                padding: 20px 16px 40px;
            }
            header {
                padding: 16px 18px;
            }
            .breadcrumb {
                padding: 12px 18px;
            }
            footer {
                padding: 20px 18px 16px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .section-spacer {
            margin: 40px 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
