        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f8f9fc;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0057b3;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        a:hover {
            color: #e63946;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0b1a2e;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #e63946;
            padding-bottom: 0.25em;
        }
        h3 {
            font-size: 1.5rem;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.2rem;
            color: #2a4a6a;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
            color: #2d3748;
        }
        ul,
        ol {
            margin: 0.8em 0 1.4em 1.6em;
        }
        li {
            margin-bottom: 0.4em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .badge {
            display: inline-block;
            background: #e63946;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2em 0.9em;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .text-muted {
            color: #5a6a7a;
            font-size: 0.95rem;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .highlight-box {
            background: linear-gradient(145deg, #f0f4ff, #ffffff);
            border-left: 6px solid #e63946;
            padding: 1.6em 2em;
            border-radius: 12px;
            margin: 2em 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2em;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.8em;
        }
        @media(max-width:768px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 1.4em;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        .site-header {
            background: #0b1a2e;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(135deg, #f7c948, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            -webkit-text-fill-color: #aabbcc;
            display: block;
            font-weight: 400;
            letter-spacing: 0.4px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #dbe4ed;
            font-size: 0.88rem;
            font-weight: 500;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .main-nav a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .main-nav .nav-cta {
            background: #e63946;
            color: #fff;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
        }
        .main-nav .nav-cta:hover {
            background: #c42835;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
            border-radius: 6px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        @media(max-width:820px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #11243a;
                padding: 1.2rem 1rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.8rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 10px;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
        }
        .breadcrumb-wrap {
            background: #eff3f8;
            padding: 0.7rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin: 0;
            padding: 0;
            font-size: 0.85rem;
        }
        .breadcrumb li {
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #8899aa;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #2a5a8a;
        }
        .breadcrumb .current {
            color: #4a5a6a;
            font-weight: 500;
        }
        .hero-section {
            background: linear-gradient(135deg, #0b1a2e 0%, #1e3a5f 100%);
            color: #fff;
            padding: 3rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::after {
            content: "🏟️";
            font-size: 14rem;
            position: absolute;
            right: -4rem;
            bottom: -4rem;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero-section h1 {
            color: #fff;
            font-size: 2.8rem;
            margin: 0.2em 0 0.3em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .hero-section p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0.6em auto 1.2em;
        }
        .hero-section .badge {
            background: #f7c948;
            color: #0b1a2e;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 1.2rem;
        }
        .hero-meta i {
            margin-right: 0.3rem;
        }
        @media(max-width:768px) {
            .hero-section h1 {
                font-size: 1.9rem;
            }
            .hero-section p {
                font-size: 1rem;
            }
            .hero-section {
                padding: 2rem 0 2.8rem;
            }
        }
        .search-bar {
            display: flex;
            max-width: 560px;
            margin: 1.8rem auto 0;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            background: #fff;
        }
        .search-bar input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #1e2a3a;
        }
        .search-bar input::placeholder {
            color: #8899aa;
        }
        .search-bar button {
            background: #e63946;
            color: #fff;
            border: none;
            padding: 0.9rem 1.8rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-bar button:hover {
            background: #c42835;
        }
        .main-content {
            padding: 2.8rem 0 4rem;
        }
        .section-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 2.4rem;
            margin-bottom: 2.4rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf2f7;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .section-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }
        .section-card h2 {
            margin-top: 0.2em;
        }
        .seat-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            margin: 1.4em 0;
            border-radius: 12px;
            overflow: hidden;
        }
        .seat-table th {
            background: #0b1a2e;
            color: #fff;
            font-weight: 600;
            padding: 0.8rem 1.2rem;
            text-align: left;
        }
        .seat-table td {
            padding: 0.7rem 1.2rem;
            border-bottom: 1px solid #eef2f7;
            vertical-align: top;
        }
        .seat-table tr:nth-child(even) td {
            background: #f8fafc;
        }
        .seat-table tr:hover td {
            background: #edf4ff;
        }
        .rating-stars {
            color: #f7b731;
            letter-spacing: 2px;
            font-size: 1.1rem;
        }
        .insight-tip {
            background: #f0f7ff;
            border-radius: 14px;
            padding: 1.4em 1.8em;
            margin: 1.6em 0;
            border-left: 5px solid #0057b3;
        }
        .insight-tip i {
            color: #0057b3;
            margin-right: 0.5rem;
        }
        .img-wrapper {
            margin: 2em 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .img-wrapper figcaption {
            background: #f1f5f9;
            padding: 0.8rem 1.4rem;
            font-size: 0.9rem;
            color: #4a5a6a;
            font-style: italic;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2.4rem;
        }
        .comment-box,
        .score-box {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            border: 1px solid #e8edf4;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box textarea,
        .score-box select,
        .comment-box input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #dce3ec;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fafcff;
            transition: border 0.3s;
            margin-bottom: 0.8rem;
        }
        .comment-box textarea:focus,
        .score-box select:focus,
        .comment-box input:focus {
            border-color: #0057b3;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 87, 179, 0.12);
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #0b1a2e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #e63946;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.25);
        }
        .btn-outline {
            background: transparent;
            color: #0b1a2e;
            border: 2px solid #0b1a2e;
        }
        .btn-outline:hover {
            background: #0b1a2e;
            color: #fff;
        }
        @media(max-width:768px) {
            .interaction-area {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .section-card {
                padding: 1.4rem 1.2rem;
            }
            .seat-table {
                font-size: 0.8rem;
            }
            .seat-table th,
            .seat-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        friend-link {
            display: block;
            background: #0b1a2e;
            color: #dbe4ed;
            padding: 2.2rem 0 1.6rem;
            margin-top: 2rem;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem 2rem;
        }
        friend-link a {
            color: #b0c8e0;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: all 0.25s;
        }
        friend-link a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            text-decoration: none;
        }
        friend-link .fl-title {
            width: 100%;
            text-align: center;
            color: #8899aa;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.6rem;
        }
        .site-footer {
            background: #060f1a;
            color: #aabbcc;
            padding: 2.2rem 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 2px solid #1e3a5f;
        }
        .site-footer .copyright {
            margin-top: 0.4rem;
            color: #6a7a8a;
            font-size: 0.85rem;
        }
        .site-footer a {
            color: #b0c8e0;
        }
        .site-footer a:hover {
            color: #fff;
        }
        @media(max-width:480px) {
            .hero-meta {
                flex-direction: column;
                gap: 0.3rem;
                align-items: center;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 30px;
                margin-left: 10px;
                margin-right: 10px;
            }
            .search-bar button {
                border-radius: 0 0 30px 30px;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #1e3a5f;
            line-height: 1.8;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e63946;
            line-height: 1;
        }
