@import url(mainstyle.css);

*{
    scroll-behavior: smooth;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;  
}
.btn-close {
    background-image: unset;
}
a{
    color: inherit;
    text-decoration: none;
}

[data-qivnora-theme="dark"] [data-logo="dark"],
[data-qivnora-theme="light"] [data-logo="light"] {
    display: block;
}

[data-qivnora-theme="dark"] [data-logo="light"],
[data-qivnora-theme="light"] [data-logo="dark"] {
    display: none;
}


/* ============================================ header css =================================================== */
header.fix{
    background-color: var(--head-bg);
}
header.fix .nav-link{
    color: var(--nav-text);
}


header.fix img[data-item="light"] {
    display: none;
}

header img[data-item="dark"] {
    display: none;
}
header.fix img[data-item="dark"] {
    display: block;
}

.nav-link{
    color: var(--nav-text);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    padding: 0px !important;
    text-transform: uppercase;
    position: relative;
}
.nav-link:focus{
    color: var(--nav-text) !important;
}
.nav-item.active .nav-link, .nav-item:hover .nav-link{
    color: var(--prime-text);    
    border-bottom: 1px solid var(--dark-bg);
}
::placeholder{
    color: var(--input-text) !important;
    /* opacity: 0.5 !important; */
}

.nav-link::after{
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--head-bg);
    position: absolute;
    bottom: 0;
    left: 0%;
    transition: 1s ease;
}
.nav-link:hover::after{
    width: 100%;
    left: 0;
}

.head-content{
    width: 670px;
    margin: auto;
    max-width: 100%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 70px !important;
}

.head-content2{
    width: 500px;
    max-width: 100%;
    text-align: start;
    text-transform: capitalize;
    margin-bottom: 30px !important;
}

.theme-btn{
    min-width: 45px;
    min-height: 45px;
}

.icons-bg{
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--icon-text);
    background-color: var(--prime-bg);
}
/* banner section  */
/* ======================================= Banner Section ========================================= */
.banner-content {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('../../assets/images/banner1.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 900px;
    display: flex;
    align-items: center;
}
.banner-main{
    max-width: 800px;
    width: 100%;
    position: absolute;
    padding: 20px;
}
@media(max-width: 992px){
    .banner-content {
        min-height: 700px;
    } 
}

@media(max-width: 575px){
    .banner-content {
        min-height: 600px;
    } 
}

@media(max-width: 555px){
    .banner-btn{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .me-4{
        margin-right: 0px !important;
    }
}

.service-card img , .team-card img{
    max-height: 450px;
}


/* rating */
.star-rating {
  display: inline-block;
  font-size: 1.5rem;
  cursor: pointer;
}

.star {
  position: relative;
  display: inline-block;
  color: var(--star-text) !important;
}

.star:before {
  content: '★';
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  color: gold;
}

.star.filled:before {
  width: 100%;
}

.star.half:before {
  width: 50%;
}

[data-qivnora-theme="dark"] {
    .design-icon{
        filter: invert(1);
    }
}

.contact-card svg{
    color: var(--prime-text) !important;
}

.contact-card h3{
    color: var(--prime-text) !important;
}

.contact-card p{
    color: var(--para-alt-text) !important;
}
.contact-card:hover{
    background-color: var(--prime-bg) !important;
}
.contact-card:hover svg{
    color: var(--white-text) !important;
}
.contact-card:hover h3{
    color: var(--white-text) !important;
}
.contact-card:hover p{
    color: var(--white-text) !important;
}

.contact-card:hover img{
        filter: invert(1);
}

#backtotop {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    width: 50px !important;
    min-width: unset;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center; 
}
#backtotop.show {
    opacity: 1;
    visibility: visible;
} 

.error{
    color: red;
}
#newsletter {
    position: relative;
}
#newsletter div.error{
    position: absolute;
    bottom: -25px;
}

/* ========================= Games Section ========================= */

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--prime-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.game-card img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

/* Mobile tuning */
@media (max-width: 575px) {
    .game-card {
        border-radius: 14px;
        padding: 8px;
    }
}

/* Games section spacing fix */
#games {
    padding-top: 120px;
    padding-bottom: 100px;
}

/* Headings spacing consistency */
#games .head-content {
    margin-bottom: 60px !important;
}

/* Mobile spacing */
@media (max-width: 768px) {
    #games {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    #games .head-content {
        margin-bottom: 40px !important;
    }
}

/* Popular Games images fix */
.game-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Bonuses section elements */

.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--prime-text);
    border-bottom: 2px solid var(--prime-text);
    padding-bottom: 4px;
}

.section-label.alt {
    color: var(--head-text);
    border-color: var(--prime-border);
}

.info-box {
    padding: 16px;
    border-left: 4px solid var(--prime-text);
    background: rgba(0, 0, 0, 0.03);
}

.bonus-highlight {
    padding: 16px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.02);
}

/* ================= Bonus Promo Banner ================= */

.bonus-promo-banner {
    position: relative;
    padding: 140px 0;
    background-image: url('/mainfiles/assets/images/bonus-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.bonus-promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.bonus-promo-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .bonus-promo-banner {
        padding: 100px 0;
    }
}

/* Games section decorative elements */
.content-divider {
    width: 80px;
    height: 3px;
    background-color: var(--prime-text);
}

.games-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--prime-text);
    border-left: 3px solid var(--prime-text);
    padding-left: 10px;
    margin-bottom: 12px;
}

.games-tag.alt {
    color: var(--head-text);
    border-color: var(--prime-border);
}

.games-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--prime-text);
    border-left: 3px solid var(--prime-text);
    padding-left: 10px;
    margin-bottom: 12px;
}

.games-tag.alt {
    color: var(--head-text);
    border-color: var(--prime-border);
}

.games-highlight {
    padding: 18px 20px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--prime-text);
}

.games-highlight-lg {
    margin: 35px 0 40px;
    padding: 24px 26px;
    background: rgba(0, 0, 0, 0.04);
}
.games-list {
    list-style: none;
    padding-left: 0;
}

.games-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.games-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--prime-text);
    border-radius: 50%;
}
.games-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--prime-text);
    border-left: 3px solid var(--prime-text);
    padding-left: 10px;
    margin-bottom: 12px;
}

.games-tag.alt {
    color: var(--head-text);
    border-color: var(--prime-border);
}

.games-highlight {
    padding: 18px 20px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--prime-text);
}

.games-highlight-lg {
    padding: 24px 26px;
    margin: 35px 0 40px;
}

.games-list {
    list-style: none;
    padding-left: 0;
}

.games-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.games-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--prime-text);
    border-radius: 50%;
}

/* Payment tables */
.payment-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-tab {
    padding: 10px 22px;
    border: 1px solid var(--prime-border);
    background: transparent;
    font-weight: 600;
    cursor: pointer;
}

.payment-tab.active {
    background: var(--prime-text);
    color: #fff;
}

.payment-table-wrapper {
    max-width: 760px;
}

.payment-table {
    display: none;
}

.payment-table.active {
    display: block;
}

.payment-table table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table th,
.payment-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--prime-border);
    text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
    .payment-table-wrapper {
        max-width: 100%;
        overflow-x: auto;
    }
}

/* Online Casino Hero Banner */
.online-casino-hero {
    position: relative;
    padding: 160px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay  */
.online-casino-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.online-casino-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.online-casino-content h1,
.online-casino-content p {
    color: #ffffff;
}


/* ========================= About Resort Section ========================= */

.about-resort-section {
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.12), transparent 35%),
        var(--body-bg);
    color: var(--para-text);
}

.about-resort-section h2,
.about-resort-section h3,
.about-resort-section h4,
.about-resort-section h5 {
    color: var(--head-text);
}

.about-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--head-text);
}

.about-resort-section p {
    line-height: 1.75;
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--prime-border);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.about-image-wrap img {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.about-image-badge strong,
.about-image-badge span {
    display: block;
}

.about-image-badge span {
    margin-top: 4px;
    opacity: 0.85;
}

.about-info-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.about-info-card i {
    font-size: 34px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.about-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-info-card p {
    margin-bottom: 0;
}

.about-feature-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.about-text-panel,
.about-highlight-box {
    padding: 32px;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
}

.about-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.about-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.about-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.about-mini-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.about-mini-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.about-mini-item i {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-mini-item h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.about-mini-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.about-note {
    padding: 18px 22px;
    border-left: 4px solid var(--prime-text);
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-image-wrap img {
        min-height: 360px;
    }

    .about-feature-panel {
        padding: 18px;
    }

    .about-text-panel,
    .about-highlight-box {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .about-image-wrap img {
        min-height: 280px;
    }

    .about-image-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .about-info-card {
        padding: 22px;
    }
}

/* ========================= Casino Floor Overview ========================= */

.casino-overview-section {
    background:
        radial-gradient(circle at top right, rgba(212, 166, 74, 0.12), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.casino-overview-section h2,
.casino-overview-section h3,
.casino-overview-section h4 {
    color: var(--head-text);
}

.casino-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--head-text);
}

.casino-overview-section p {
    line-height: 1.75;
}

.casino-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--prime-border);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.casino-image-wrap img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.casino-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.casino-image-caption strong,
.casino-image-caption span {
    display: block;
}

.casino-image-caption span {
    margin-top: 4px;
    opacity: 0.85;
}

.casino-stat-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.casino-stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.casino-stat-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.casino-stat-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.casino-stat-card p {
    margin-bottom: 0;
}

.casino-detail-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.casino-detail-box {
    padding: 32px;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
}

.casino-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.casino-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.casino-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.casino-service-list {
    margin-top: 22px;
}

.casino-service-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.casino-service-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.casino-service-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.casino-service-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.casino-service-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.casino-new-visitor {
    padding: 32px;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
}

.visitor-tip-card {
    height: 100%;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.visitor-tip-card strong,
.visitor-tip-card span {
    display: block;
}

.visitor-tip-card strong {
    color: var(--prime-text);
    font-size: 16px;
    margin-bottom: 8px;
}

.visitor-tip-card span {
    color: var(--para-text);
    line-height: 1.5;
}

.casino-floor-note {
    padding: 18px 22px;
    border-left: 4px solid var(--prime-text);
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .casino-image-wrap img {
        min-height: 340px;
    }

    .casino-detail-panel {
        padding: 18px;
    }

    .casino-detail-box,
    .casino-new-visitor {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .casino-image-wrap img {
        min-height: 260px;
    }

    .casino-image-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .casino-stat-card {
        padding: 22px;
    }

    .casino-service-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================= Slot Machines Section ========================= */

.slots-section {
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.12), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.slots-section h2,
.slots-section h3 {
    color: var(--head-text);
}

.slots-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.slots-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.slots-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.slots-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.slots-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.slots-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.slots-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.slots-content-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.slots-text-box {
    padding: 32px;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
}

.slots-text-box p {
    line-height: 1.75;
}

.slots-game-list {
    list-style: none;
    padding-left: 0;
    margin: 22px 0 0;
    columns: 2;
    column-gap: 28px;
}

.slots-game-list li {
    position: relative;
    break-inside: avoid;
    padding-left: 26px;
    margin-bottom: 12px;
    line-height: 1.55;
}

.slots-game-list li::before {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
    font-size: 13px;
}

.slots-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.slots-feature-block {
    padding: 30px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.slots-feature-block p {
    margin-bottom: 0;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .slots-content-panel {
        padding: 18px;
    }

    .slots-text-box,
    .slots-feature-block {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .slots-bottom-grid {
        grid-template-columns: 1fr;
    }

    .slots-game-list {
        columns: 1;
    }
}

@media (max-width: 575px) {
    .slots-card {
        padding: 22px;
    }
}


/* ========================= Table Games Section ========================= */

.table-games-section {
    background:
        radial-gradient(circle at top right, rgba(212, 166, 74, 0.12), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.table-games-section h2,
.table-games-section h3,
.table-games-section h4 {
    color: var(--head-text);
}

.table-games-header {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.table-games-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.table-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.table-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.table-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.table-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.table-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.table-games-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.table-text-box {
    padding: 32px;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
}

.table-text-box p {
    line-height: 1.75;
}

.table-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.table-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.table-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.table-choice-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.table-choice-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.table-choice-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.table-choice-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.table-choice-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.table-format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.table-format-block {
    padding: 30px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.table-format-block i {
    font-size: 34px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.table-format-block h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.table-format-block p {
    margin-bottom: 0;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .table-games-panel {
        padding: 18px;
    }

    .table-text-box,
    .table-format-block {
        padding: 24px;
    }

    .table-format-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .table-card {
        padding: 22px;
    }

    .table-choice-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================= Electronic Table Games Section ========================= */

.etg-section {
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.12), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.etg-section h2,
.etg-section h3,
.etg-section h4 {
    color: var(--head-text);
}

.etg-header {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.etg-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.etg-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--prime-border);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.etg-image-wrap img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.etg-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.etg-image-caption strong,
.etg-image-caption span {
    display: block;
}

.etg-image-caption span {
    margin-top: 4px;
    opacity: 0.85;
}

.etg-intro-box {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
    height: 100%;
}

.etg-intro-box p {
    line-height: 1.75;
}

.etg-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.etg-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.etg-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.etg-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.etg-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.etg-main-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.etg-text-box {
    padding: 32px;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
}

.etg-text-box p {
    line-height: 1.75;
}

.etg-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.etg-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.etg-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.etg-compare-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.etg-compare-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.etg-compare-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.etg-compare-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.etg-compare-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.etg-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.etg-feature-block {
    padding: 30px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.etg-feature-block p {
    margin-bottom: 0;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .etg-image-wrap img {
        min-height: 320px;
    }

    .etg-intro-box,
    .etg-text-box,
    .etg-feature-block {
        padding: 24px;
    }

    .etg-main-panel {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .etg-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .etg-image-wrap img {
        min-height: 250px;
    }

    .etg-image-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .etg-card {
        padding: 22px;
    }

    .etg-compare-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================= Poker Room Section ========================= */

.poker-room-section {
    background:
        radial-gradient(circle at top right, rgba(212, 166, 74, 0.12), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.poker-room-section h2,
.poker-room-section h3,
.poker-room-section h4 {
    color: var(--head-text);
}

.poker-header {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.poker-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.poker-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--prime-border);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.poker-image-wrap img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.poker-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.poker-image-caption strong,
.poker-image-caption span {
    display: block;
}

.poker-image-caption span {
    margin-top: 4px;
    opacity: 0.85;
}

.poker-intro-box {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
    height: 100%;
}

.poker-intro-box p {
    line-height: 1.75;
}

.poker-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.poker-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.poker-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.poker-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.poker-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.poker-main-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.poker-text-box {
    padding: 32px;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
}

.poker-text-box p {
    line-height: 1.75;
}

.poker-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.poker-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.poker-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.poker-info-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.poker-info-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.poker-info-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.poker-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.poker-info-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.poker-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.poker-feature-block {
    padding: 30px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.poker-feature-block p {
    margin-bottom: 0;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .poker-image-wrap img {
        min-height: 320px;
    }

    .poker-intro-box,
    .poker-text-box,
    .poker-feature-block {
        padding: 24px;
    }

    .poker-main-panel {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .poker-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .poker-image-wrap img {
        min-height: 250px;
    }

    .poker-image-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .poker-card {
        padding: 22px;
    }

    .poker-info-item {
        flex-direction: column;
        gap: 12px;
    }
}


/* ========================= Poker Room Section ========================= */

.poker-room-section {
    background:
        radial-gradient(circle at top right, rgba(212, 166, 74, 0.12), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.poker-room-section h2,
.poker-room-section h3,
.poker-room-section h4 {
    color: var(--head-text);
}

.poker-header {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.poker-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.poker-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--prime-border);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.poker-image-wrap img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.poker-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.poker-image-caption strong,
.poker-image-caption span {
    display: block;
}

.poker-image-caption span {
    margin-top: 4px;
    opacity: 0.85;
}

.poker-intro-box {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.poker-intro-box p {
    line-height: 1.75;
}

.poker-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.poker-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.poker-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.poker-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.poker-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.poker-main-panel,
.poker-rules-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.poker-text-box,
.poker-detail-block,
.poker-rules-box {
    padding: 32px;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
}

.poker-text-box p,
.poker-detail-block p,
.poker-rules-box p {
    line-height: 1.75;
}

.poker-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.poker-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.poker-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.poker-info-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.poker-info-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.poker-info-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.poker-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.poker-info-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.poker-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.poker-mini-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.poker-mini-card strong,
.poker-mini-card span {
    display: block;
}

.poker-mini-card strong {
    color: var(--prime-text);
    margin-bottom: 8px;
    font-size: 15px;
}

.poker-mini-card span {
    line-height: 1.5;
    font-size: 14px;
}

@media (max-width: 991px) {
    .poker-image-wrap img {
        min-height: 320px;
    }

    .poker-intro-box,
    .poker-text-box,
    .poker-detail-block,
    .poker-rules-box {
        padding: 24px;
    }

    .poker-main-panel,
    .poker-rules-panel {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .poker-mini-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .poker-image-wrap img {
        min-height: 250px;
    }

    .poker-image-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .poker-card {
        padding: 22px;
    }

    .poker-info-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================= Rewards & Promotions Section ========================= */

.rewards-section {
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.14), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.rewards-section h2,
.rewards-section h3,
.rewards-section h4 {
    color: var(--head-text);
}

.rewards-header {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.rewards-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.rewards-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.rewards-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.rewards-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.rewards-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rewards-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.rewards-offer-panel,
.rewards-main-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.rewards-offer-box,
.rewards-terms-box,
.rewards-text-box,
.rewards-feature-block {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.rewards-offer-label {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--prime-bg);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.rewards-offer-box p,
.rewards-terms-box p,
.rewards-text-box p,
.rewards-feature-block p {
    line-height: 1.75;
}

.rewards-steps {
    display: grid;
    gap: 14px;
}

.rewards-step {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.rewards-step strong,
.rewards-step span {
    display: block;
}

.rewards-step strong {
    color: var(--prime-text);
    margin-bottom: 6px;
    font-size: 15px;
    text-transform: uppercase;
}

.rewards-step span {
    line-height: 1.55;
}

.rewards-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.rewards-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.rewards-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.rewards-info-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.rewards-info-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.rewards-info-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.rewards-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.rewards-info-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.rewards-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .rewards-offer-panel,
    .rewards-main-panel {
        padding: 18px;
    }

    .rewards-offer-box,
    .rewards-terms-box,
    .rewards-text-box,
    .rewards-feature-block {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .rewards-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .rewards-card {
        padding: 22px;
    }

    .rewards-info-item {
        flex-direction: column;
        gap: 12px;
    }
}


/* ========================= Gaming Funds & Responsible Play Section ========================= */

.gaming-tools-section {
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.14), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.gaming-tools-section h2,
.gaming-tools-section h3,
.gaming-tools-section h4 {
    color: var(--head-text);
}

.gaming-tools-header {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-tools-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.gaming-tools-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gaming-tools-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.gaming-tools-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.gaming-tools-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gaming-tools-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.gaming-tools-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.gaming-tools-box,
.gaming-tools-detail-box,
.gaming-feature-block {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.gaming-tools-box p,
.gaming-tools-detail-box p,
.gaming-feature-block p {
    line-height: 1.75;
}

.gaming-tools-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.gaming-tools-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.gaming-tools-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.gaming-tools-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gaming-mini-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.gaming-mini-card strong,
.gaming-mini-card span {
    display: block;
}

.gaming-mini-card strong {
    color: var(--prime-text);
    margin-bottom: 8px;
    font-size: 15px;
}

.gaming-mini-card span {
    line-height: 1.5;
    font-size: 14px;
}

.gaming-support-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gaming-support-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.gaming-support-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.gaming-support-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.gaming-support-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.gaming-support-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.gaming-tools-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .gaming-tools-panel {
        padding: 18px;
    }

    .gaming-tools-box,
    .gaming-tools-detail-box,
    .gaming-feature-block {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .gaming-tools-mini-grid,
    .gaming-tools-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .gaming-tools-card {
        padding: 22px;
    }

    .gaming-support-item {
        flex-direction: column;
        gap: 12px;
    }
}


/* ========================= Dining & Hotel Stay Section ========================= */

.stay-dine-section {
    background:
        radial-gradient(circle at top right, rgba(212, 166, 74, 0.14), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.stay-dine-section h2,
.stay-dine-section h3,
.stay-dine-section h4 {
    color: var(--head-text);
}

.stay-dine-header {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.stay-dine-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.stay-dine-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stay-dine-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.stay-dine-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.stay-dine-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stay-dine-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.stay-dine-panel,
.hotel-details-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.stay-dine-box,
.hotel-detail-box,
.stay-dine-feature-block {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.stay-dine-box p,
.hotel-detail-box p,
.stay-dine-feature-block p {
    line-height: 1.75;
}

.stay-dine-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.stay-dine-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.stay-dine-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.venue-list {
    display: flex;
    flex-direction: column;
}

.venue-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.venue-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.venue-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.venue-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.venue-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.hotel-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--prime-border);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.hotel-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.hotel-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.hotel-image-caption strong,
.hotel-image-caption span {
    display: block;
}

.hotel-image-caption span {
    margin-top: 4px;
    opacity: 0.85;
}

.hotel-room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hotel-room-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.hotel-room-card strong,
.hotel-room-card span {
    display: block;
}

.hotel-room-card strong {
    color: var(--prime-text);
    margin-bottom: 8px;
    font-size: 15px;
}

.hotel-room-card span {
    line-height: 1.5;
    font-size: 14px;
}

.hotel-amenity-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.hotel-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.hotel-amenity-item i {
    color: var(--prime-text);
    font-size: 18px;
}

.hotel-amenity-item span {
    line-height: 1.45;
    font-size: 14px;
}

.visit-plan-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.visit-plan-item {
    padding: 18px;
    border-radius: 18px;
    border-left: 4px solid var(--prime-text);
    background: rgba(0, 0, 0, 0.025);
}

.visit-plan-item strong,
.visit-plan-item span {
    display: block;
}

.visit-plan-item strong {
    color: var(--head-text);
    margin-bottom: 6px;
}

.visit-plan-item span {
    line-height: 1.55;
}

.stay-dine-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .stay-dine-panel,
    .hotel-details-panel {
        padding: 18px;
    }

    .stay-dine-box,
    .hotel-detail-box,
    .stay-dine-feature-block {
        padding: 24px;
    }

    .hotel-image-wrap img {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .hotel-room-grid,
    .hotel-amenity-list,
    .stay-dine-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .stay-dine-card {
        padding: 22px;
    }

    .venue-item {
        flex-direction: column;
        gap: 12px;
    }

    .hotel-image-wrap img {
        min-height: 270px;
    }

    .hotel-image-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }
}


/* ========================= Entertainment & Private Events Section ========================= */

.entertainment-events-section {
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.14), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.entertainment-events-section h2,
.entertainment-events-section h3,
.entertainment-events-section h4 {
    color: var(--head-text);
}

.entertainment-header {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.entertainment-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.entertainment-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.entertainment-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.entertainment-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.entertainment-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.entertainment-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.entertainment-main-panel,
.event-spaces-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.entertainment-box,
.event-space-box,
.entertainment-feature-block {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.entertainment-box p,
.event-space-box p,
.entertainment-feature-block p {
    line-height: 1.75;
}

.arena-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--prime-border);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.arena-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.arena-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.arena-image-caption strong,
.arena-image-caption span {
    display: block;
}

.arena-image-caption span {
    margin-top: 4px;
    opacity: 0.85;
}

.entertainment-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.entertainment-mini-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.entertainment-mini-card strong,
.entertainment-mini-card span {
    display: block;
}

.entertainment-mini-card strong {
    color: var(--prime-text);
    margin-bottom: 8px;
    font-size: 15px;
}

.entertainment-mini-card span {
    line-height: 1.5;
    font-size: 14px;
}

.entertainment-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.entertainment-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.entertainment-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

.event-compare-list {
    display: flex;
    flex-direction: column;
}

.event-compare-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.event-compare-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.event-compare-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.event-compare-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-compare-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.booking-contact-list {
    display: grid;
    gap: 16px;
}

.booking-contact-card {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.booking-contact-card strong,
.booking-contact-card span,
.booking-contact-card a {
    display: block;
}

.booking-contact-card strong {
    color: var(--head-text);
    font-size: 16px;
    margin-bottom: 8px;
}

.booking-contact-card span {
    line-height: 1.55;
    margin-bottom: 10px;
}

.booking-contact-card a {
    color: var(--prime-text);
    font-weight: 600;
    word-break: break-word;
}

.entertainment-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .entertainment-main-panel,
    .event-spaces-panel {
        padding: 18px;
    }

    .entertainment-box,
    .event-space-box,
    .entertainment-feature-block {
        padding: 24px;
    }

    .arena-image-wrap img {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .entertainment-mini-grid,
    .entertainment-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .entertainment-card {
        padding: 22px;
    }

    .event-compare-item {
        flex-direction: column;
        gap: 12px;
    }

    .arena-image-wrap img {
        min-height: 270px;
    }

    .arena-image-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }
}


/* ========================= Parking, Location & Transport Section ========================= */

.location-section {
    background:
        radial-gradient(circle at top right, rgba(212, 166, 74, 0.14), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.location-section h2,
.location-section h3,
.location-section h4 {
    color: var(--head-text);
}

.location-header {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.location-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.location-card {
    padding: 28px 24px;
    border: 1px solid var(--prime-border);
    border-radius: 20px;
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    border-color: var(--prime-text);
}

.location-card i {
    font-size: 36px;
    color: var(--prime-text);
    margin-bottom: 18px;
}

.location-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.location-main-panel,
.location-visit-panel {
    padding: 26px;
    border: 1px solid var(--prime-border);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.03);
}

.location-box,
.visit-box {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--prime-border);
    background: var(--card-bg);
}

.location-box p,
.visit-box p {
    line-height: 1.75;
}

.location-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--prime-border);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.location-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.location-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.location-image-caption strong,
.location-image-caption span {
    display: block;
}

.location-image-caption span {
    margin-top: 4px;
    opacity: 0.85;
}

.parking-feature-list {
    display: flex;
    flex-direction: column;
}

.parking-feature-item,
.visit-plan-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--prime-border);
}

.parking-feature-item:last-child,
.visit-plan-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.parking-feature-item i {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--prime-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.parking-feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.parking-feature-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.025);
}

.contact-card strong,
.contact-card a,
.contact-card span {
    display: block;
}

.contact-card strong {
    color: var(--head-text);
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-card a {
    color: var(--prime-text);
    font-weight: 600;
    word-break: break-word;
}

.contact-card span {
    line-height: 1.5;
    font-size: 14px;
}

.visit-plan-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.visit-plan-item {
    display: block;
}

.visit-plan-item strong,
.visit-plan-item span {
    display: block;
}

.visit-plan-item strong {
    color: var(--prime-text);
    margin-bottom: 8px;
    font-size: 15px;
}

.visit-plan-item span {
    line-height: 1.55;
}

.location-check-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.location-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.location-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}

@media (max-width: 991px) {
    .location-main-panel,
    .location-visit-panel {
        padding: 18px;
    }

    .location-box,
    .visit-box {
        padding: 24px;
    }

    .location-image-wrap img {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .location-card {
        padding: 22px;
    }

    .parking-feature-item {
        flex-direction: column;
        gap: 12px;
    }

    .location-image-wrap img {
        min-height: 270px;
    }

    .location-image-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }
}

/* ========================= FAQ Section ========================= */

.faq-section {
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.14), transparent 34%),
        var(--body-bg);
    color: var(--para-text);
}

.faq-section h2,
.faq-section h3 {
    color: var(--head-text);
}

.faq-header {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.faq-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border: 1px solid var(--prime-border) !important;
    border-radius: 20px !important;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: none !important;
}

.faq-item .accordion-button {
    background: var(--card-bg);
    color: var(--head-text);
    font-size: 19px;
    font-weight: 700;
    padding: 24px 28px;
    box-shadow: none !important;
    border: 0;
}

.faq-item .accordion-button:not(.collapsed) {
    background: rgba(0, 0, 0, 0.03);
    color: var(--head-text);
}

.faq-item .accordion-button:focus {
    box-shadow: none;
}

.faq-item .accordion-button::after {
    filter: none;
}

.faq-item .accordion-body {
    padding: 0 28px 26px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--para-text);
    background: var(--card-bg);
}

.faq-item .accordion-collapse {
    border-top: 1px solid var(--prime-border);
}

@media (max-width: 767px) {
    .faq-item .accordion-button {
        font-size: 17px;
        padding: 20px 20px;
    }

    .faq-item .accordion-body {
        padding: 0 20px 22px;
        font-size: 15px;
    }
}

/* ========================= Fixed Header on Scroll ========================= */
.header-css {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header-css.head-bg,
.header-css.fix {
    background-color: var(--head-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-padding-top: 95px;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 82px;
    }

    .header-css {
        z-index: 1060;
    }
}


/* ============================================
   Legal Pages
   ============================================ */
.header-css {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
}
html {
    scroll-padding-top: 96px;
}
.legal-page {
    padding-top: 88px;
    background: var(--body-bg);
}
.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32)),
        url('../../assets/images/banner1.jpg') center/cover no-repeat;
}
.legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212, 166, 74, 0.32), transparent 36%);
    pointer-events: none;
}
.legal-hero .container {
    position: relative;
    z-index: 2;
}
.legal-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.legal-hero h1 {
    max-width: 850px;
    margin: 20px 0 18px;
    color: #ffffff;
}
.legal-hero p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.75;
}
.legal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.legal-meta-row span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.42);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.legal-section {
    padding: 80px 0;
    color: var(--para-text);
}
.legal-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}
.legal-content-card,
.legal-side-card,
.legal-highlight-card {
    background: var(--card-bg);
    border: 1px solid var(--prime-border);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}
.legal-content-card {
    padding: 38px;
}
.legal-content-card h2,
.legal-content-card h3,
.legal-side-card h3,
.legal-highlight-card h3 {
    color: var(--head-text);
}
.legal-content-card h2 {
    margin-top: 34px;
    margin-bottom: 16px;
}
.legal-content-card h2:first-child {
    margin-top: 0;
}
.legal-content-card h3 {
    margin-top: 26px;
    margin-bottom: 12px;
}
.legal-content-card p,
.legal-content-card li,
.legal-side-card p,
.legal-highlight-card p {
    line-height: 1.78;
}
.legal-list {
    margin: 18px 0 24px;
    padding-left: 0;
    list-style: none;
}
.legal-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.legal-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--prime-text);
}
.legal-warning-list li::before {
    content: '\f06a';
}
.legal-side-card {
    padding: 26px;
    position: sticky;
    top: 112px;
}
.legal-side-card a {
    display: block;
    padding: 10px 0;
    color: var(--para-text);
    border-bottom: 1px solid var(--prime-border);
}
.legal-side-card a:hover {
    color: var(--prime-text);
}
.legal-highlight-card {
    padding: 26px;
    margin: 28px 0;
    border-left: 5px solid var(--prime-text);
}
.legal-note-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(212, 166, 74, 0.10);
    border: 1px solid var(--prime-border);
}
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}
.footer-legal-links a {
    color: inherit;
    font-weight: 600;
}
.footer-legal-links a:hover {
    color: var(--prime-text);
}
@media (max-width: 991px) {
    .legal-page { padding-top: 78px; }
    .legal-shell { grid-template-columns: 1fr; }
    .legal-side-card { position: static; }
    .legal-hero { padding: 90px 0 60px; }
}
@media (max-width: 575px) {
    .legal-content-card, .legal-side-card, .legal-highlight-card { padding: 22px; }
    .legal-hero p { font-size: 16px; }
}
