        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #0b0d10;
            color: #e8edf3;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0b73e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f5f7fa;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f0b73e;
            padding-bottom: 0.5rem;
            margin-top: 0.25rem;
        }
        h2 {
            font-size: 1.85rem;
            border-left: 5px solid #f0b73e;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.45rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            color: #d4dce8;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        header {
            background: #14181f;
            border-bottom: 2px solid #2a2f38;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            background: rgba(20, 24, 31, 0.96);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #f0b73e;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f0b73e, #d4942a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #8a929f;
            color: #8a929f;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #3a404a;
            color: #e8edf3;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2f38;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d0dd;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #f0b73e;
            color: #0b0d10;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 10px 20px;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.85rem;
            color: #8a929f;
            background: transparent;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b0b8c6;
        }
        .breadcrumb a:hover {
            color: #f0b73e;
        }
        .breadcrumb span {
            color: #f0b73e;
        }
        .hero {
            padding: 40px 0 20px;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            border-bottom: none;
            padding-bottom: 0;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.1rem;
            color: #bcc4d2;
        }
        .hero-badge {
            display: inline-block;
            background: #f0b73e;
            color: #0b0d10;
            padding: 4px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .hero-img-wrap {
            background: #1a1f28;
            border-radius: 16px;
            padding: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }
        section {
            padding: 24px 0;
        }
        .section-card {
            background: #161b23;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 28px;
            border: 1px solid #262d38;
            transition: border-color 0.3s;
        }
        .section-card:hover {
            border-color: #3d4553;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            background: #1e242e;
            border-radius: 12px;
            padding: 16px 12px;
            text-align: center;
            border: 1px solid #2f3642;
        }
        .stat-item .value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f0b73e;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #9aa3b3;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .highlight-box {
            background: #1e242e;
            border-left: 6px solid #f0b73e;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #f0b73e;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .tag {
            display: inline-block;
            background: #2a323e;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #c8d0dd;
            margin-right: 6px;
            margin-bottom: 6px;
        }
        .tag.gold {
            background: #f0b73e;
            color: #0b0d10;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        .interact-card {
            background: #161b23;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #262d38;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            width: 100%;
            padding: 12px 14px;
            border-radius: 10px;
            border: 1px solid #2f3642;
            background: #1a1f28;
            color: #e8edf3;
            font-size: 0.95rem;
            margin-top: 8px;
            transition: border 0.3s;
            font-family: inherit;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            outline: none;
            border-color: #f0b73e;
        }
        .interact-card textarea {
            min-height: 70px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #f0b73e;
            color: #0b0d10;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
            margin-top: 10px;
        }
        .btn:hover {
            background: #ffcc5c;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0b73e;
            color: #f0b73e;
        }
        .btn-outline:hover {
            background: #f0b73e;
            color: #0b0d10;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a404a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0b73e;
        }
        footer {
            background: #10141b;
            border-top: 2px solid #262d38;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        footer h4 {
            margin-top: 0;
            color: #f0b73e;
            font-size: 1.1rem;
        }
        footer a {
            color: #aab2c2;
        }
        footer a:hover {
            color: #f0b73e;
        }
        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid #262d38;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #7a8394;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            margin-top: 8px;
        }
        .friend-link a {
            font-size: 0.9rem;
        }
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .two-col {
                grid-template-columns: 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 12px;
                border-top: 1px solid #262d38;
                margin-top: 10px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-card {
                padding: 18px 16px;
            }
        }
        @media (max-width: 420px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
        }
        .text-gold {
            color: #f0b73e;
        }
        .text-muted {
            color: #8a929f;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a8394;
            margin-top: 6px;
            display: block;
            text-align: right;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1f28;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #262d38;
        }
        th {
            background: #222a35;
            color: #f0b73e;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        blockquote {
            border-left: 4px solid #f0b73e;
            padding: 16px 20px;
            margin: 20px 0;
            background: #1a1f28;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d0dd;
        }
        blockquote strong {
            color: #f0b73e;
        }
