body {
            background: #f4f8fb;
        }

        .hotel-card-custom {
            background: #fff;
            border-radius: 1.2rem;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
            padding: 2.5rem 2.5rem 2.5rem 2.5rem;
            margin: 2rem auto;
            max-width: 100%;
            width: 100%;
        }

        .hotel-img-wrap {
            overflow: hidden;
            margin-bottom: 1rem;
            position: relative;
            width: 100%;
        }

        .hotel-img-wrap img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .hotel-img-wrap .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            padding: 0.5rem 0.7rem;
            color: #fff;
            font-size: 2rem;
            border: none;
        }

        .hotel-title {
            font-size: 2.2rem;
            font-weight: bold;
            letter-spacing: 1px;
            margin-bottom: 0.2rem;
            text-transform: uppercase;
        }

        .hotel-rating {
            color: #ffc107;
            font-size: 1.3rem;
            margin-bottom: 0.2rem;
        }

        .hotel-meta {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 0.7rem;
        }

        .hotel-meta a {
            color: #007bff;
            text-decoration: none;
            margin-right: 0.7rem;
        }

        .hotel-meta i {
            margin-right: 0.3rem;
        }

        .hotel-desc {
            font-size: 1.08rem;
            color: #444;
            margin-bottom: 1rem;
            text-align: justify;
        }

        .hotel-map {
            width: 100%;
            height: 110px;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            border: 1px solid #e0e7ef;
        }

        .hotel-social {
            margin-bottom: 1.2rem;
        }

        .hotel-social a {
            color: #232323;
            font-size: 1.2rem;
            margin-right: 0.7rem;
            transition: color 0.2s;
        }

        .hotel-social a:hover {
            color: #007bff;
        }

        .facilities-title {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            color: #2bb673;
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 0.7rem;
            text-align: center;
            letter-spacing: 1px;
        }

        .facility-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            justify-content: center;
        }

        .facility-badge {
            background: linear-gradient(90deg, #f6fff8 60%, #e0f7ef 100%);
            border: 1px solid #d2f4e8;
            border-radius: 1.2rem;
            padding: 0.45rem 1.2rem;
            font-size: 1.08rem;
            color: #2bb673;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 0.2rem;
            box-shadow: 0 1px 4px rgba(31, 38, 135, 0.05);
            transition: background 0.2s, color 0.2s;
        }

        .facility-badge i {
            font-size: 1.2rem;
        }

        .facility-badge:hover {
            background: #2bb673;
            color: #fff;
        }

        .facility-badge i {
            font-size: 1.1rem;
        }

        .img-gallery-fixed {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 0.5rem;
            box-shadow: 0 1px 4px rgba(31, 38, 135, 0.07);
        }

        @media (max-width: 500px) {
            .hotel-card-custom {
                padding: 0.7rem 0.2rem 1.2rem 0.2rem;
            }

            .hotel-img-wrap img {
                height: 110px;
            }
        }
