        *,
        *::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, sans-serif;
            background: #0e0f14;
            color: #e8e9ed;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1200px;
            margin: 0 auto;
        }
        a {
            color: #f0c060;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd98c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #f5f2ed;
        }
        h1 {
            font-size: 2.4rem;
            margin: 24px 0 16px;
            border-left: 6px solid #f0c060;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.8rem;
            margin: 40px 0 12px;
            border-bottom: 2px solid #2a2c36;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.35rem;
            margin: 28px 0 10px;
            color: #f0c060;
        }
        h4 {
            font-size: 1.1rem;
            margin: 20px 0 8px;
            color: #cbd0da;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.02rem;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 6px;
        }
        .container {
            background: #15171f;
            border-radius: 24px;
            padding: 20px 24px 32px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            margin: 12px 0 32px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 10px;
            border-bottom: 1px solid #2a2c36;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c060, #d9a84a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            background: #f0c060;
            color: #0e0f14;
            border-radius: 50%;
            padding: 8px;
            font-size: 1.2rem;
            -webkit-text-fill-color: #0e0f14;
        }
        .my-logo a {
            text-decoration: none;
            background: none;
            -webkit-text-fill-color: inherit;
            color: inherit;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px 16px;
            flex-wrap: wrap;
            margin: 0;
        }
        .nav-list a {
            padding: 6px 12px;
            border-radius: 40px;
            background: transparent;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
            color: #cbd0da;
        }
        .nav-list a:hover {
            background: #2a2c36;
            color: #f0c060;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid #3d404c;
            color: #e8e9ed;
            font-size: 1.6rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #2a2c36;
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1b1d27;
                padding: 16px;
                border-radius: 16px;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .site-header {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.4rem;
            }
            .container {
                padding: 16px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 4px;
            margin: 0;
            font-size: 0.9rem;
            color: #8a8f9a;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #5a5e6a;
        }
        .breadcrumb a {
            color: #b0b5c0;
        }
        .breadcrumb a:hover {
            color: #f0c060;
        }
        .breadcrumb .current {
            color: #f0c060;
        }
        .search-section {
            margin: 24px 0 16px;
            display: flex;
            justify-content: center;
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 560px;
            background: #1e202b;
            border-radius: 60px;
            border: 1px solid #333644;
            overflow: hidden;
            transition: 0.2s;
        }
        .search-form:focus-within {
            border-color: #f0c060;
            box-shadow: 0 0 0 3px rgba(240, 192, 96, 0.2);
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 14px 20px;
            font-size: 1rem;
            color: #e8e9ed;
            outline: none;
        }
        .search-form input::placeholder {
            color: #6a6e7a;
        }
        .search-form button {
            background: #f0c060;
            border: none;
            padding: 0 22px;
            color: #0e0f14;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #ffd98c;
        }
        .rating-section {
            background: #1b1d27;
            border-radius: 20px;
            padding: 20px 24px;
            margin: 24px 0 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px 32px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444754;
            cursor: pointer;
            transition: 0.1s;
        }
        .rating-stars i {
            transition: 0.15s;
        }
        .rating-stars i.active,
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f0c060;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            transform: scale(1.15);
        }
        .rating-info {
            font-size: 1rem;
            color: #aab0bc;
        }
        .rating-info strong {
            color: #f0c060;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .rating-form select {
            background: #2a2c36;
            border: 1px solid #3d404c;
            color: #e8e9ed;
            padding: 10px 16px;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            cursor: pointer;
        }
        .rating-form button {
            background: #f0c060;
            border: none;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            color: #0e0f14;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-form button:hover {
            background: #ffd98c;
        }
        .comment-section {
            background: #1b1d27;
            border-radius: 20px;
            padding: 24px;
            margin: 28px 0;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .comment-form textarea {
            background: #242632;
            border: 1px solid #3d404c;
            border-radius: 16px;
            padding: 16px;
            font-size: 1rem;
            color: #e8e9ed;
            resize: vertical;
            min-height: 100px;
            outline: none;
            font-family: inherit;
            transition: 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #f0c060;
        }
        .comment-form input {
            background: #242632;
            border: 1px solid #3d404c;
            border-radius: 40px;
            padding: 12px 18px;
            font-size: 1rem;
            color: #e8e9ed;
            outline: none;
            transition: 0.2s;
        }
        .comment-form input:focus {
            border-color: #f0c060;
        }
        .comment-form .row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .comment-form .row input {
            flex: 1;
            min-width: 160px;
        }
        .comment-form button {
            background: #f0c060;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            color: #0e0f14;
            font-size: 1rem;
            cursor: pointer;
            align-self: flex-start;
            transition: 0.2s;
        }
        .comment-form button:hover {
            background: #ffd98c;
        }
        .comment-list {
            margin-top: 24px;
            border-top: 1px solid #2a2c36;
            padding-top: 16px;
        }
        .comment-item {
            padding: 14px 0;
            border-bottom: 1px solid #242632;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #8a8f9a;
            display: flex;
            gap: 12px;
        }
        .comment-item .meta strong {
            color: #f0c060;
        }
        .site-footer {
            border-top: 1px solid #2a2c36;
            padding: 28px 0 20px;
            margin-top: 32px;
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            background: #1b1d27;
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 14px;
            background: #242632;
            border-radius: 40px;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #2a2c36;
            color: #ffd98c;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #6a6e7a;
            padding: 16px 0 4px;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #b0b5c0;
        }
        .featured-figure {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1b1d27;
            padding: 8px;
        }
        .featured-figure figcaption {
            padding: 12px 16px;
            font-style: italic;
            color: #aab0bc;
            font-size: 0.95rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 28px;
            background: #1b1d27;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #2a2c36;
            color: #f0c060;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #242632;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #242632;
        }
        .last-update {
            font-size: 0.9rem;
            color: #8a8f9a;
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 16px 0 4px;
        }
        .highlight {
            color: #f0c060;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f0c060;
            color: #0e0f14;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .rating-section {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .rating-stars {
                justify-content: center;
            }
        }
        .anchor-offset {
            scroll-margin-top: 80px;
        }
        .tip-card {
            background: #1e202b;
            border-left: 4px solid #f0c060;
            padding: 16px 20px;
            border-radius: 0 16px 16px 0;
            margin: 16px 0;
        }
        .tip-card strong {
            color: #f0c060;
        }
        .interview-block {
            background: #1b1d27;
            border-radius: 20px;
            padding: 20px 24px;
            margin: 24px 0;
            border: 1px solid #2a2c36;
        }
        .interview-block .speaker {
            color: #f0c060;
            font-weight: 700;
        }
