        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f9f7f4;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1400px;
            margin: 0 auto;
        }
        a {
            color: #b8432f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8c2e1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.25;
            color: #0f1a2b;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 4px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 12px;
            border-bottom: 2px solid #e4dcd4;
            position: relative;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1e2a3a;
            background: linear-gradient(135deg, #b8432f, #d96b4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.88;
        }
        .my-logo small {
            font-size: 0.6rem;
            font-weight: 400;
            display: block;
            -webkit-text-fill-color: #5a6a7a;
            color: #5a6a7a;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            color: #1e2a3a;
        }
        .main-nav li a:hover {
            background: #b8432f10;
            color: #b8432f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #1e2a3a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e4dcd4;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            padding: 12px 0 8px;
            color: #6a7a8a;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #b4a89a;
        }
        .breadcrumb a {
            color: #6a7a8a;
        }
        .breadcrumb a:hover {
            color: #b8432f;
        }
        .breadcrumb .active {
            color: #1e2a3a;
            font-weight: 600;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 20px 0 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e2;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 14px 18px;
            border: 2px solid #e4dcd4;
            border-radius: 40px;
            font-size: 1rem;
            background: #faf8f6;
            transition: border 0.25s, box-shadow 0.25s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8432f;
            box-shadow: 0 0 0 4px #b8432f18;
        }
        .search-form button {
            padding: 14px 32px;
            background: #b8432f;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9c3726;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 1.1rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 32px;
            margin: 28px 0;
        }
        @media (max-width: 920px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 28px 24px 40px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e2;
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 24px 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e2;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            border-left: 4px solid #b8432f;
            padding-left: 12px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0ebe6;
        }
        .sidebar ul li a {
            font-weight: 500;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 0.6rem;
            color: #0f1a2b;
        }
        h2 {
            font-size: 1.65rem;
            margin: 2rem 0 0.8rem;
            padding-bottom: 6px;
            border-bottom: 2px solid #e4dcd4;
        }
        h3 {
            font-size: 1.25rem;
            margin: 1.6rem 0 0.5rem;
            color: #1e2a3a;
        }
        h4 {
            font-size: 1.05rem;
            margin: 1.2rem 0 0.4rem;
            color: #2a3a4a;
        }
        .content-text p {
            margin-bottom: 1.1rem;
        }
        .content-text ul,
        .content-text ol {
            margin-bottom: 1.2rem;
        }
        .content-text li {
            margin-bottom: 0.3rem;
        }
        .highlight-box {
            background: #fdf8f5;
            border-left: 6px solid #b8432f;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
        }
        .featured-image figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #5a6a7a;
            background: #faf8f6;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
            font-style: italic;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .schedule-table thead {
            background: #1e2a3a;
            color: #fff;
        }
        .schedule-table th {
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
        }
        .schedule-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #ede8e2;
        }
        .schedule-table tbody tr:hover {
            background: #fdf8f5;
        }
        .schedule-table .status {
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            display: inline-block;
        }
        .status-live {
            background: #e74c3c18;
            color: #c0392b;
        }
        .status-upcoming {
            background: #3498db18;
            color: #2179b8;
        }
        .status-finished {
            background: #27ae6018;
            color: #1e8449;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 2.4rem 0 1.2rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e4dcd4;
        }
        @media (max-width: 640px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-form,
        .rating-form {
            background: #faf8f6;
            padding: 20px 22px;
            border-radius: 16px;
            border: 1px solid #ede8e2;
        }
        .comment-form h3,
        .rating-form h3 {
            margin-top: 0;
            font-size: 1.15rem;
            border-bottom: 1px solid #e4dcd4;
            padding-bottom: 10px;
            margin-bottom: 16px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e4dcd4;
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            background: #fff;
            transition: border 0.25s;
            outline: none;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #b8432f;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e4dcd4;
            border-radius: 12px;
            font-size: 1rem;
            margin-top: 10px;
            background: #fff;
            transition: border 0.25s;
            outline: none;
        }
        .comment-form input[type="text"]:focus {
            border-color: #b8432f;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 28px;
            background: #b8432f;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            margin-top: 14px;
            transition: background 0.25s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #9c3726;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
            transform: scale(1.08);
        }
        .rating-form select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e4dcd4;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            margin-bottom: 6px;
        }
        .rating-form select:focus {
            border-color: #b8432f;
        }
        .site-footer {
            margin: 40px 0 20px;
            padding: 32px 24px 20px;
            background: #1e2a3a;
            border-radius: 20px 20px 16px 16px;
            color: #d4dce4;
        }
        .site-footer a {
            color: #f0a08a;
        }
        .site-footer a:hover {
            color: #ffccb8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 28px;
            margin-bottom: 24px;
        }
        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-grid h4 {
            color: #fff;
            margin-bottom: 12px;
            font-size: 1.1rem;
            border-bottom: 1px solid #3a4a5a;
            padding-bottom: 6px;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            padding: 4px 0;
        }
        friend-link {
            display: block;
            padding: 14px 18px;
            background: #2a3a4a;
            border-radius: 12px;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        friend-link a {
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 18px;
            border-top: 1px solid #3a4a5a;
            font-size: 0.9rem;
            color: #a0aaba;
        }
        .last-updated {
            display: inline-block;
            background: #2a3a4a;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #d4dce4;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                padding: 16px 20px;
                border-radius: 0 0 16px 16px;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
                border: 1px solid #ede8e2;
                z-index: 99;
            }
            .main-nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .main-content {
                padding: 18px 14px 28px;
            }
            .sidebar {
                position: static;
                margin-top: 20px;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .schedule-table {
                font-size: 0.82rem;
            }
            .schedule-table th,
            .schedule-table td {
                padding: 8px 10px;
            }
            .search-section {
                padding: 18px 14px;
            }
            .search-form input[type="text"] {
                padding: 12px 14px;
                font-size: 0.95rem;
            }
            .search-form button {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.4rem;
            }
            .site-header {
                padding: 12px 0 8px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-muted {
            color: #6a7a8a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag {
            background: #f0ebe6;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #4a5a6a;
        }
