* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 20px 28px 32px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
            border-bottom: 2px solid #eef0f5;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e94560;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            color: #16213e;
            font-size: 2rem;
        }
        .my-logo span {
            color: #16213e;
            font-weight: 300;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #16213e;
            padding: 4px 12px;
        }
        .nav-menu {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            text-decoration: none;
            color: #1a1a2e;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 40px;
            transition: 0.2s;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: #e94560;
            color: #fff;
            outline: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #5a5a7a;
            width: 100%;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #b0b0c8;
        }
        .breadcrumb a {
            color: #e94560;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #16213e;
            margin: 28px 0 12px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #16213e;
            margin: 48px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #e94560;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a1a2e;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d2d44;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2d2d44;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8888aa;
            margin-bottom: 24px;
            display: block;
            border-left: 4px solid #e94560;
            padding-left: 14px;
            background: #f8f9fc;
            border-radius: 0 12px 12px 0;
            padding: 10px 16px;
        }
        .featured-image {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            border-radius: 20px;
            margin: 20px 0 28px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }
        .highlight {
            background: #fff3e0;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .btn {
            display: inline-block;
            background: #e94560;
            color: #fff;
            padding: 10px 26px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.25s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #c73650;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(233, 69, 96, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #e94560;
            color: #e94560;
        }
        .btn-outline:hover {
            background: #e94560;
            color: #fff;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #f8f9fc;
            border-radius: 20px;
            padding: 22px 20px;
            transition: 0.25s;
            border: 1px solid #eef0f5;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
            border-color: #e94560;
        }
        .card i {
            font-size: 2.2rem;
            color: #e94560;
            margin-bottom: 12px;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e94560;
        }
        .interview-box {
            background: linear-gradient(135deg, #f8f9fc 0%, #eef0f5 100%);
            border-radius: 20px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 6px solid #e94560;
        }
        .interview-box .quote {
            font-style: italic;
            font-size: 1.15rem;
            color: #2d2d44;
        }
        .comment-section,
        .score-section,
        .search-section {
            background: #f8f9fc;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 36px 0 24px;
            border: 1px solid #eef0f5;
        }
        .comment-section input,
        .comment-section textarea,
        .search-section input,
        .score-section select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 40px;
            border: 1px solid #d0d0e0;
            font-size: 1rem;
            margin-bottom: 12px;
            background: #fff;
            transition: 0.2s;
        }
        .comment-section textarea {
            border-radius: 20px;
            resize: vertical;
            min-height: 90px;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .search-section input:focus,
        .score-section select:focus {
            outline: none;
            border-color: #e94560;
            box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
        }
        .score-section select {
            max-width: 220px;
            appearance: auto;
        }
        .inline-link {
            color: #e94560;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: 0.2s;
        }
        .inline-link:hover {
            border-bottom-color: #e94560;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin: 20px 0;
            padding: 16px 20px;
            background: #f8f9fc;
            border-radius: 16px;
        }
        .link-list a {
            color: #16213e;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border-bottom: 1px solid transparent;
            transition: 0.2s;
        }
        .link-list a:hover {
            color: #e94560;
            border-bottom-color: #e94560;
        }
        .footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #eef0f5;
            font-size: 0.95rem;
            color: #5a5a7a;
        }
        .footer friend-link {
            display: block;
            margin: 12px 0 18px;
            font-weight: 500;
        }
        .footer friend-link a {
            color: #e94560;
            text-decoration: none;
            margin: 0 6px;
        }
        .footer friend-link a:hover {
            text-decoration: underline;
        }
        .footer .copyright {
            font-size: 0.85rem;
            color: #8888aa;
            margin-top: 8px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 24px;
                border-radius: 16px;
                margin-top: 12px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 14px 0 6px;
                border-top: 1px solid #eef0f5;
                margin-top: 10px;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 12px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .interview-box {
                padding: 16px 18px;
            }
            .comment-section,
            .score-section,
            .search-section {
                padding: 16px 18px;
            }
            .link-list {
                flex-direction: column;
                gap: 6px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .hidden-schema {
            display: none;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #eef0f5;
        }
        th {
            background: #16213e;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8f9fc;
        }
