        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.8;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #ffb347;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1f2a;
        }
        ::-webkit-scrollbar-thumb {
            background: #ffb347;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f141e 0%, #1a2332 100%);
            border-bottom: 2px solid #ffb34733;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            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: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #ffb347;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ffb347, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(255, 179, 71, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ffb347;
            font-size: 2rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #c8d0dc;
            background: transparent;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .main-nav a:hover {
            background: #ffb34718;
            border-color: #ffb34755;
            color: #ffb347;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #ffb34722;
            border-color: #ffb347;
            color: #ffb347;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            background: none;
            border: none;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: #ffb347;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8899aa;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #ffb34788;
            font-weight: 700;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #aab8c8;
        }
        .breadcrumb a:hover {
            color: #ffb347;
        }
        .breadcrumb .current {
            color: #ffb347;
            font-weight: 600;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a233250, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 7vw, 4.2rem);
            font-weight: 900;
            background: linear-gradient(135deg, #ffb347, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0c4d8;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px 32px;
            color: #8899aa;
            font-size: 0.9rem;
        }
        .hero-meta i {
            color: #ffb347;
            margin-right: 6px;
        }
        .search-wrap {
            max-width: 520px;
            margin: 20px auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 1.5px solid #ffb34744;
            background: #0f141e;
            transition: border-color 0.3s;
        }
        .search-wrap:focus-within {
            border-color: #ffb347;
        }
        .search-wrap input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-wrap input::placeholder {
            color: #556677;
        }
        .search-wrap button {
            background: #ffb347;
            border: none;
            padding: 0 24px;
            cursor: pointer;
            color: #0b0e14;
            font-size: 1.2rem;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-wrap button:hover {
            background: #ffd700;
        }
        .section {
            padding: 32px 0;
        }
        .section-title {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            color: #ffb347;
            margin-bottom: 20px;
            border-left: 5px solid #ffb347;
            padding-left: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-title i {
            font-size: 1.4rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
            margin: 24px 0;
        }
        .card {
            background: #151e2a;
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid #2a3a4a;
            transition: all 0.35s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .card:hover {
            transform: translateY(-6px);
            border-color: #ffb34755;
            box-shadow: 0 16px 40px rgba(255, 179, 71, 0.08);
        }
        .card h3 {
            font-size: 1.25rem;
            color: #ffb347;
            margin-bottom: 8px;
        }
        .card h4 {
            font-size: 1.05rem;
            color: #d0dce8;
            margin: 12px 0 6px;
        }
        .card p {
            color: #b0c4d8;
            font-size: 0.95rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 16px;
            border: 1px solid #2a3a4a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 540px;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #1f2a36;
        }
        th {
            background: #ffb34718;
            color: #ffb347;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            font-size: 0.8rem;
        }
        td {
            color: #c8d8e8;
        }
        tr:hover td {
            background: #1a2533;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 28px 0;
        }
        @media (max-width: 700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-box {
            background: #151e2a;
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid #2a3a4a;
        }
        .interact-box h3 {
            color: #ffb347;
            font-size: 1.3rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #c8d8e8;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1.5px solid #2a3a4a;
            background: #0f141e;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            outline: none;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #ffb347;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 50px;
            background: #ffb347;
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #ffd700;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 179, 71, 0.25);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid #ffb347;
            color: #ffb347;
        }
        .btn-outline:hover {
            background: #ffb34718;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 8px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #3a4a5a;
            cursor: pointer;
            transition: color 0.25s ease;
        }
        .star-rating label i {
            pointer-events: none;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #ffb347;
        }
        .featured-img {
            margin: 32px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a3a4a;
        }
        .featured-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-img:hover img {
            transform: scale(1.01);
        }
        .featured-img figcaption {
            padding: 12px 20px;
            background: #0f141e;
            color: #8899aa;
            font-size: 0.85rem;
            border-top: 1px solid #2a3a4a;
        }
        .site-footer {
            background: #0a0e14;
            border-top: 2px solid #1a2332;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 28px;
            margin-bottom: 28px;
        }
        .footer-grid h4 {
            color: #ffb347;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-grid a {
            display: block;
            padding: 3px 0;
            color: #8899aa;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #ffb347;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #1a2332;
            margin-top: 16px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 14px 4px 0;
            color: #8899aa;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #ffb347;
        }
        .copyright {
            text-align: center;
            color: #556677;
            font-size: 0.85rem;
            padding-top: 16px;
            border-top: 1px solid #1a2332;
        }
        .copyright strong {
            color: #8899aa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding: 12px 0 6px;
                background: #0f141e;
                border-radius: 16px;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .search-wrap input {
                padding: 12px 14px;
                font-size: 0.9rem;
            }
            .search-wrap button {
                padding: 0 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 1.3rem;
                padding-left: 12px;
            }
        }
        .text-glow {
            text-shadow: 0 0 30px rgba(255, 179, 71, 0.08);
        }
        .gap-8 {
            gap: 8px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pill {
            display: inline-block;
            padding: 2px 14px;
            border-radius: 50px;
            background: #ffb34718;
            color: #ffb347;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
