        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0d17;
            color: #e8eaf0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd55;
            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: 700;
            line-height: 1.25;
            color: #f5f7fa;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #facc15;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #14182b, #1e233b);
            border-bottom: 2px solid #2a2f4a;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            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: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #facc15, #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(250, 204, 21, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #facc15;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #aab0c9;
            margin-left: 0.4rem;
            letter-spacing: 0.3px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: #c8cce0;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(250, 204, 21, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        .main-nav a.active {
            background: rgba(250, 204, 21, 0.18);
            color: #facc15;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8eaf0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 0.5rem 0;
            border-bottom: 1px solid #252a42;
            font-size: 0.85rem;
            color: #9aa0b8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #555b7a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #bcc0d6;
        }
        .breadcrumb a:hover {
            color: #facc15;
        }
        .breadcrumb .current {
            color: #facc15;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a1f35, #0b0d17);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 0.4rem;
        }
        .hero .tagline {
            font-size: 1.2rem;
            color: #b6bbd4;
            margin-bottom: 1.2rem;
        }
        .hero .tagline i {
            color: #facc15;
            margin: 0 0.3rem;
        }
        .search-section {
            margin: 1.5rem 0 2rem;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            background: #1e233b;
            border: 1px solid #2f3555;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-form:focus-within {
            border-color: #facc15;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.9rem 1.5rem;
            border: none;
            background: transparent;
            color: #e8eaf0;
            font-size: 1rem;
            outline: none;
        }
        .search-form input[type="text"]::placeholder {
            color: #6a7090;
        }
        .search-form button {
            background: #facc15;
            border: none;
            padding: 0 1.6rem;
            color: #0b0d17;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #ffdd44;
        }
        .main-content {
            flex: 1;
            padding: 0.5rem 0 3rem;
        }
        .featured-figure {
            margin: 2rem 0 2.5rem;
            text-align: center;
        }
        .featured-figure img {
            max-width: 100%;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            margin: 0 auto;
        }
        .featured-figure figcaption {
            margin-top: 0.7rem;
            font-size: 0.9rem;
            color: #8e94b0;
            font-style: italic;
        }
        .content-section {
            margin: 2.8rem 0;
        }
        .content-section p {
            max-width: 780px;
        }
        .insight-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .insight-card {
            background: #161b30;
            border-radius: 16px;
            padding: 1.6rem 1.4rem;
            border: 1px solid #262c48;
            transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
        }
        .insight-card:hover {
            transform: translateY(-4px);
            border-color: #facc15;
            box-shadow: 0 12px 30px rgba(250, 204, 21, 0.06);
        }
        .insight-card .icon {
            font-size: 2.2rem;
            color: #facc15;
            margin-bottom: 0.6rem;
        }
        .insight-card h4 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .insight-card .stat {
            font-size: 2rem;
            font-weight: 800;
            color: #facc15;
            line-height: 1.2;
        }
        .interview-block {
            background: #151a2e;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border-left: 4px solid #facc15;
        }
        .interview-block .interviewee {
            font-weight: 700;
            font-size: 1.2rem;
            color: #facc15;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.05rem;
            padding: 0.6rem 0 0.2rem 1.2rem;
            border-left: 2px solid #2f3555;
            color: #ccd0e6;
        }
        .rating-section {
            background: #14182b;
            border-radius: 20px;
            padding: 2rem 2rem 2.2rem;
            margin: 3rem 0;
            border: 1px solid #262c48;
            text-align: center;
        }
        .rating-stars {
            display: inline-flex;
            gap: 0.5rem;
            font-size: 2.6rem;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #3d4363;
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #facc15;
            transform: scale(1.05);
        }
        .rating-stars label i {
            pointer-events: none;
        }
        .rating-result {
            margin-top: 1rem;
            font-size: 1.1rem;
            color: #b6bbd4;
        }
        .rating-result .avg {
            font-weight: 700;
            color: #facc15;
            font-size: 1.3rem;
        }
        .comments-section {
            margin: 3rem 0;
            background: #14182b;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #262c48;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.9rem 1.2rem;
            border-radius: 12px;
            border: 1px solid #2f3555;
            background: #1a1f35;
            color: #e8eaf0;
            font-size: 1rem;
            transition: border-color 0.25s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #facc15;
            outline: none;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.08);
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #facc15;
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            font-weight: 700;
            color: #0b0d17;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .comment-form button:hover {
            background: #ffdd44;
            transform: scale(1.02);
        }
        .comment-list {
            margin-top: 1.8rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .comment-item {
            background: #1a1f35;
            padding: 1.2rem 1.5rem;
            border-radius: 14px;
            border-left: 3px solid #facc15;
        }
        .comment-item .author {
            font-weight: 700;
            color: #facc15;
        }
        .comment-item .time {
            font-size: 0.8rem;
            color: #6a7090;
            margin-left: 0.8rem;
        }
        .comment-item .text {
            margin-top: 0.4rem;
            color: #ccd0e6;
        }
        .faq-grid {
            display: grid;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .faq-item {
            background: #161b30;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            border: 1px solid #262c48;
        }
        .faq-item summary {
            font-weight: 600;
            cursor: pointer;
            color: #f5f7fa;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .faq-item summary i {
            color: #facc15;
            font-size: 1.1rem;
        }
        .faq-item summary::-webkit-details-marker {
            color: #facc15;
        }
        .faq-item .answer {
            margin-top: 0.8rem;
            padding-left: 1.8rem;
            color: #b6bbd4;
        }
        .site-footer {
            background: #0e1120;
            border-top: 2px solid #1e233b;
            padding: 2.5rem 0 1.8rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem 1.5rem;
        }
        .footer-col h4 {
            margin-top: 0;
            font-size: 1.1rem;
            color: #facc15;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.4rem;
        }
        .footer-col ul li a {
            color: #b0b5ce;
            font-size: 0.92rem;
        }
        .footer-col ul li a:hover {
            color: #facc15;
        }
        friend-link {
            display: block;
            margin-top: 1.8rem;
            padding-top: 1.5rem;
            border-top: 1px solid #1e233b;
        }
        friend-link .fl-head {
            font-weight: 700;
            color: #9aa0b8;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.4rem;
        }
        friend-link .fl-list a {
            color: #bcc0d6;
            font-size: 0.9rem;
            position: relative;
        }
        friend-link .fl-list a::after {
            content: "•";
            color: #3d4363;
            margin-left: 0.7rem;
        }
        friend-link .fl-list a:last-child::after {
            display: none;
        }
        friend-link .fl-list a:hover {
            color: #facc15;
        }
        .copyright {
            margin-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #5a6080;
            border-top: 1px solid #1a1f35;
            padding-top: 1.5rem;
        }
        .copyright strong {
            color: #8e94b0;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #14182b;
                border-radius: 16px;
                padding: 0.8rem 0.4rem;
                margin-top: 0.4rem;
                border: 1px solid #262c48;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-radius: 10px;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .rating-stars {
                font-size: 2rem;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            .rating-section,
            .comments-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
                padding-left: 0.7rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .search-form input[type="text"] {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1rem;
                font-size: 0.9rem;
            }
            .insight-cards {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.8rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            friend-link .fl-list {
                flex-direction: column;
                gap: 0.3rem 0;
            }
            friend-link .fl-list a::after {
                display: none;
            }
        }
        .badge {
            display: inline-block;
            background: #facc15;
            color: #0b0d17;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .highlight {
            color: #facc15;
            font-weight: 600;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #2f3555, transparent);
            margin: 2.5rem 0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6a7090;
            text-align: right;
            margin-top: 0.5rem;
            padding-top: 0.5rem;
            border-top: 1px solid #1e233b;
        }
        .last-updated i {
            margin-right: 0.3rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #161b30;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #262c48;
        }
        th {
            background: #1e233b;
            color: #facc15;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .inline-link {
            color: #facc15;
            font-weight: 500;
            border-bottom: 1px dotted rgba(250, 204, 21, 0.3);
        }
        .inline-link:hover {
            border-bottom-color: #facc15;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
