* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e4e9f0;
            line-height: 1.7;
            padding: 0;
            scroll-behavior: smooth;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffe066;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #141a24;
            border-bottom: 2px solid #2a3546;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(20, 26, 36, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #facc15, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
        }
        .my-logo i {
            -webkit-text-fill-color: #facc15;
            margin-right: 6px;
            color: #facc15;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 8px 14px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8d0dc;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-list li a:hover {
            background: #2a3546;
            color: #facc15;
            text-decoration: none;
        }
        .nav-list li a.active {
            background: #facc15;
            color: #0b0e14;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #facc15;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~.nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 12px;
            background: #1a2230;
            padding: 16px;
            border-radius: 12px;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.9rem;
            color: #8a94a6;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #facc15;
        }
        .breadcrumb span {
            color: #6b7a8f;
        }
        .hero-img {
            margin: 24px 0 32px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            background: #1a2230;
            overflow: hidden;
        }
        .hero-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 32px 0 16px;
            background: linear-gradient(135deg, #facc15, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a3546;
            color: #f0d97a;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e8d48b;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #d4c074;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d0d8e3;
        }
        .lead {
            font-size: 1.2rem;
            color: #ecf0f5;
            font-weight: 400;
            border-left: 4px solid #facc15;
            padding-left: 20px;
            margin-bottom: 28px;
        }
        strong,
        b {
            color: #f5e7b0;
            font-weight: 700;
        }
        em {
            color: #d4c074;
        }
        .highlight-box {
            background: #1e2838;
            padding: 24px 28px;
            border-radius: 14px;
            border-left: 6px solid #facc15;
            margin: 28px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .section-spacer {
            margin: 48px 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 24px 0;
        }
        @media (max-width: 768px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: #1a2230;
            padding: 20px 16px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #2a3546;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
            border-color: #facc15;
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #facc15;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #9aa8ba;
            margin-top: 4px;
        }
        .interview-block {
            background: #141f2e;
            padding: 28px 30px;
            border-radius: 16px;
            margin: 32px 0;
            border: 1px solid #2f4055;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #dce3ed;
            border-left: 3px solid #facc15;
            padding-left: 20px;
            margin: 16px 0;
        }
        .img-caption {
            margin: 28px 0;
            text-align: center;
        }
        .img-caption img {
            margin: 0 auto 10px;
            max-height: 400px;
            object-fit: cover;
            width: 100%;
        }
        .img-caption .caption {
            font-size: 0.9rem;
            color: #8a94a6;
        }
        .related-links {
            background: #1a2230;
            padding: 20px 24px;
            border-radius: 14px;
            margin: 28px 0;
            border: 1px solid #2a3546;
        }
        .related-links ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            list-style: none;
        }
        .related-links ul li a {
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
        }
        .related-links ul li a:hover {
            border-bottom-color: #facc15;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin: 48px 0 32px;
        }
        @media (max-width: 900px) {
            .interactive-section {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 600px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        .interactive-card {
            background: #141a24;
            border: 1px solid #2a3546;
            border-radius: 16px;
            padding: 24px 22px;
            transition: border-color 0.2s;
        }
        .interactive-card:hover {
            border-color: #facc15;
        }
        .interactive-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 16px;
            color: #f0d97a;
        }
        .interactive-card input,
        .interactive-card textarea,
        .interactive-card select {
            width: 100%;
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid #2a3546;
            background: #1a2230;
            color: #e4e9f0;
            font-size: 0.95rem;
            margin-bottom: 12px;
            transition: border-color 0.2s;
        }
        .interactive-card input:focus,
        .interactive-card textarea:focus {
            outline: none;
            border-color: #facc15;
        }
        .interactive-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interactive-card .btn {
            background: #facc15;
            color: #0b0e14;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .interactive-card .btn:hover {
            background: #ffe066;
            transform: scale(1.02);
        }
        .interactive-card .btn i {
            font-size: 1rem;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a4a5e;
            cursor: pointer;
            margin-bottom: 12px;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s, transform 0.1s;
            color: #3a4a5e;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #facc15;
            transform: scale(1.1);
        }
        .star-rating label i {
            font-size: 1.8rem;
        }
        footer {
            background: #0f141e;
            border-top: 2px solid #2a3546;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        @media (max-width: 768px) {
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer h4 {
            color: #f0d97a;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer a {
            color: #b0bed0;
        }
        footer a:hover {
            color: #facc15;
        }
        friend-link {
            display: block;
            padding: 8px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .copyright {
            border-top: 1px solid #1e2838;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #6b7a8f;
        }
        .copyright strong {
            color: #b0bed0;
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
            }
            .nav-list li a {
                display: block;
                padding: 10px 14px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                align-items: center;
            }
        }
        @media (min-width: 769px) {
            #nav-toggle {
                display: none;
            }
            .nav-list {
                display: flex !important;
                flex-direction: row;
            }
            .hamburger {
                display: none !important;
            }
        }
        .tag {
            display: inline-block;
            background: #1e2838;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #b0bed0;
            margin-right: 6px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a94a6;
            margin: 8px 0 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #facc15;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #141a24;
            border-radius: 12px;
            overflow: hidden;
        }
        table th {
            background: #1e2838;
            color: #f0d97a;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 10px 16px;
            border-top: 1px solid #2a3546;
            color: #c8d0dc;
        }
        table tr:hover td {
            background: #1a2230;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
