        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0a12;
            color: #e4e0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #c9a84c;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover,
        a:focus {
            color: #f0d87e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1730;
        }
        ::-webkit-scrollbar-thumb {
            background: #c9a84c;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f0d87e;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1730 0%, #0f0c1f 100%);
            border-bottom: 2px solid #c9a84c33;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0d87e, #c9a84c, #b8942e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #c9a84c;
            font-size: 2rem;
        }
        .my-logo a {
            text-decoration: none;
            -webkit-text-fill-color: inherit;
            color: inherit;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #c9c4e0;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a:focus,
        .main-nav a.active {
            background: #c9a84c22;
            color: #f0d87e;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #c9a84c;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 60%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f0d87e;
            cursor: pointer;
            padding: 0.4rem;
            transition: color 0.3s ease;
        }
        .hamburger:hover {
            color: #fff;
        }
        .breadcrumb {
            background: #151228;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2545;
            font-size: 0.85rem;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.6rem;
            color: #8884b0;
        }
        .breadcrumb a {
            color: #b0abcc;
        }
        .breadcrumb a:hover {
            color: #f0d87e;
        }
        .breadcrumb .current {
            color: #f0d87e;
            font-weight: 600;
        }
        .hero {
            padding: 3rem 0 2.5rem;
            text-align: center;
            background: radial-gradient(ellipse at center, #1f1a3a 0%, #0b0a12 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f7e9b0, #c9a84c, #d4b85a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.8rem;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0abcc;
            max-width: 720px;
            margin: 0 auto 1.2rem;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            justify-content: center;
            font-size: 0.9rem;
            color: #8884b0;
        }
        .hero .meta-badge span {
            background: #1a1730;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            border: 1px solid #2a2545;
        }
        .hero .meta-badge i {
            color: #c9a84c;
            margin-right: 0.4rem;
        }
        section {
            padding: 2.5rem 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #f0d87e;
            margin-bottom: 1.2rem;
            border-left: 4px solid #c9a84c;
            padding-left: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .section-title i {
            font-size: 1.6rem;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f0d87e;
            margin-top: 2.2rem;
            margin-bottom: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #d4c8f0;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #c4b8e8;
            margin-top: 1.2rem;
            margin-bottom: 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0cce8;
            font-size: 1.05rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1f1a3a, #151228);
            border-left: 4px solid #c9a84c;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #f0d87e;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #151228;
            padding: 1.4rem 1.2rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a2545;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #c9a84c;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 900;
            color: #f0d87e;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #8884b0;
            margin-top: 0.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1730;
            padding: 0.6rem;
        }
        .featured-image img {
            width: 100%;
            border-radius: 12px;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 0.8rem 0.4rem 0.2rem;
            font-size: 0.9rem;
            color: #8884b0;
            font-style: italic;
        }
        .inline-link-list {
            background: #151228;
            border-radius: 12px;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border: 1px solid #2a2545;
        }
        .inline-link-list ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.4rem 1.2rem;
        }
        .inline-link-list li {
            padding: 0.2rem 0;
        }
        .inline-link-list a {
            font-weight: 500;
        }
        .search-box {
            background: #151228;
            border-radius: 40px;
            padding: 0.4rem 0.4rem 0.4rem 1.8rem;
            display: flex;
            align-items: center;
            border: 1px solid #2a2545;
            transition: border-color 0.3s ease;
            max-width: 500px;
            margin: 0 auto;
        }
        .search-box:focus-within {
            border-color: #c9a84c;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.8rem 0;
            font-size: 1rem;
            color: #e4e0f0;
            outline: none;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #8884b0;
        }
        .search-box button {
            background: #c9a84c;
            border: none;
            color: #0b0a12;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #f0d87e;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .interaction-card {
            background: #151228;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #2a2545;
            transition: border-color 0.3s ease;
        }
        .interaction-card:hover {
            border-color: #c9a84c44;
        }
        .interaction-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interaction-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .interaction-card textarea,
        .interaction-card input,
        .interaction-card select {
            background: #0f0c1f;
            border: 1px solid #2a2545;
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            color: #e4e0f0;
            outline: none;
            transition: border-color 0.3s ease;
            font-family: inherit;
            width: 100%;
        }
        .interaction-card textarea:focus,
        .interaction-card input:focus,
        .interaction-card select:focus {
            border-color: #c9a84c;
        }
        .interaction-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interaction-card .btn-submit {
            background: #c9a84c;
            border: none;
            color: #0b0a12;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        .interaction-card .btn-submit:hover {
            background: #f0d87e;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #3a3560;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s ease;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0d87e;
        }
        .site-footer {
            background: #0f0c1f;
            border-top: 2px solid #1a1730;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f0d87e;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .site-footer p,
        .site-footer a {
            color: #8884b0;
            font-size: 0.95rem;
        }
        .site-footer a:hover {
            color: #f0d87e;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            padding: 0.3rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a1730;
            color: #5a5580;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #8884b0;
        }
        @media (max-width: 900px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 720px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #151228;
                padding: 1rem 0.6rem;
                border-radius: 12px;
                margin-top: 0.6rem;
                border: 1px solid #2a2545;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.8rem 1.2rem;
                width: 100%;
                border-radius: 8px;
            }
            .main-nav a::after {
                display: none;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .inline-link-list ul {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                background: transparent;
                border: none;
                padding: 0;
                gap: 0.6rem;
            }
            .search-box input {
                background: #151228;
                border: 1px solid #2a2545;
                border-radius: 40px;
                padding: 0.8rem 1.4rem;
                width: 100%;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero .meta-badge {
                flex-direction: column;
                align-items: center;
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .interaction-card {
                padding: 1.2rem;
            }
        }
        .text-glow {
            text-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, #c9a84c44, transparent);
            margin: 2.5rem 0;
        }
