:root {
            --primary-yellow: #ea1e1e;
            --light-blue: #bc1c1c;
            --bg-body: #faf6ed;
            --white: #ffffff;
            --text-gray: #653e3e;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background-color: #000000;
            line-height: 1.5;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 12px;
        }

        .auth-bar-white {
            background: #af5b5b;
            padding: 12px 0;
            border-bottom: 6px solid #7f0000;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .auth-container {
            display: flex;
            gap: 10px;
        }

        .btn-long {
            flex: 1;
            padding: 12px;
            border-radius: 6px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .btn-login {
            border: 2px solid #630000;
            color: #000000;
            background: linear-gradient(to bottom, #000000 0, #ff3939 50%, #ff3939 50%, #000000)
        }

        .btn-daftar {
            background: linear-gradient(to bottom, #000000 0, #ff3939 50%, #ff3939 50%, #000000);
            color: #eac1c1;
            border: 2px solid #630000;
        }

        .btn-login:hover {
            background: linear-gradient(to bottom, #ff3939 0, #141200 50%, #1b1900 50%, #ff3939);
            color: #e00505;
        }

        .btn-daftar:hover {
            background: linear-gradient(to bottom, #ff3939 0, #141200 50%, #1b1900 50%, #ff3939);
            border-color: var(--primary-yellow);
            transform: scale(1.02);
        }

        .main-content {
            margin: 20px 0;
        }

        .main-card {
            display: flex;
            flex-direction: column;
            background: #231900;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0px 4px 6px 5px rgb(0 0 0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .main-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(113, 109, 24, 0.15);
        }

        .left-content {
            width: 100%;
        }

        .banner-large {
            width: 100%;
            background: #f3ead7;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .banner-large img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            transition: transform 0.6s ease;
        }

        .banner-large:hover img {
            transform: scale(1.07);
        }

        .thumb-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5px;
            padding: 10px;
        }

        .thumb-item {
            aspect-ratio: 1/1;
            border-radius: 4px;
            overflow: hidden;
        }

        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .thumb-item:hover img {
            transform: scale(1.15);
        }

        /* Detail Produk */
        .right-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .tag {
            color: var(--light-blue);
            font-weight: bold;
            font-size: 11px;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .title {
            font-size: 24px;
            color: #ff8484;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .desc {
            color: #fffce5;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .price {
            font-size: 22px;
            font-weight: bold;
            color: #eb4747;
            margin-bottom: 20px;
        }

        .btn-book {
            background: linear-gradient(to bottom, #000000 0, #ff3939 50%, #ff3939 50%, #000000);
            color: #fffaf0;
            padding: 14px;
            border-radius: 6px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 20px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 0px #000000;
        }

        .btn-book:hover {
            transform: scale(1.03);
            background: linear-gradient(to bottom, #ff3939 0, #141200 50%, #1b1900 50%, #ff3939);
            box-shadow: 0 6px 15px rgb(0, 0, 0);
        }

        .btn-book:active {
            transform: scale(0.98);
            box-shadow: 0 2px 0px #a60000;
        }

        .social-menu {
            display: flex;
            gap: 12px;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #ebb0b0;
            justify-content: center;
        }

        .social-link {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fffaf0;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .facebook {
            background: #bc1c1c;
        }

        .twitter {
            background: #ab2525;
        }

        .youtube {
            background: #de1a1a;
        }

        .social-link:hover {
            opacity: 0.9;
            transform: translateY(-5px) rotate(10deg);
        }

        @media (min-width: 769px) {
            .main-card {
                flex-direction: row;
            }

            .left-content {
                flex: 1.2;
                border-right: 1px solid #ebb0b0;
            }

            .right-content {
                flex: 1;
                padding: 30px;
            }

            .title {
                font-size: 28px;
            }

            .banner-large img {
                height: 550px;
                object-fit: cover;
            }

            .social-menu {
                justify-content: flex-start;
            }
        }


        .basiclayout {
            margin: 0;
        }

        #special_actions {
            margin: 3px 15px 3px 0;
        }

        .ticker_space {
            margin-top: 3px !important;
        }

        #logo_no_globe_new_logo {
            top: 14px;
        }

        body.header_reshuffle #top {
            min-height: 50px !important;
            height: auto !important;
        }

        .nobg {
            background: #fff url("https://cf.bstatic.com/static/img/nobg_all_blue_iq/b700d9e3067c1186a3364012df4fe1c48ae6da44.png") repeat-x;
            background-position: 0 -50px;
        }

        .bypass_menu {
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .bypass_menu:focus-within {
            position: static;
            width: auto;
            height: auto;
            background: #fff;
            padding: 10px;
            z-index: 999;
            text-align: center;
            display: block;
        }


        .barabet-faq {
            padding: 50px 20px;
            background-color: #211600;
            border: 5px solid #cb3535;
            border-radius: 20px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-heading {
            text-align: center;
            color: #bc1c1c;
            font-size: 24px;
            margin-bottom: 30px;
            font-family: sans-serif;
            text-transform: uppercase;
        }

        .faq-wrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-card {
            background: #0a0800;
            border: 1px solid #ff0000;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 2px 5px 3px rgb(0 0 0);
        }

        .faq-card:hover {
            transform: scale(1.02);
            border-color: #ea1e1e;
            box-shadow: 0 10px 25px rgba(122, 120, 12, 0.12);
        }

        .faq-input {
            display: none;
        }

        .faq-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            font-weight: bold;
            cursor: pointer;
            color: #e39d9d;
            user-select: none;
        }

        .faq-label:hover {
            color: #bc1c1c;
        }

        .arrow {
            border: solid #ea1e1e;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 4px;
            transform: rotate(45deg);
            transition: 0.3s;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #b20000;
        }

        .faq-content p {
            padding: 20px 25px;
            margin: 0;
            line-height: 1.6;
            color: #0c0a00;
            border-top: 1px solid #d40202;
        }

        .faq-input:checked~.faq-content {
            max-height: 200px;
        }

        .faq-input:checked~.faq-label .arrow {
            transform: rotate(-135deg);
        }

        .faq-input:checked~.faq-card {
            border-color: #ea1e1e;
        }

        @media (max-width: 600px) {
            .faq-label {
                font-size: 14px;
                padding: 15px;
            }
        }


        [data-capla-component*="PropertyReview"],
        [data-capla-component*="GuestReviews"],
        [data-testid="PropertyReviewsRegionBlock"],
        .review_list_combined,
        .hp-reviews-slideshow,
        #guest-featured-reviews {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
            height: 0 !important;
            overflow: hidden !important;
            pointer-events: none !important;
        }

        .seo-reviews-container {
            font-family: 'Segoe UI', Arial, sans-serif;
            padding: 20px;
            background: #810000;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            clear: both;
        }

        .seo-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .seo-title {
            font-size: 24px;
            font-weight: bold;
            color: #ff0000;
        }

        .seo-btn-akses {
            background-color: #bc1c1c;
            color: #ea1e1e;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
        }

        .seo-score-block {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .seo-score-badge {
            background-color: #5a0000;
            color: #ea1e1e;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 20px;
            font-weight: bold;
        }

        .seo-score-text {
            color: #bc1c1c;
            font-weight: bold;
        }

        .seo-categories {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .seo-cat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff7e6;
            padding: 10px;
            border-radius: 4px;
        }

        .seo-cat-name {
            font-weight: 500;
            color: #653e3e;
        }

        .seo-cat-score {
            font-weight: bold;
            color: #431f1f;
        }

        .seo-topics {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .seo-topic-btn {
            border: 1px solid #e5abab;
            padding: 8px 15px;
            border-radius: 20px;
            background: #ffffff;
            cursor: pointer;
            font-size: 14px;
        }

        .seo-topic-btn:hover {
            background-color: #fff1cc;
        }


        .seo-review-wrapper {
            width: 100%;
            overflow: hidden;
            background: #8b1313;
            padding: 40px 0;
            border-top: 1px solid #ff0000;
            border-bottom: 1px solid #e5abab;
            position: relative;
        }

        .seo-review-track {
            display: flex;
            width: calc(350px * 10);
            animation: scroll-left 30s linear infinite;
        }

        .seo-review-card {
            width: 350px;
            background: #080600;
            border-radius: 12px;
            padding: 20px;
            margin: 0 15px;
            box-shadow: 0 4px 15px rgba(113, 109, 24, 0.05);
            flex-shrink: 0;
            border: 2px solid #ebb0b0;
        }

        .seo-review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .seo-user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .seo-user-avatar {
            width: 40px;
            height: 40px;
            background: #5a4b00;
            color: #ea1e1e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .seo-user-name {
            font-weight: bold;
            color: #fe0202;
            font-size: 14px;
        }

        .seo-user-score {
            background: #bc1c1c;
            color: #ea1e1e;
            padding: 4px 8px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 12px;
        }

        .seo-review-text {
            font-size: 14px;
            color: #cb6666;
            line-height: 1.6;
            font-style: italic;
        }

        .seo-review-date {
            font-size: 11px;
            color: #ffebd7;
            margin-top: 10px;
            display: block;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-350px * 5 - 150px));
            }

        }

        .seo-review-wrapper:hover .seo-review-track {
            animation-play-state: paused;
        }


        :root {
            --primary-yellow: #ea1e1e;
            --light-blue: #bc1c1c;
            --white: #ffffff;
            --text-gray: #653e3e;
            --container-width: 1100px;
        }

        .tiesto-main-wrapper {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .article-sync-card {
            background: #251500;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 6px 3px rgb(0 0 0);
            border: 5px solid #950000;
            transition: all 0.3s ease;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .article-sync-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(122, 120, 12, 0.12);
            border-color: var(--light-blue);
        }

        .article-sync-card h1 {
            color:  #ff8f8f;
            font-size: 26px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            width: 100%;
        }

        .article-sync-card h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-yellow);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .article-sync-card h2 {
            color: var(--primary-yellow);
            font-size: 22px;
            font-weight: 650;
            text-align: center;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 12px;
            width: 100%;
        }

        .article-sync-card h3 {
            color: var(--light-blue);
            font-size: 20px;
            font-weight: 600;
            text-align: left;
            margin-bottom: 1px;
            margin-top: 10px;
            position: relative;
            padding-bottom: 10px;
            width: 100%;
        }

        .article-sync-card:hover h2::after {
            width: 100px;
        }

        .article-sync-card p {
            color: #ededed;
            font-size: 16px;
            line-height: 1.8;
            text-align: justify;
            margin: 0;
            width: 100%;
        }

        @media (max-width: 768px) {
            .article-sync-card {
                padding: 25px 20px;
                border-radius: 12px;
            }

            .article-sync-card h2 {
                background: #ffe6e6;
                font-size: 20px;
            }

            .article-sync-card h3 {
                background: #fff7e6;
                font-size: 17px;
            }

            .article-sync-card p {
                font-size: 14px;
                text-align: left;
            }
        }

        .ca8e0b9533:before {
            background-color: #bc1c1c;
            border-color: #ea1e1e;
        }

        a.a89db95031 {
            color: #bc1c1c;
            font-weight: inherit;
            text-decoration: none;
            display: inline-flex;
            line-height: calc(var(--bui_rem_pixel) * 24);
            margin-block: calc(3 * var(--bui_rem_pixel) * -1);
            vertical-align: inherit;
        }
