        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f8f6f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0a1a2f 0%, #13294b 100%);
            color: #fff;
            padding: 1rem 0;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
            position: relative;
            z-index: 10;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5d77b, #e6b417);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(230, 180, 23, 0.25);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #e6b417;
            margin-right: 0.25rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.2rem;
            list-style: none;
            padding: 0;
        }
        .nav-menu a {
            color: #e8e4d8;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            color: #f5d77b;
            border-bottom-color: #f5d77b;
            text-decoration: none;
        }
        .nav-menu .active a {
            color: #f5d77b;
            border-bottom-color: #f5d77b;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.06);
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            margin: 0.8rem 1.5rem 0;
            font-size: 0.85rem;
            color: #c8c4b8;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #d4c8a8;
        }
        .breadcrumb a:hover {
            color: #f5d77b;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #e8e0c8;
        }
        main {
            padding: 2.5rem 0;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0a1a2f;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #13294b;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-left: 6px solid #e6b417;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e3a5f;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2a4a72;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #2e2e3a;
            background: #ece8de;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border-left: 6px solid #e6b417;
        }
        .card {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            transition: box-shadow 0.25s ease;
        }
        .card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }
        .feature-image {
            border-radius: 20px;
            margin: 2rem 0;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem;
            list-style: none;
            padding: 0;
        }
        .link-list li a {
            display: block;
            background: #f0ece2;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            font-weight: 500;
            transition: background 0.2s, transform 0.15s;
        }
        .link-list li a:hover {
            background: #e6dcc8;
            transform: translateX(4px);
            text-decoration: none;
        }
        .link-list li a i {
            margin-right: 0.5rem;
            color: #b8860b;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e2a3a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dcd6c8;
            border-radius: 12px;
            font-size: 1rem;
            background: #fcfaf6;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.12);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            font-weight: 600;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-family: inherit;
        }
        .btn:hover {
            background: #8b6508;
            transform: translateY(-2px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c518;
        }
        .comment-item {
            background: #f3efe7;
            border-radius: 16px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #b8860b;
        }
        .comment-item strong {
            color: #0a1a2f;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #777;
        }
        .site-footer {
            background: #0a1a2f;
            color: #d8d4c8;
            padding: 3rem 0 1.5rem;
            border-radius: 24px 24px 0 0;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #d4c8a8;
        }
        .site-footer a:hover {
            color: #f5d77b;
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link::before {
            content: "🤝 Friendly Links";
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: #f5d77b;
            margin-bottom: 1rem;
        }
        .friend-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            list-style: none;
            padding: 0;
        }
        .friend-links-grid li a {
            padding: 0.4rem 0.8rem;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.06);
            transition: background 0.2s;
        }
        .friend-links-grid li a:hover {
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            font-size: 0.9rem;
            color: #a8a498;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                padding: 0 1rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.4rem;
                padding: 1rem 0 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li {
                width: 100%;
            }
            .nav-menu a {
                display: block;
                padding: 0.6rem 1rem;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.04);
            }
            .nav-menu a:hover {
                background: rgba(255, 255, 255, 0.08);
            }
            .breadcrumb {
                margin: 0.6rem 1rem 0;
                padding: 0.4rem 1rem;
                font-size: 0.75rem;
            }
            .card {
                padding: 1.2rem 1.2rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .feature-image {
                max-height: 300px;
            }
            .container {
                padding: 0 0.5rem;
            }
            .site-header {
                border-radius: 0 0 16px 16px;
            }
            .site-footer {
                border-radius: 16px 16px 0 0;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .lead {
                font-size: 1rem;
                padding: 1rem 1.2rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .flex-1 {
            flex: 1;
            min-width: 260px;
        }
        .gap-1 {
            gap: 1rem;
        }
        .align-center {
            align-items: center;
        }
        section {
            scroll-margin-top: 2rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #0a1a2f;
            color: #f5d77b;
            padding: 1.2rem 1rem;
            border-radius: 16px;
            text-align: center;
            font-weight: 700;
        }
        .stat-card span {
            display: block;
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
        }
        .stat-card small {
            font-weight: 400;
            color: #c8c4b8;
            font-size: 0.85rem;
        }
