* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f3ef;
            color: #1e2a2f;
            line-height: 1.75;
            padding: 0 1rem;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 32px 32px 0 0;
            overflow: hidden;
        }
        header {
            background: linear-gradient(145deg, #1e3b4a 0%, #0f2a36 100%);
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            border-bottom: 4px solid #f5b342;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5b342;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.06);
            padding: 0.3rem 1.2rem 0.3rem 0.8rem;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: 0.2s;
        }
        .my-logo i {
            font-size: 2rem;
            color: #f5d742;
        }
        .my-logo:hover {
            background: rgba(245, 179, 66, 0.15);
            transform: scale(1.02);
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 1.6rem;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .nav-list a {
            color: #e8edee;
            text-decoration: none;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list a:hover {
            border-bottom-color: #f5b342;
            color: #f5b342;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5b342;
            cursor: pointer;
            padding: 0 0.2rem;
        }
        .hamburger:focus {
            outline: 2px solid #f5b342;
            outline-offset: 4px;
            border-radius: 4px;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #0f2a36;
                padding: 1.6rem 2rem 2rem;
                border-radius: 0 0 24px 24px;
                box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
                gap: 1rem;
                z-index: 99;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrap {
                gap: 0.6rem;
            }
        }
        .breadcrumb {
            padding: 0.8rem 2rem;
            background: #f0ede8;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb a {
            color: #1e3b4a;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6b7a82;
        }
        .breadcrumb .sep {
            margin: 0 0.4rem;
            color: #b0a89b;
        }
        main {
            padding: 2rem 2rem 3rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0f2a36;
            margin-bottom: 0.25rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        .subhead {
            font-size: 1.1rem;
            color: #4f6570;
            margin-bottom: 2rem;
            border-left: 4px solid #f5b342;
            padding-left: 1.2rem;
        }
        .last-update {
            display: inline-block;
            background: #eef3f0;
            padding: 0.3rem 1.2rem;
            border-radius: 100px;
            font-size: 0.8rem;
            color: #3d5a68;
            margin-bottom: 1.8rem;
            font-weight: 500;
        }
        .last-update i {
            margin-right: 0.4rem;
        }
        .featured-img {
            width: 100%;
            max-width: 820px;
            border-radius: 24px;
            margin: 1.5rem 0 2.5rem;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
            display: block;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1a3b48;
            margin-top: 3.2rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #f0e5d8;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f4456;
            margin-top: 2.2rem;
            margin-bottom: 0.6rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2d5568;
            margin-top: 1.6rem;
            margin-bottom: 0.4rem;
        }
        p {
            margin-bottom: 1.1rem;
            font-size: 1rem;
            color: #1e2a2f;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            main {
                padding: 1.2rem 1rem 2.5rem;
            }
            header {
                padding: 0.8rem 1rem;
            }
            .breadcrumb {
                padding: 0.6rem 1rem;
                font-size: 0.75rem;
                flex-wrap: wrap;
            }
        }
        .card {
            background: #f9f7f4;
            border-radius: 20px;
            padding: 1.6rem;
            border: 1px solid #e7dfd6;
            transition: 0.2s;
        }
        .card:hover {
            border-color: #f5b342;
            box-shadow: 0 6px 16px rgba(245, 179, 66, 0.12);
        }
        .card h4 {
            margin-top: 0;
        }
        .highlight-box {
            background: #e6f0f0;
            border-left: 6px solid #f5b342;
            padding: 1.6rem 2rem;
            border-radius: 16px;
            margin: 2rem 0;
        }
        .btn {
            display: inline-block;
            background: #f5b342;
            color: #0f2a36;
            font-weight: 700;
            padding: 0.6rem 1.8rem;
            border-radius: 60px;
            text-decoration: none;
            transition: 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #e09e30;
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(245, 179, 66, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5b342;
            color: #1a3b48;
        }
        .btn-outline:hover {
            background: #f5b342;
            color: #0f2a36;
        }
        .search-block {
            background: #f0ede8;
            padding: 1.8rem 2rem;
            border-radius: 24px;
            margin: 2.8rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.2rem;
        }
        .search-block form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.6rem;
        }
        .search-block input[type="search"] {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d5ccc2;
            border-radius: 60px;
            font-size: 1rem;
            background: #fff;
            transition: 0.2s;
        }
        .search-block input[type="search"]:focus {
            border-color: #f5b342;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 179, 66, 0.2);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.8rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #faf8f5;
            border: 1px solid #e7dfd6;
            border-radius: 24px;
            padding: 1.8rem;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6cc;
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5b342;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 179, 66, 0.15);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc3b6;
            cursor: pointer;
            transition: 0.1s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        friend-link {
            display: block;
            padding: 1.6rem 2rem;
            background: #1e3b4a;
            color: #e8edee;
            border-radius: 16px 16px 0 0;
            margin-top: 2rem;
        }
        friend-link a {
            color: #f5b342;
            text-decoration: none;
            font-weight: 600;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #0f2a36;
            color: #bccfd8;
            padding: 1.6rem 2rem;
            text-align: center;
            font-size: 0.85rem;
            border-top: 2px solid #2a4a5a;
        }
        footer a {
            color: #f5b342;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        @media (max-width: 480px) {
            .search-block form {
                flex-direction: column;
            }
            .feedback-card input,
            .feedback-card textarea,
            .feedback-card select {
                font-size: 0.9rem;
            }
            .my-logo {
                font-size: 1.3rem;
                padding: 0.2rem 0.8rem 0.2rem 0.5rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .emoji-lg {
            font-size: 1.4em;
            margin-right: 0.2em;
        }
        .inline-code {
            background: #eef1f0;
            padding: 0.1rem 0.5rem;
            border-radius: 6px;
            font-family: monospace;
            font-size: 0.9em;
        }
        .episode-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.95rem;
            background: #faf8f5;
            border-radius: 16px;
            overflow: hidden;
        }
        .episode-table th {
            background: #1e3b4a;
            color: #f5f0e8;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .episode-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e7dfd6;
        }
        .episode-table tr:last-child td {
            border-bottom: none;
        }
        .episode-table tr:hover td {
            background: #f5f0ea;
        }
        @media (max-width: 600px) {
            .episode-table {
                font-size: 0.8rem;
            }
            .episode-table th,
            .episode-table td {
                padding: 0.5rem 0.6rem;
            }
        }
