        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #0b0e14;
            color: #e3e8ef;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f7fa;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f0c040;
            padding-left: 1rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2a313c;
            padding-bottom: 0.4rem;
            margin-top: 2.4em;
        }
        h3 {
            font-size: 1.35rem;
            color: #e8edf5;
        }
        h4 {
            font-size: 1.1rem;
            color: #cfd8e6;
        }
        p {
            margin-bottom: 1.2em;
            color: #d0d7e3;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #141a22;
            border-bottom: 3px solid #f0c040;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f0c040;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c040, #d4a020);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.15);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #8899aa;
            color: #8899aa;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #c8d2e0;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            background: #f0c04022;
            color: #f0c040;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f0c040;
            color: #f0c040;
            font-size: 1.5rem;
            padding: 4px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f0c040;
            color: #0b0e14;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #7a8a9e;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #f0c040;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #a0b0c4;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 600;
        }
        .main-content {
            padding: 30px 0 50px;
        }
        .featured-image {
            margin: 30px 0 40px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1e2630;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            max-height: 520px;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #99aabc;
            font-style: italic;
            background: #141a22;
        }
        .last-updated {
            display: inline-block;
            background: #1e2630;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.82rem;
            color: #a0b4c8;
            border: 1px solid #2a3544;
            margin-bottom: 20px;
        }
        .last-updated i {
            color: #f0c040;
            margin-right: 6px;
        }
        .highlight-box {
            background: #1a222e;
            border-left: 5px solid #f0c040;
            padding: 20px 28px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #1a222e;
            padding: 24px 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a3544;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f0c040;
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c040;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #99aabc;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .interview-block {
            background: #121a26;
            border-radius: 14px;
            padding: 28px 30px;
            margin: 30px 0;
            border: 1px solid #2a3544;
            position: relative;
        }
        .interview-block::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: -14px;
            left: 20px;
            background: #0b0e14;
            padding: 0 10px;
        }
        .interview-block .speaker {
            color: #f0c040;
            font-weight: 700;
        }
        .interview-block .quote {
            font-style: italic;
            color: #cfd8e6;
            padding-left: 10px;
            border-left: 3px solid #f0c04044;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #141c28;
            border-radius: 12px;
            overflow: hidden;
        }
        .info-table th {
            background: #1e2a38;
            color: #f0c040;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .info-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #1e2a38;
            color: #c8d2e0;
        }
        .info-table tr:last-child td {
            border-bottom: none;
        }
        .info-table tr:hover td {
            background: #1a2533;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 50px 0 30px;
        }
        .interactive-card {
            background: #141c28;
            padding: 28px 30px;
            border-radius: 16px;
            border: 1px solid #2a3544;
            transition: border-color 0.2s;
        }
        .interactive-card:hover {
            border-color: #f0c04066;
        }
        .interactive-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #1e2a38;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interactive-card h3 i {
            color: #f0c040;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-size: 0.9rem;
            color: #a0b4c8;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #0b0e14;
            border: 1px solid #2a3544;
            border-radius: 8px;
            color: #e3e8ef;
            font-size: 0.95rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0c040;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        .btn {
            background: #f0c040;
            color: #0b0e14;
            font-weight: 700;
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: #f0c040;
            color: #0b0e14;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #3a4555;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f0c040;
        }
        .rating-stars .star {
            transition: color 0.15s;
        }
        friend-link {
            display: block;
            background: #141c28;
            padding: 28px 30px;
            border-radius: 16px;
            border: 1px solid #2a3544;
            margin: 40px 0 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 6px 16px 6px 0;
            color: #a0b4c8;
            font-size: 0.92rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #f0c040;
            text-decoration: none;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #f0c040;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        .site-footer {
            background: #0d121c;
            border-top: 3px solid #1e2a38;
            padding: 30px 0 20px;
            text-align: center;
            color: #667a8e;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            margin-top: 10px;
            font-size: 0.82rem;
            color: #4a5a6e;
        }
        @media (max-width: 900px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #141a22;
                padding: 16px 0 20px;
                border-top: 1px solid #2a3544;
                margin-top: 10px;
                gap: 4px;
            }
            .nav-bar a {
                padding: 10px 20px;
                width: 100%;
                text-align: left;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 0.8rem;
            }
            .container {
                padding: 0 14px;
            }
            .interview-block {
                padding: 20px 18px;
            }
            .interactive-card {
                padding: 20px 18px;
            }
            .info-table th,
            .info-table td {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .number {
                font-size: 1.6rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        .text-gold {
            color: #f0c040;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
