        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0b3b6b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #c79a2e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0b1e33;
            margin-bottom: 1rem;
            line-height: 1.25;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0b2a4a;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #c79a2e;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #1a3a5a;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2a4a6a;
            margin-top: 1.4rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #1f2a3e;
        }
        strong {
            font-weight: 700;
            color: #0b1e33;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1e33 0%, #1a3a5a 100%);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f0d68a, #c79a2e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #c79a2e;
            font-size: 1.4rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
            display: block;
            letter-spacing: 0.05em;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.88);
            font-weight: 500;
            font-size: 0.92rem;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.25s, color 0.25s;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f0d68a;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .breadcrumb {
            background: #eef2f7;
            padding: 0.6rem 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #dce3ed;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #0b3b6b;
        }
        .breadcrumb span {
            color: #4a5a6a;
        }
        .breadcrumb .sep {
            color: #8a9aaa;
        }
        .hero {
            background: linear-gradient(145deg, #e8edf5, #d4dce8);
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 4px solid #c79a2e;
        }
        .hero h1 {
            margin-bottom: 0.5rem;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #2a4a6a;
            max-width: 780px;
            margin: 0 auto 0.8rem;
        }
        .hero .meta-info {
            font-size: 0.92rem;
            color: #4a5a6a;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem;
        }
        .hero .meta-info i {
            color: #c79a2e;
            margin-right: 0.3rem;
        }
        .search-section {
            background: #fff;
            padding: 1.6rem 0;
            border-bottom: 1px solid #dce3ed;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 620px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #ccd7e6;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c79a2e;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #0b2a4a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #1a3a5a;
            transform: scale(1.02);
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .main-content .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .featured-image-wrapper {
            margin: 1.8rem 0 2.2rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
            background: #eef2f7;
        }
        .featured-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        .featured-image-wrapper figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.88rem;
            color: #4a5a6a;
            background: #f4f7fc;
            border-top: 1px solid #dce3ed;
        }
        .seating-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .seating-table th {
            background: #0b2a4a;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .seating-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #eef2f7;
        }
        .seating-table tr:hover td {
            background: #f4f8ff;
        }
        .sidebar-module {
            background: #fff;
            border-radius: 10px;
            padding: 1.4rem 1.2rem;
            margin-bottom: 1.6rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8edf5;
        }
        .sidebar-module h4 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            color: #0b1e33;
            border-bottom: 2px solid #c79a2e;
            padding-bottom: 0.3rem;
        }
        .sidebar-module ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .sidebar-module li {
            padding: 0.35rem 0;
            border-bottom: 1px solid #f0f2f6;
        }
        .sidebar-module li:last-child {
            border-bottom: none;
        }
        .sidebar-module li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-module li a::before {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.65rem;
            color: #c79a2e;
        }
        .feedback-section {
            background: #fff;
            border-radius: 12px;
            padding: 2rem 1.8rem;
            margin-top: 3rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8edf5;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .feedback-form label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.2rem;
            color: #0b2a4a;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 0.6rem 0.8rem;
            border: 2px solid #dce3ed;
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
            background: #fafcff;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #c79a2e;
            outline: none;
        }
        .feedback-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-form .btn {
            padding: 0.65rem 1.8rem;
            background: #0b2a4a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-form .btn:hover {
            background: #1a3a5a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4a847;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #b8872e;
        }
        .site-footer {
            background: #0b1e33;
            color: rgba(255, 255, 255, 0.8);
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
            border-top: 4px solid #c79a2e;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h5 {
            color: #f0d68a;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.75);
        }
        .site-footer a:hover {
            color: #f0d68a;
        }
        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 1.4rem;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            padding: 0.6rem 0;
        }
        .friend-link a {
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-content .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar-module {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0.8rem;
                font-size: 1rem;
            }
            .hero {
                padding: 1.6rem 0 1.2rem;
            }
            .hero .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 0.3rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.6rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .seating-table {
                font-size: 0.82rem;
            }
            .seating-table th,
            .seating-table td {
                padding: 0.4rem 0.5rem;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .feedback-section {
                padding: 1.2rem 1rem;
            }
        }
        .text-gold {
            color: #c79a2e;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.6rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .highlight-box {
            background: #f0f6ff;
            border-left: 4px solid #c79a2e;
            padding: 1rem 1.4rem;
            border-radius: 0 8px 8px 0;
            margin: 1.4rem 0;
        }
        .insight-badge {
            display: inline-block;
            background: #c79a2e;
            color: #0b1e33;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            letter-spacing: 0.04em;
        }
