        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f7f5f0;
            color: #1e2a35;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 1.2rem;
        }
        a {
            color: #c7442e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8f2c1b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 1.6rem 2rem 2.5rem;
            margin-top: 1.2rem;
            margin-bottom: 2.5rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1rem 1rem 1.8rem;
                border-radius: 18px;
                margin-top: 0.6rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e8e3da;
            margin-bottom: 1.2rem;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c7442e, #e07a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-block;
            line-height: 1.2;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #5a6a7a;
            display: block;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #1e2a35;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.08);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.6rem 1.4rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 0.95rem;
            color: #1e2a35;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #c7442e;
            color: #c7442e;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.8rem;
                border-top: 1px solid #e8e3da;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.05rem;
                padding: 0.4rem 0;
            }
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #6f7d8c;
            padding: 0.4rem 0 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb a {
            color: #6f7d8c;
        }
        .breadcrumb a:hover {
            color: #c7442e;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0.8rem 0 1.2rem;
            letter-spacing: -0.02em;
            color: #1a1f2a;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.8rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f0eae0;
            color: #1a1f2a;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 2rem 0 0.8rem;
            color: #24303e;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.4rem 0 0.5rem;
            color: #2d3b4a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #2d3b4a;
            border-left: 4px solid #c7442e;
            padding-left: 1.2rem;
            margin: 1.4rem 0 1.8rem;
        }
        strong {
            color: #1a1f2a;
        }
        .hero-img-wrap {
            margin: 1.8rem 0 2rem;
            border-radius: 20px;
            overflow: hidden;
            background: #e8e3da;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
        }
        .hero-img-wrap img {
            width: 100%;
            object-fit: cover;
            aspect-ratio: 1200 / 520;
        }
        .hero-img-wrap figcaption {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #5a6a7a;
            background: #f4f1eb;
            font-style: italic;
        }
        .episode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .episode-card {
            background: #faf8f4;
            border-radius: 18px;
            padding: 1.4rem 1.2rem 1.2rem;
            transition: transform 0.2s, box-shadow 0.25s;
            border: 1px solid #ece7df;
        }
        .episode-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
            border-color: #d9d0c2;
        }
        .episode-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border: none;
        }
        .episode-card .badge {
            display: inline-block;
            background: #c7442e;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            letter-spacing: 0.3px;
            margin-bottom: 0.6rem;
        }
        .episode-card .badge.green {
            background: #2a7d5a;
        }
        .episode-card .badge.gold {
            background: #b8862c;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
            border-radius: 14px;
            border: 1px solid #e8e3da;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 540px;
        }
        th {
            background: #1e2a35;
            color: #fff;
            font-weight: 600;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #ece7df;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf8f4;
        }
        .search-section {
            background: #f4f1eb;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.4rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 280px;
            gap: 0.6rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d9d0c2;
            border-radius: 60px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input:focus {
            border-color: #c7442e;
        }
        .search-form button {
            background: #c7442e;
            color: #fff;
            border: none;
            border-radius: 60px;
            padding: 0.7rem 1.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #9e3523;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.4rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
        }
        .comment-box,
        .score-box {
            background: #faf8f4;
            border-radius: 20px;
            padding: 1.6rem 1.8rem 2rem;
            border: 1px solid #ece7df;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            border: none;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d9d0c2;
            border-radius: 14px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 110px;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #c7442e;
            outline: none;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d9d0c2;
            border-radius: 60px;
            font-size: 0.95rem;
            margin: 0.5rem 0 0.8rem;
            background: #fff;
        }
        .comment-box input[type="text"]:focus {
            border-color: #c7442e;
            outline: none;
        }
        .btn {
            background: #c7442e;
            color: #fff;
            border: none;
            border-radius: 60px;
            padding: 0.7rem 2rem;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn:hover {
            background: #9e3523;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            font-size: 1.9rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d9d0c2;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .score-display {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 0.4rem;
            color: #2d3b4a;
        }
        friend-link {
            display: block;
            margin-top: 1.8rem;
            padding: 1.2rem 0 0.4rem;
            border-top: 2px solid #e8e3da;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
            color: #5a6a7a;
        }
        friend-link a:hover {
            color: #c7442e;
        }
        .site-footer {
            margin-top: 2.8rem;
            padding-top: 1.4rem;
            border-top: 2px solid #e8e3da;
            font-size: 0.9rem;
            color: #5a6a7a;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
        }
        .site-footer .copyright {
            font-weight: 400;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a8a9a;
            text-align: right;
            margin-top: 1.2rem;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .lead {
                font-size: 1rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 1.8rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .quote-block {
            background: #f4f1eb;
            border-left: 5px solid #c7442e;
            padding: 1.2rem 1.8rem;
            border-radius: 0 16px 16px 0;
            margin: 1.6rem 0;
            font-style: italic;
            color: #2d3b4a;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #1a1f2a;
        }
        .emoji-big {
            font-size: 1.5rem;
            line-height: 1;
        }
        .inline-icon {
            margin-right: 0.4rem;
        }
