        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.8;
            color: #1e1e2a;
            background: #faf9f6;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a5276;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #d35400;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0b2a3e 0%, #1a4b6e 100%);
            color: #fff;
            padding: 1rem 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;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9e54b, #f5b041);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .my-logo small {
            font-size: 0.6rem;
            font-weight: 400;
            -webkit-text-fill-color: #c0d8e8;
            color: #c0d8e8;
            letter-spacing: 1px;
        }
        .my-logo a {
            text-decoration: none;
            color: inherit;
            -webkit-text-fill-color: inherit;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8f0f8;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #f9e54b;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #999;
        }
        .breadcrumb a {
            color: #1a5276;
        }
        .breadcrumb .current {
            color: #8a6d3b;
            font-weight: 600;
        }
        main {
            padding: 2rem 0 3rem;
        }
        h1 {
            font-size: 2.4rem;
            line-height: 1.3;
            color: #0b2a3e;
            margin-bottom: 0.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            color: #1a4b6e;
            margin: 2.5rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 3px solid #f5b041;
            font-weight: 700;
        }
        h3 {
            font-size: 1.35rem;
            color: #2c3e50;
            margin: 1.8rem 0 0.6rem;
            font-weight: 600;
        }
        h4 {
            font-size: 1.1rem;
            color: #34495e;
            margin: 1.2rem 0 0.4rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        .last-updated {
            display: inline-block;
            background: #eef5f9;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #1a5276;
            margin-bottom: 1.5rem;
            border-left: 4px solid #f5b041;
        }
        .featured-image-wrap {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e8e2d8;
        }
        .featured-image-wrap img {
            width: 100%;
            min-height: 200px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            padding: 0.75rem 1.25rem;
            font-size: 0.85rem;
            color: #5d6d7e;
            background: #f7f4f0;
            font-style: italic;
        }
        .hotel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .hotel-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 1.25rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #ede9e3;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .hotel-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }
        .hotel-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #0b2a3e;
        }
        .hotel-card .price {
            font-size: 1.5rem;
            font-weight: 800;
            color: #d35400;
        }
        .hotel-card .rating {
            color: #f5a623;
            letter-spacing: 2px;
        }
        .hotel-card .badge {
            display: inline-block;
            background: #e8f0e8;
            color: #1e6b3e;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-weight: 600;
        }
        .link-group {
            background: #f4f1ec;
            border-left: 4px solid #f5b041;
            padding: 1.25rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .link-group ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .link-group li::before {
            content: "🔗 ";
            font-size: 0.8rem;
        }
        .search-section {
            background: linear-gradient(135deg, #eef5f9, #f7f4f0);
            padding: 2rem 1.5rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #ddd6cc;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d5d0c8;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #1a5276;
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.15);
        }
        .search-form button {
            background: #1a5276;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #0b2a3e;
            transform: scale(1.02);
        }
        .review-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede9e3;
        }
        .review-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem 2rem;
        }
        .review-item {
            padding: 1rem 0;
            border-bottom: 1px dashed #e0dad2;
        }
        .review-item .author {
            font-weight: 700;
            color: #0b2a3e;
        }
        .review-item .stars {
            color: #f5a623;
            letter-spacing: 2px;
        }
        .review-item .date {
            font-size: 0.8rem;
            color: #7f8c8d;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd6cc;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-family: inherit;
            transition: 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #1a5276;
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
        }
        .comment-form button {
            background: #f5b041;
            color: #1e1e2a;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover {
            background: #e67e22;
            transform: scale(1.02);
        }
        .score-widget {
            display: flex;
            align-items: center;
            gap: 1rem 2rem;
            flex-wrap: wrap;
            padding: 1rem 0;
        }
        .score-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #d5d0c8;
            cursor: pointer;
        }
        .score-stars .star {
            transition: 0.15s;
        }
        .score-stars .star.active {
            color: #f5a623;
        }
        .score-stars .star:hover {
            transform: scale(1.2);
            color: #f5a623;
        }
        .score-display {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a5276;
        }
        .faq-item {
            background: #fff;
            border: 1px solid #ede9e3;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 0.75rem;
            transition: 0.2s;
        }
        .faq-item:hover {
            border-color: #f5b041;
        }
        .faq-item h4 {
            margin: 0 0 0.3rem;
            color: #0b2a3e;
            cursor: pointer;
        }
        .faq-item p {
            margin: 0;
            color: #4a5a6a;
        }
        .site-footer {
            background: #0b2a3e;
            color: #d5e0e8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #b8d4e8;
        }
        .site-footer a:hover {
            color: #f9e54b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f5b041;
            margin-bottom: 0.8rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 0.4rem;
        }
        .copyright {
            border-top: 1px solid #1e4b6e;
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8aafc8;
        }
        friend-link {
            display: block;
            background: #0f344a;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #f5b041;
        }
        @media (max-width: 820px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0b2a3e;
                padding: 1rem 0;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1.5rem;
                width: 100%;
                text-align: center;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .review-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hotel-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            h1 {
                font-size: 1.5rem;
            }
            .score-stars {
                font-size: 1.6rem;
            }
        }
        .text-muted {
            color: #7f8c8d;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
