        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0d0f17;
            color: #e8eaf0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5b642;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid #f5b642;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.8rem;
            color: #f5d08a;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem;
            color: #e0c49a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: #141822;
            padding: 0.8rem 0;
            border-bottom: 2px solid #2a2f42;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5b642, #f7d97e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(245, 182, 66, 0.2);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #8a8fa8;
            background: none;
            color: #8a8fa8;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        nav a {
            color: #c8cce0;
            font-weight: 500;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #2a2f42;
            color: #f5b642;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f5b642;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumbs {
            background: #1a1e2b;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            color: #8a8fa8;
            border-bottom: 1px solid #2a2f42;
        }
        .breadcrumbs a {
            color: #b0b5cc;
        }
        .breadcrumbs a:hover {
            color: #f5b642;
        }
        .breadcrumbs span {
            margin: 0 0.3rem;
        }
        .hero-img {
            margin: 2rem 0 1.5rem;
            border-radius: 14px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1e2b;
            padding: 0.6rem;
        }
        .hero-img img {
            border-radius: 10px;
            width: 100%;
        }
        .hero-img figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #8a8fa8;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: #1a1e2b;
            border-radius: 12px;
            padding: 1.6rem 1.2rem;
            border: 1px solid #2a2f42;
            transition: transform 0.2s, border-color 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            border-color: #f5b642;
        }
        .feature-card i {
            font-size: 2.2rem;
            color: #f5b642;
            margin-bottom: 0.6rem;
        }
        .feature-card h3 {
            margin-top: 0.2rem;
            color: #fff;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #1a1e2b;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2f42;
        }
        .data-table th {
            background: #2a2f42;
            color: #f5b642;
            font-weight: 600;
        }
        .data-table tr:hover {
            background: #22273a;
        }
        .interview-block {
            background: #1a1e2b;
            border-left: 4px solid #f5b642;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 2rem 0;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #f5b642;
        }
        .comment-section,
        .score-section,
        .search-section {
            background: #1a1e2b;
            border-radius: 12px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2f42;
        }
        .comment-section h2,
        .score-section h2,
        .search-section h2 {
            border-bottom: none;
            margin-top: 0;
        }
        .comment-section form,
        .score-section form,
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-section input,
        .comment-section textarea,
        .score-section input,
        .score-section select,
        .search-section input {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3f55;
            background: #0d0f17;
            color: #e8eaf0;
            font-size: 1rem;
        }
        .comment-section textarea {
            flex-basis: 100%;
            min-height: 80px;
            resize: vertical;
        }
        .comment-section button,
        .score-section button,
        .search-section button {
            background: #f5b642;
            color: #0d0f17;
            font-weight: 700;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
        }
        .comment-section button:hover,
        .score-section button:hover,
        .search-section button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        footer {
            background: #10131e;
            border-top: 2px solid #2a2f42;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-grid h4 {
            color: #f5b642;
            margin-bottom: 0.8rem;
        }
        .footer-grid a {
            display: block;
            padding: 0.2rem 0;
            color: #b0b5cc;
        }
        .footer-grid a:hover {
            color: #f5b642;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2a2f42;
            font-size: 0.9rem;
            color: #6a6f88;
        }
        .copyright strong {
            color: #b0b5cc;
        }
        friend-link {
            display: block;
            background: #1a1e2b;
            border-radius: 10px;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0 0.5rem;
            border: 1px solid #2a2f42;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            color: #c8cce0;
        }
        friend-link a:hover {
            color: #f5b642;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-weight: 700;
            color: #f5b642;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #141822;
                padding: 1rem 0;
                border-top: 1px solid #2a2f42;
                margin-top: 0.8rem;
            }
            #nav-toggle:checked~nav {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .interview-block {
                padding: 1rem 1.2rem;
            }
            .comment-section,
            .score-section,
            .search-section {
                padding: 1.2rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
                font-size: 0.85rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .breadcrumbs {
                font-size: 0.75rem;
            }
        }
        .text-highlight {
            color: #f5b642;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f5b642;
            color: #0d0f17;
            padding: 0.1rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #f5b642, transparent);
            margin: 2.5rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a8fa8;
            text-align: right;
            margin-top: 2rem;
            border-top: 1px solid #2a2f42;
            padding-top: 1rem;
        }
