        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #F5F0E8;
            color: #2D2D2D;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #B8860B;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #FFD700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1C1C3A;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #2D2D2D;
        }
        h4 {
            font-size: 1.2rem;
            color: #444;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1C1C3A 0%, #2A2A5A 100%);
            color: #fff;
            padding: 0 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #FFD700;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
            letter-spacing: 1px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #FFE44D;
        }
        .my-logo i {
            margin-right: 8px;
            color: #FF6B35;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #ccc;
            font-weight: 300;
            letter-spacing: 2px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            color: #eee;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.25s;
            display: block;
        }
        .main-nav li a:hover {
            background: rgba(255, 215, 0, 0.15);
            color: #FFD700;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #FFD700;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 215, 0, 0.1);
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e8e0d4;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        }
        .breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #aaa;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #B8860B;
        }
        .breadcrumb a:hover {
            color: #FFD700;
        }
        .breadcrumb .current {
            color: #333;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1C1C3A 0%, #2A2A5A 60%, #3A2A1A 100%);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 6px solid #FFD700;
        }
        .hero h1 {
            color: #FFD700;
            font-size: 2.8rem;
            margin: 0 0 10px;
            text-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
        }
        .hero p {
            font-size: 1.2rem;
            color: #ddd;
            max-width: 750px;
            margin: 0 auto 20px;
        }
        .hero .last-updated {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 12px;
        }
        .hero .last-updated i {
            margin-right: 6px;
            color: #FFD700;
        }
        .content-area {
            padding: 40px 0 60px;
        }
        .content-area .container {
            max-width: 1100px;
        }
        .featured-image-wrap {
            margin: 30px 0 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            background: #e8e0d4;
        }
        .featured-image-wrap img {
            width: 100%;
            aspect-ratio: 1200/600;
            object-fit: cover;
        }
        .featured-image-wrap .img-caption {
            padding: 12px 20px;
            background: #fff;
            font-size: 0.9rem;
            color: #555;
            border-top: 1px solid #eee;
        }
        .inline-link-list {
            background: #f9f5ee;
            padding: 20px 28px;
            border-radius: 16px;
            border-left: 6px solid #FFD700;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        .inline-link-list h4 {
            margin-top: 0;
            color: #1C1C3A;
        }
        .inline-link-list ul {
            columns: 2 280px;
            column-gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .inline-link-list li {
            break-inside: avoid;
            padding: 6px 0;
            border-bottom: 1px dashed #e8e0d4;
        }
        .inline-link-list li:last-child {
            border-bottom: none;
        }
        .inline-link-list a {
            font-weight: 500;
        }
        .inline-link-list a i {
            margin-right: 8px;
            color: #FF6B35;
            font-size: 0.85rem;
        }
        .forms-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0 30px;
        }
        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #eee;
            transition: box-shadow 0.3s;
        }
        .form-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
        }
        .form-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
            color: #1C1C3A;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-card h3 i {
            color: #FFD700;
        }
        .form-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            padding: 12px 16px;
            border: 1px solid #dcd6cc;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #FAF8F4;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: linear-gradient(135deg, #FFD700, #F0C000);
            color: #1C1C3A;
            border: none;
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .form-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
        }
        .form-card .btn:active {
            transform: translateY(0);
        }
        .form-card .small-note {
            font-size: 0.85rem;
            color: #888;
            margin-top: 6px;
        }
        .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: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #FFD700;
        }
        .star-rating label:hover {
            transform: scale(1.1);
        }
        .site-footer {
            background: #1C1C3A;
            color: #ccc;
            padding: 40px 0 20px;
            border-top: 6px solid #FFD700;
        }
        .site-footer .container {
            max-width: 1100px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #FFD700;
            margin-top: 0;
            font-size: 1.2rem;
        }
        .footer-grid p,
        .footer-grid li {
            color: #bbb;
            font-size: 0.95rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid li {
            padding: 4px 0;
        }
        .footer-grid a {
            color: #ddd;
        }
        .footer-grid a:hover {
            color: #FFD700;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid #2A2A5A;
            margin-top: 20px;
        }
        friend-link h4 {
            color: #FFD700;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        friend-link li a {
            color: #aaa;
            font-size: 0.9rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.2s;
        }
        friend-link li a:hover {
            color: #FFD700;
            border-bottom-color: #FFD700;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2A2A5A;
            font-size: 0.9rem;
            color: #888;
        }
        .copyright strong {
            color: #FFD700;
        }
        @media (max-width: 992px) {
            .forms-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(28, 28, 58, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 12px 20px;
                font-size: 1.1rem;
                border-radius: 12px;
            }
            .nav-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.3);
                z-index: -1;
            }
            .nav-overlay.active {
                display: block;
            }
            .header-inner {
                position: relative;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .inline-link-list ul {
                columns: 1;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            friend-link ul {
                flex-direction: column;
                gap: 4px;
            }
            .form-card {
                padding: 20px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 30px 0 24px;
            }
            .content-area {
                padding: 24px 0 40px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .mb-2 {
            margin-bottom: 1.5rem;
        }
        .text-gold {
            color: #B8860B;
        }
        .fw-700 {
            font-weight: 700;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .stats-table th {
            background: #1C1C3A;
            color: #FFD700;
            padding: 12px 16px;
            text-align: left;
        }
        .stats-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #f0ebe4;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .stats-table tr:hover td {
            background: #faf6ee;
        }
        blockquote {
            border-left: 5px solid #FFD700;
            background: #f9f5ee;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #444;
        }
        blockquote cite {
            display: block;
            margin-top: 10px;
            font-style: normal;
            font-weight: 600;
            color: #1C1C3A;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf8f0, #faf3e6);
            border: 2px solid #FFD700;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 16px rgba(255, 215, 0, 0.08);
        }
        .highlight-box h4 {
            margin-top: 0;
            color: #1C1C3A;
        }
