* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0d1a;
            color: #e8e8e8;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #d4a843;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f0d080;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0d0d1a 0%, #1a1a2e 100%);
            border-bottom: 2px solid #2a2a4a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #d4a843, #f0d080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 168, 67, 0.15);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
        }
        .nav-toggle-label {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4a843;
            padding: 4px 12px;
            border: 1px solid #2a2a4a;
            border-radius: 8px;
            user-select: none;
        }
        .nav-menu {
            display: flex;
            gap: 28px;
            align-items: center;
            list-style: none;
        }
        .nav-menu a {
            color: #c8c8d0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s;
        }
        .nav-menu a:hover {
            color: #d4a843;
            border-bottom-color: #d4a843;
            text-decoration: none;
        }
        .nav-menu .active {
            color: #d4a843;
            border-bottom-color: #d4a843;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8888a0;
        }
        .breadcrumb a {
            color: #8888a0;
        }
        .breadcrumb a:hover {
            color: #d4a843;
        }
        .breadcrumb span {
            color: #d4a843;
        }
        .hero-section {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 3.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f0d080, #d4a843, #b8922a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero-section .subtitle {
            font-size: 1.2rem;
            color: #b0b0c0;
            max-width: 750px;
            margin: 0 auto 24px;
        }
        .last-update {
            display: inline-block;
            background: #1a1a2e;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #a0a0b8;
            border: 1px solid #2a2a4a;
        }
        .last-update i {
            color: #d4a843;
            margin-right: 6px;
        }
        .content-section {
            padding: 36px 0;
            border-bottom: 1px solid #1e1e38;
        }
        .content-section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #f0d080;
            margin-bottom: 20px;
            border-left: 5px solid #d4a843;
            padding-left: 20px;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #e0c060;
            margin: 28px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d0b850;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            color: #d8d8e0;
        }
        .highlight {
            color: #f0d080;
            font-weight: 600;
        }
        .gold-text {
            color: #d4a843;
        }
        .stat-box {
            background: #1a1a2e;
            border: 1px solid #2a2a4a;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .stat-card {
            background: #12122a;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid #2a2a4a;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(212, 168, 67, 0.1);
            border-color: #d4a843;
        }
        .stat-card .number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #d4a843;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #a0a0b8;
            margin-top: 4px;
        }
        .feature-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .feature-list li {
            background: #1a1a2e;
            border-radius: 10px;
            padding: 18px 22px;
            border-left: 4px solid #d4a843;
            color: #d0d0e0;
            font-weight: 500;
        }
        .feature-list li i {
            color: #d4a843;
            margin-right: 10px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #2a2a4a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a2e;
            font-size: 0.95rem;
        }
        th {
            background: #2a2a4a;
            color: #f0d080;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-top: 1px solid #252545;
            color: #c8c8d8;
        }
        tr:hover td {
            background: #1e1e3a;
        }
        .interview-block {
            background: #12122a;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 24px 0;
            border: 1px solid #2a2a4a;
            position: relative;
        }
        .interview-block::before {
            content: '\201C';
            font-size: 4rem;
            color: #d4a843;
            position: absolute;
            top: 8px;
            left: 16px;
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        .interview-block .speaker {
            color: #d4a843;
            font-weight: 700;
            display: block;
            margin-top: 12px;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #1a1a2e;
            padding: 8px;
            border: 1px solid #2a2a4a;
        }
        .img-wrapper figcaption {
            padding: 12px 16px 6px;
            font-size: 0.9rem;
            color: #a0a0b8;
            text-align: center;
            font-style: italic;
        }
        .search-box {
            background: #1a1a2e;
            border-radius: 60px;
            padding: 4px 4px 4px 24px;
            display: flex;
            border: 1px solid #2a2a4a;
            max-width: 560px;
            margin: 20px auto;
            transition: border-color 0.3s;
        }
        .search-box:focus-within {
            border-color: #d4a843;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 14px 8px;
            font-size: 1rem;
            color: #e8e8e8;
            outline: none;
        }
        .search-box input::placeholder {
            color: #6a6a8a;
        }
        .search-box button {
            background: #d4a843;
            border: none;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            color: #0d0d1a;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #f0d080;
        }
        .rating-area {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 24px;
            background: #1a1a2e;
            border-radius: 16px;
            border: 1px solid #2a2a4a;
            margin: 20px 0;
        }
        .stars {
            display: flex;
            gap: 8px;
            font-size: 2.2rem;
            cursor: pointer;
            color: #4a4a6a;
            transition: color 0.2s;
        }
        .stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .stars i:hover,
        .stars i.hover {
            color: #f0d080;
            transform: scale(1.2);
        }
        .stars i.selected {
            color: #d4a843;
        }
        .rating-area .score-submit {
            background: #d4a843;
            border: none;
            border-radius: 30px;
            padding: 10px 36px;
            font-weight: 600;
            color: #0d0d1a;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.25s;
        }
        .rating-area .score-submit:hover {
            background: #f0d080;
        }
        .comment-form {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 28px 32px;
            border: 1px solid #2a2a4a;
            margin: 20px 0;
        }
        .comment-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid #2a2a4a;
            background: #0d0d1a;
            color: #e8e8e8;
            font-size: 0.95rem;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #d4a843;
            outline: none;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form .btn-submit {
            background: #d4a843;
            border: none;
            border-radius: 30px;
            padding: 12px 40px;
            font-weight: 600;
            color: #0d0d1a;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.25s;
            margin-top: 8px;
        }
        .comment-form .btn-submit:hover {
            background: #f0d080;
        }
        .site-footer {
            background: #0a0a18;
            border-top: 2px solid #1a1a2e;
            padding: 40px 0 28px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        .footer-inner .brand small {
            color: #8888a0;
            display: block;
            margin-top: 8px;
        }
        friend-link {
            display: block;
        }
        friend-link a {
            display: block;
            padding: 6px 0;
            color: #a0a0b8;
            border-bottom: 1px solid #1a1a2e;
        }
        friend-link a:hover {
            color: #d4a843;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid #1a1a2e;
            color: #6a6a8a;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #8888a0;
        }
        @media (max-width: 900px) {
            .nav-toggle-label {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 20px 0;
                border-radius: 12px;
                margin-top: 12px;
                border: 1px solid #2a2a4a;
                gap: 12px;
            }
            .nav-toggle:checked~.nav-menu {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .comment-form .form-row {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 540px) {
            .container {
                padding: 0 14px;
            }
            .hero-section h1 {
                font-size: 1.7rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
                padding: 12px;
                gap: 10px;
            }
            .search-box input {
                width: 100%;
                padding: 10px 16px;
                background: #12122a;
                border-radius: 30px;
            }
            .search-box button {
                width: 100%;
                padding: 12px;
            }
            .rating-area .stars {
                font-size: 1.8rem;
            }
            .interview-block {
                padding: 20px 18px;
            }
            .stat-box {
                padding: 16px 18px;
            }
            .comment-form {
                padding: 20px 18px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        html {
            scroll-padding-top: 80px;
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .gap-16 {
            gap: 16px;
        }
