* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f6f9fc;
            color: #1a2a3a;
            line-height: 1.7;
            padding: 0;
        }
        a {
            color: #0d6b8a;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #023b4d;
            text-decoration: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5 {
            line-height: 1.3;
            margin: 1.8rem 0 0.8rem;
            font-weight: 650;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            color: #0b2b3b;
            border-left: 6px solid #0d6b8a;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.9rem;
            color: #123b4d;
            border-bottom: 2px solid #d0e4ed;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1a4a5e;
        }
        h4 {
            font-size: 1.15rem;
            color: #1f5a6e;
        }
        p {
            margin: 0.9rem 0;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #ffffff;
            box-shadow: 0 2px 12px rgba(0, 20, 30, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1120px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: #0b2b3b;
            letter-spacing: -0.02em;
            background: linear-gradient(145deg, #0d6b8a, #0b2b3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo i {
            -webkit-text-fill-color: #0d6b8a;
            margin-right: 6px;
        }
        nav {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            text-decoration: none;
            font-weight: 500;
            color: #1a3a4a;
            padding: 6px 12px;
            border-radius: 40px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            background: #e3f0f5;
            color: #0b2b3b;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #0b2b3b;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            background: #eaf2f7;
            padding: 10px 20px;
            font-size: 0.9rem;
            max-width: 1120px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #0d6b8a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #3a5a6a;
        }
        main {
            padding: 30px 0 50px;
        }
        .featured-img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 20, 30, 0.12);
            margin: 20px 0 30px;
        }
        .event-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 18px rgba(0, 20, 30, 0.06);
            border-left: 5px solid #0d6b8a;
            transition: transform 0.2s;
        }
        .event-card:hover {
            transform: translateY(-3px);
        }
        .event-card h3 {
            margin-top: 0;
        }
        .badge {
            display: inline-block;
            background: #0d6b8a;
            color: #fff;
            font-size: 0.75rem;
            padding: 2px 14px;
            border-radius: 40px;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        .badge-live {
            background: #d6312a;
            animation: pulse 1.8s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 18px 12px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2edf4;
        }
        .stat-item i {
            font-size: 2rem;
            color: #0d6b8a;
            margin-bottom: 6px;
        }
        .stat-item span {
            display: block;
            font-weight: 700;
            font-size: 1.5rem;
            color: #0b2b3b;
        }
        .stat-item small {
            color: #3a6a7a;
            font-size: 0.85rem;
        }
        .link-list {
            background: #eef6fa;
            border-radius: 16px;
            padding: 18px 24px;
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        .link-list a {
            font-weight: 500;
        }
        .form-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 36px 0;
            box-shadow: 0 4px 20px rgba(0, 20, 30, 0.06);
            border: 1px solid #dfeef5;
        }
        .form-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin: 16px 0;
        }
        .form-group label {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            color: #0b3b4b;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #cbdbe5;
            border-radius: 12px;
            font-size: 1rem;
            background: #fafdff;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0d6b8a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(13, 107, 138, 0.15);
        }
        .btn {
            background: #0d6b8a;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #094c63;
            transform: scale(0.98);
        }
        .btn-secondary {
            background: #e3f0f5;
            color: #0b2b3b;
        }
        .btn-secondary:hover {
            background: #cde0e8;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s;
        }
        .star-rating i.active {
            color: #f5b342;
        }
        footer {
            background: #0b2b3b;
            color: #d0e4ed;
            padding: 40px 20px 20px;
        }
        footer a {
            color: #8fc8dd;
        }
        footer a:hover {
            color: #ffffff;
        }
        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .footer-inner h4 {
            color: #ffffff;
            margin-top: 0;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid #1a4a5e;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                padding: 10px 16px;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 12px 0 8px;
                gap: 6px;
                border-top: 1px solid #dfeef5;
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .event-card {
                padding: 18px 16px;
            }
            .form-card {
                padding: 20px 16px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                padding: 8px 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .highlight {
            background: #fef9e7;
            padding: 0 4px;
            border-radius: 4px;
        }
        .quote {
            font-style: italic;
            background: #eef6fa;
            border-left: 4px solid #0d6b8a;
            padding: 16px 24px;
            margin: 20px 0;
            border-radius: 0 12px 12px 0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #3a6a7a;
            text-align: right;
            margin-top: 10px;
            border-top: 1px dashed #d0e4ed;
            padding-top: 12px;
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        th {
            background: #0d6b8a;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #e8f0f5;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .toast {
            background: #0b2b3b;
            color: #fff;
            padding: 12px 24px;
            border-radius: 40px;
            position: fixed;
            bottom: 24px;
            right: 24px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s, transform 0.3s;
            pointer-events: none;
            z-index: 999;
        }
        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }
