* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0b0e;
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 1rem;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #121216;
            padding: 1.5rem 2rem;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
            border-radius: 20px;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.5rem 0;
            border-bottom: 2px solid #2a2a35;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5c542;
            text-shadow: 0 0 12px rgba(245, 197, 66, 0.25);
            transition: 0.2s;
        }
        .my-logo:hover {
            text-shadow: 0 0 24px rgba(245, 197, 66, 0.5);
            text-decoration: none;
        }
        .my-logo span {
            color: #e8e8e8;
            font-weight: 300;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5c542;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
        }
        .nav-menu {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 500;
            font-size: 1rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            width: 100%;
            padding: 1rem 0 0.5rem 0;
            font-size: 0.9rem;
            color: #aaa;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #888;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5c542;
            margin: 1.8rem 0 0.8rem 0;
            line-height: 1.2;
            border-left: 6px solid #f5c542;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0d060;
            margin: 2.8rem 0 1rem 0;
            border-bottom: 1px solid #2a2a3a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8c84a;
            margin: 2rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #daba3a;
            margin: 1.5rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #999;
            margin: 1rem 0 2rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .last-updated i {
            color: #f5c542;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1rem;
            background: #1c1c24;
            font-size: 0.9rem;
            color: #bbb;
            font-style: italic;
        }
        .highlight-box {
            background: #1a1a24;
            border-left: 6px solid #f5c542;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #1c1c26;
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #2a2a3a;
            transition: 0.2s;
        }
        .stat-card:hover {
            border-color: #f5c542;
            transform: translateY(-4px);
        }
        .stat-card i {
            font-size: 2.2rem;
            color: #f5c542;
            margin-bottom: 0.6rem;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
        }
        .stat-card .label {
            color: #aaa;
            font-size: 0.9rem;
        }
        .interviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .interview-card {
            background: #1a1a24;
            border-radius: 16px;
            padding: 1.8rem;
            border: 1px solid #2a2a3a;
            transition: 0.2s;
        }
        .interview-card:hover {
            border-color: #f5c542;
        }
        .interview-card .quote {
            font-style: italic;
            color: #ccc;
            margin: 1rem 0;
            padding-left: 1rem;
            border-left: 3px solid #f5c542;
        }
        .comment-section,
        .score-section,
        .search-section {
            background: #18181f;
            padding: 2rem;
            border-radius: 16px;
            margin: 2.5rem 0;
            border: 1px solid #2a2a3a;
        }
        .comment-section h3,
        .score-section h3,
        .search-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.3rem;
            font-weight: 500;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #0d0d12;
            border: 1px solid #333;
            border-radius: 8px;
            color: #eee;
            font-size: 1rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f5c542;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f5c542;
            color: #0b0b0e;
            border: none;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(245, 197, 66, 0.3);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1.5rem 0;
            padding: 1rem 0;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }
        .link-list a {
            font-size: 0.95rem;
        }
        .footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #2a2a35;
        }
        .footer .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding: 1.5rem 0 0.5rem 0;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-bottom: 1px solid #222;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: #aaa;
        }
        friend-link a {
            margin: 0 0.8rem 0 0.2rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem 1.2rem;
                margin-top: 0.8rem;
            }
            h1 {
                font-size: 2rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem;
                padding: 1rem 0 0.5rem 0;
                border-top: 1px solid #2a2a35;
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.4rem 0;
                border-bottom: none;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interviews-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .link-list {
                flex-direction: column;
                gap: 0.4rem;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0.8rem 0.8rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .comment-section,
            .score-section,
            .search-section {
                padding: 1.2rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0b0e;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a4a;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5c542;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #181820;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a3a;
        }
        th {
            background: #1f1f2b;
            color: #f5c542;
            font-weight: 600;
        }
        tr:hover td {
            background: #1e1e2a;
        }
