* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f6f0;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 28px;
            padding: 20px 24px 32px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1e1e1e;
            display: inline-block;
        }
        .my-logo span {
            color: #b45309;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #666;
            display: block;
            line-height: 1.2;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 12px 0 8px;
            border-bottom: 2px solid #eee;
            margin-bottom: 12px;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links li a:hover {
            border-bottom-color: #b45309;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1e1e1e;
            padding: 4px 8px;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            font-size: 0.85rem;
            padding: 8px 0 16px;
            color: #777;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b45309;
        }
        .breadcrumb span.sep {
            color: #bbb;
        }
        .search-wrap {
            display: flex;
            max-width: 480px;
            margin: 20px 0 24px;
            border: 1px solid #ddd;
            border-radius: 60px;
            overflow: hidden;
            background: #fafafa;
        }
        .search-wrap input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            background: transparent;
            outline: none;
        }
        .search-wrap button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0 24px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-wrap button:hover {
            background: #8a3f07;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 16px 0 8px;
            color: #1a1a1a;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0e6d6;
            color: #1e1e1e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #2d2d2d;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #3d3d3d;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: #2e2e2e;
        }
        .highlight {
            background: #fef3c7;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: #fff;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .episode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0 30px;
        }
        .episode-card {
            background: #fcfaf7;
            border-radius: 16px;
            padding: 18px 20px;
            border: 1px solid #eae4dc;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .episode-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .episode-card h4 {
            margin-top: 0;
            font-size: 1.1rem;
        }
        .episode-card .meta {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            gap: 12px;
            margin-bottom: 8px;
        }
        .episode-card .rating {
            color: #b45309;
            font-weight: 600;
        }
        .interact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin: 40px 0 32px;
            padding: 28px 24px;
            background: #faf8f4;
            border-radius: 24px;
            border: 1px solid #ece6dc;
        }
        .interact-box {
            flex: 1 1 280px;
        }
        .interact-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .interact-box form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .interact-box input,
        .interact-box textarea,
        .interact-box select {
            padding: 10px 14px;
            border: 1px solid #dcd4ca;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .interact-box input:focus,
        .interact-box textarea:focus {
            border-color: #b45309;
        }
        .interact-box textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interact-box button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .interact-box button:hover {
            background: #8a3f07;
        }
        .star-group {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #e0d6ca;
            cursor: pointer;
        }
        .star-group .star {
            transition: color 0.15s;
        }
        .star-group .star:hover,
        .star-group .star.active {
            color: #f59e0b;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            margin: 20px 0;
            padding: 16px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .related-links a {
            font-size: 0.92rem;
            background: #f5f1eb;
            padding: 4px 14px;
            border-radius: 40px;
            transition: background 0.2s;
        }
        .related-links a:hover {
            background: #e6dcd0;
            text-decoration: none;
        }
        friend-link {
            display: block;
            padding: 24px 0 12px;
            border-top: 2px solid #eee;
            margin-top: 32px;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #1e1e1e;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        friend-link .fl-list a {
            color: #555;
        }
        friend-link .fl-list a:hover {
            color: #b45309;
        }
        footer {
            margin-top: 32px;
            padding-top: 16px;
            border-top: 1px solid #eae4dc;
            font-size: 0.9rem;
            color: #777;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        footer .copyright {
            font-size: 0.85rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #999;
            text-align: right;
            margin-bottom: 4px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 24px;
                border-radius: 16px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 8px;
                padding: 12px 0 4px;
            }
            .nav-links li a {
                display: block;
                padding: 8px 0;
            }
            .hamburger {
                display: block;
            }
            .nav-toggle:checked~.nav-links {
                display: flex;
            }
            .search-wrap {
                max-width: 100%;
            }
            .interact-section {
                padding: 18px 14px;
            }
            .episode-grid {
                grid-template-columns: 1fr;
            }
            footer {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo small {
                font-size: 0.75rem;
            }
        }
        .schema-hidden {
            display: none;
        }
