        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #e74c3c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0b0b1a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #c0392b;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            color: #34495e;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            padding: 1.8rem 2.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 0.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.6rem 0;
            border-bottom: 1px solid #e8e8e8;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1a1a2e;
            background: linear-gradient(145deg, #c0392b, #e74c3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #555;
            color: #555;
            background: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #1a1a2e;
            border-radius: 8px;
            font-size: 1.6rem;
            padding: 0.3rem 0.7rem;
            cursor: pointer;
            color: #1a1a2e;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0f0f0;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.8rem;
            align-items: center;
        }
        .main-nav a {
            padding: 0.3rem 0.7rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #1a1a2e;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #c0392b;
            color: #fff;
        }
        @media (max-width: 800px) {
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #fff;
                border-radius: 16px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
                padding: 1rem 0.6rem;
                margin-top: 0.8rem;
                border: 1px solid #ececec;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
                width: 100%;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0;
            margin: 0.2rem 0 0.8rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 500;
        }
        .search-section {
            display: flex;
            justify-content: center;
            margin: 1.2rem 0 1.8rem 0;
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 600px;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #ddd;
            background: #fff;
        }
        .search-form input[type="text"] {
            flex: 1;
            border: none;
            padding: 0.8rem 1.4rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
        }
        .search-form button {
            background: #c0392b;
            border: none;
            color: #fff;
            padding: 0 1.6rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #a93226;
        }
        .hero-figure {
            margin: 1.5rem 0 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #eef0f5;
        }
        .hero-figure img {
            width: 100%;
            object-fit: cover;
            max-height: 420px;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #555;
            background: #f4f5f9;
            font-style: italic;
        }
        .calendar-wrap {
            overflow-x: auto;
            margin: 1.5rem 0 2rem 0;
            border-radius: 12px;
            border: 1px solid #e6e6e6;
        }
        .calendar-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            font-size: 0.95rem;
        }
        .calendar-table th {
            background: #1a1a2e;
            color: #fff;
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .calendar-table td {
            padding: 0.85rem 1rem;
            border-bottom: 1px solid #ececec;
        }
        .calendar-table tr:nth-child(even) td {
            background: #fafbfe;
        }
        .calendar-table tr:hover td {
            background: #f0f2f8;
        }
        .calendar-table .round-badge {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            border-radius: 40px;
            padding: 0.1rem 0.9rem;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .feedback-card {
            background: #f7f8fc;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            border: 1px solid #eaeaea;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-card label {
            font-weight: 600;
            font-size: 0.9rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 1px solid #d0d0d0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #c0392b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .feedback-card .btn:hover {
            background: #a93226;
            transform: scale(1.01);
        }
        .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: 1.7rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f1c40f;
        }
        friend-link {
            display: block;
            margin: 2rem 0 1rem 0;
            padding: 1.2rem 1.5rem;
            background: #f2f4f8;
            border-radius: 14px;
            border: 1px solid #e2e2e2;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.7rem;
            color: #1a1a2e;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            background: #fff;
            border: 1px solid #d5d5d5;
            font-size: 0.9rem;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #c0392b;
            color: #fff;
            border-color: #c0392b;
            text-decoration: none;
        }
        .site-footer {
            border-top: 1px solid #e0e0e0;
            padding: 1.8rem 0 2.2rem 0;
            margin-top: 2.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #666;
        }
        .site-footer .copyright {
            font-weight: 500;
            color: #333;
            margin-top: 0.8rem;
        }
        .badge {
            display: inline-block;
            background: #e8e8f0;
            border-radius: 40px;
            padding: 0.1rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1a1a2e;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 1rem;
            background: #f0f0f6;
            padding: 0.2rem 1.2rem;
            border-radius: 30px;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .highlight-box {
            background: #fff6e5;
            border-left: 5px solid #e67e22;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box.green {
            background: #e8f8f0;
            border-left-color: #27ae60;
        }
        .highlight-box.blue {
            background: #eaf2fa;
            border-left-color: #2980b9;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 1.4rem 0;
        }
        @media (max-width: 640px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        .fa-ul {
            list-style: none;
            padding-left: 1.8rem;
        }
        .fa-ul li {
            position: relative;
            padding-left: 0.3rem;
        }
        .fa-ul li i {
            position: absolute;
            left: -1.6rem;
            top: 0.2rem;
            color: #c0392b;
        }
        .btt {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #1a1a2e;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            border: none;
            z-index: 999;
        }
        .btt:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }
        @media (max-width: 600px) {
            .btt {
                bottom: 1rem;
                right: 1rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
