        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0f1a;
            color: #e8e8e8;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #f0b90b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1225 0%, #1a1f35 100%);
            border-bottom: 3px solid #f0b90b;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: #f0b90b;
            text-transform: uppercase;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd966;
            text-decoration: none;
        }
        .my-logo span {
            color: #ffffff;
        }
        .nav-toggle {
            display: none;
            font-size: 1.6rem;
            color: #f0b90b;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(240, 185, 11, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #cfd4e6;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #f0b90b;
            color: #0b0f1a;
            text-decoration: none;
        }
        .breadcrumb {
            background: #151c2e;
            padding: 12px 0;
            border-bottom: 1px solid #2a3350;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6b7a9a;
        }
        .breadcrumb a {
            color: #8e9fc4;
        }
        .breadcrumb a:hover {
            color: #f0b90b;
        }
        .breadcrumb .current {
            color: #f0b90b;
            font-weight: 600;
        }
        .hero {
            padding: 50px 0 40px;
            background: radial-gradient(ellipse at 30% 20%, #1a2440, #0b0f1a 80%);
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #f0b90b;
            letter-spacing: 0.5px;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 0 40px rgba(240, 185, 11, 0.15);
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0bedd;
            max-width: 780px;
            margin: 0 auto 24px;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(240, 185, 11, 0.12);
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #f0b90b;
            border: 1px solid rgba(240, 185, 11, 0.2);
        }
        section {
            padding: 50px 0;
        }
        section:nth-child(even) {
            background: #111827;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #f0b90b;
            margin-bottom: 24px;
            border-left: 5px solid #f0b90b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e0e7ff;
            margin-top: 32px;
            margin-bottom: 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c8d2f0;
            margin-top: 22px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d7ee;
        }
        .content-card {
            background: #181f30;
            border-radius: 16px;
            padding: 28px 32px;
            margin-bottom: 28px;
            border: 1px solid #2a3350;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .content-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e2a45, #0f182b);
            border-left: 6px solid #f0b90b;
            padding: 20px 28px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #f0b90b;
        }
        .feature-img {
            margin: 30px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .feature-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .feature-img figcaption {
            background: #151c2e;
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #8e9fc4;
            text-align: center;
            border-top: 1px solid #2a3350;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 520px;
            margin: 24px auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 50px;
            border: 2px solid #2a3350;
            background: #0f1422;
            color: #e8e8e8;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #f0b90b;
        }
        .search-form button {
            padding: 14px 34px;
            border-radius: 50px;
            border: none;
            background: #f0b90b;
            color: #0b0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        .interact-card {
            background: #181f30;
            border-radius: 16px;
            padding: 28px 30px;
            border: 1px solid #2a3350;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f0b90b;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #2a3350;
            background: #0f1422;
            color: #e8e8e8;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: #f0b90b;
        }
        .interact-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interact-card button {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: #f0b90b;
            color: #0b0f1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .interact-card button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #3a4560;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f0b90b;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            padding: 40px 0 20px;
        }
        friend-link h3 {
            color: #f0b90b;
            margin-top: 0;
            font-size: 1.3rem;
        }
        friend-link .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
            margin-top: 12px;
        }
        friend-link .link-list li a {
            color: #8e9fc4;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.2s;
        }
        friend-link .link-list li a:hover {
            color: #f0b90b;
            border-bottom-color: #f0b90b;
        }
        .site-footer {
            background: #080c17;
            border-top: 2px solid #1a2440;
            padding: 30px 0 24px;
            text-align: center;
        }
        .site-footer .copyright {
            color: #5a6a8a;
            font-size: 0.85rem;
            margin-top: 16px;
            border-top: 1px solid #1a2440;
            padding-top: 20px;
        }
        .site-footer .copyright strong {
            color: #8e9fc4;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 14px;
                gap: 4px;
                background: #0d1225;
                padding: 12px 8px;
                border-radius: 14px;
                border: 1px solid #2a3350;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 18px;
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 14px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .content-card {
                padding: 20px 18px;
            }
            .search-form input {
                min-width: 160px;
            }
            .header-inner {
                gap: 6px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
            section {
                padding: 34px 0;
            }
            .interact-card {
                padding: 18px 16px;
            }
            .search-form button {
                padding: 12px 22px;
                font-size: 0.9rem;
            }
            .search-form input {
                padding: 12px 16px;
                font-size: 0.9rem;
            }
        }
        .text-gold {
            color: #f0b90b;
        }
        .text-muted {
            color: #6b7a9a;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .fw-700 {
            font-weight: 700;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .btn-gold {
            display: inline-block;
            padding: 12px 36px;
            border-radius: 50px;
            background: #f0b90b;
            color: #0b0f1a;
            font-weight: 700;
            font-size: 1rem;
            transition: background 0.25s, transform 0.15s;
            border: none;
            cursor: pointer;
        }
        .btn-gold:hover {
            background: #ffd966;
            transform: scale(1.02);
            text-decoration: none;
            color: #0b0f1a;
        }
        .inline-link {
            color: #f0b90b;
            font-weight: 600;
        }
        .inline-link:hover {
            text-decoration: underline;
        }
