.hero-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.jackpot-title-group h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-dark);
    margin: 0;
}

.prize-card {
    background-color: #2c0303;
    padding: 30px 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-amount {
    color: #fff;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.jackpot-details {
    padding-bottom: 120px;
}

.promo-dates {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
}

.details-section {
    margin-bottom: 48px;
}

.details-section h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.details-section p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.bullet-list {
    margin-bottom: 24px;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 900;
}

.must-be-present {
    font-weight: 700;
}

.terms-section {
    font-size: 14px;
    opacity: 0.9;
}

.terms-section p {
    font-size: 14px;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .jackpot-title-group h1 {
        font-size: 48px;
    }

    .prize-amount {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .jackpot-hero-bottom {
        padding: 40px 0;
    }

    .prize-card {
        width: 100%;
        padding: 20px;
    }

    .prize-amount {
        font-size: 48px;
    }
}

/* Legal Page Styles */
.legal-hero {
    display: flex;
    height: 334px;
    background-color: var(--bg-primary);
    margin-bottom: 80px;
}

.legal-hero-title {
    flex: 0 0 540px;
    background-color: #2c0303;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-hero-title h1 {
    color: #fff;
    font-size: 80px;
    font-weight: 900;
    margin: 0;
}

.legal-hero-image {
    flex: 1;
}

.legal-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-cards {
    padding-bottom: 120px;
}

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

.legal-card {
    position: relative;
    height: 406px;
    border: 1px solid #2c0303;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.legal-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

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

.legal-card-content {
    position: relative;
    z-index: 2;
}

.legal-card h2 {
    font-size: 40px;
    font-weight: 900;
    color: #2c0303;
    margin-bottom: 16px;
    text-align: left;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 400;
    color: #2c0303;
}

.read-more img {
    position: static;
    width: 24px;
    height: 24px;
}

.legal-card.full-width {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .legal-hero-title {
        flex: 0 0 300px;
    }

    .legal-hero-title h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        flex-direction: column;
        height: auto;
    }

    .legal-hero-title {
        flex: none;
        padding: 40px;
    }

    .legal-hero-image {
        height: 250px;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-card.full-width {
        grid-column: span 1;
    }

    .legal-card {
        height: 300px;
        padding: 30px;
    }

    .legal-card h2 {
        font-size: 32px;
    }
}

/* Casino Page Specific Styles */
.casino-hero {
    position: relative;
    height: 305px !important;
    margin-bottom: 80px;
    display: block !important;
}

.casino-hero .legal-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.casino-hero .legal-hero-title {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: #fff;
    padding: 12px 24px;
    width: auto;
    height: auto;
}



.casino-hero .legal-hero-title h1 {
    color: #000;
    font-size: 64px;
    font-weight: 900;
    margin: 0;
    text-transform: none;
}


.casino-description {
    padding: 80px 0;
}

.casino-description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.casino-description-grid p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

.casino-features {
    padding-bottom: 120px;
}

.casino-features-grid {
    display: grid;
    grid-template-columns: 770fr 375fr 375fr;
    grid-template-rows: 400px 400px;
    gap: 20px;
    max-width: 1560px;
    margin: 0 auto;
}

.casino-feature-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background-color: #000;
}

.casino-feature-card.tall {
    grid-row: span 2;
    grid-column: 1;
}

.casino-feature-card.wide {
    grid-column: 2 / span 2;
}

.casino-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

.casino-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
    filter: grayscale(100%) brightness(0.7);
    display: block;
}

.casino-feature-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.casino-feature-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    z-index: 2;
    color: #fff;
}

.casino-feature-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #fff;
}

body[data-page="casino"] .casino-feature-content h2 {
    font-size: 20px;
    line-height: 1.2;
}

.read-more-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.read-more-link::after {
    content: '>';
    font-family: 'Inter', sans-serif;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.casino-feature-card:hover .read-more-link::after {
    transform: translateX(8px);
}


@media (max-width: 1024px) {
    .casino-features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .casino-feature-card.tall,
    .casino-feature-card.wide {
        grid-row: auto;
        grid-column: auto;
        height: 600px;
    }
}


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

    .casino-feature-card,
    .casino-feature-card.tall {
        height: 400px;
    }

    .casino-feature-content h2 {
        font-size: 24px;
    }

    .casino-hero .legal-hero-title {
        top: 100px;
        transform: none;
        padding: 8px 16px;
        background-color: #fff;
    }

    .casino-hero .legal-hero-title h1 {
        font-size: 32px;
    }
}


/* Legal Content Layout (Sidebar + Main) */
.legal-content-layout {
    padding: 80px 0 120px;
    background-color: #fff7e1;
}

body.beige-page {
    background-color: #fff7e1;
}


.legal-content-grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 174px;
}


.legal-sidebar h3 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-sidebar nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-sidebar nav ul li a {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.legal-sidebar nav ul li a:hover,
.legal-sidebar nav ul li a.active {
    opacity: 1;
}

.legal-main-content {
    max-width: 900px;
}

.legal-main-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.legal-main-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #2c0303;
    margin: 48px 0 24px;
}

.legal-main-content img {
    width: 100%;
    height: auto;
    margin-bottom: 48px;
    border: 1px solid #2c0303;
}


.legal-main-content strong {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .legal-content-grid {
        gap: 60px;
        grid-template-columns: 200px 1fr;
    }
}

@media (max-width: 768px) {
    .legal-content-layout {
        padding: 40px 0 80px;
    }

    .legal-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-sidebar h3 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .legal-sidebar nav ul {

        flex-wrap: wrap;
        gap: 20px;
    }

    .legal-sidebar nav ul li a {
        font-size: 16px;
    }
}

/* Contact Form Styles */
.contact-form-title {
    margin-top: 0 !important;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 24px;
    background-color: #fff;
    border: 1px solid #2c0303;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #2c0303;
    transition: box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #2c0303;
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 3, 3, 0.1);
}

.submit-btn {
    align-self: flex-start;
    padding: 16px 80px;
    background-color: #2c0303;
    color: #fff7e1;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 24px;
}

.submit-btn:hover {
    background-color: #4a0505;
}

/* Hotel v2 Styles */
.hotel-hero-v2 {
    position: relative;
    height: 530px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 104px;
}

.hotel-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hotel-hero-bg img {
    width: 100%;
    height: 110%;
    object-fit: cover;
}

.hotel-hero-content-box {
    position: relative;
    z-index: 2;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 47px;
    text-align: center;
}

.hotel-hero-title-border {
    border: 1px solid #fff7e1;
    padding: 24px;
    background-color: transparent;
}

.hotel-hero-title-border h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #fff7e1;
    margin: 0;
    line-height: 1;
}

.hotel-hero-content-box p {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff7e1;
    margin: 0;
}

.reserve-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.reserve-promo span {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff7e1;
}

.book-now-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff7e1;
    color: #2c0303;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #ffe4a1;
}

.rooms-grid-section {
    padding: 100px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px 30px;
}

.room-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.room-image {
    width: 100%;
    aspect-ratio: 765 / 427;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-info h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #2c0303;
}

.book-now-btn-small {
    padding: 12px 24px;
    background-color: #2c0303;
    color: #fff7e1;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.book-now-btn-small:hover {
    background-color: #4a0505;
}

@media (max-width: 1024px) {
    .rooms-grid {
        gap: 60px 20px;
    }

    .hotel-hero-title-border h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hotel-hero-v2 {
        height: auto;
        padding: 60px 20px;
    }

    .hotel-hero-title-border h1 {
        font-size: 32px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .room-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .book-now-btn-small {
        width: 100%;
        text-align: center;
    }
}
/* Eat & Drink Page */
.dining-hero h1 {
    letter-spacing: -2px;
}

.dining-intro {
    padding: 80px 0 40px;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.dining-intro h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #2c0303;
    margin-bottom: 32px;
}

.dining-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2c0303;
}

.dining-grid-section {
    padding-bottom: 100px;
}

.dining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 30px;
}

.venue-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.venue-card.full-width {
    grid-column: span 2;
}

.venue-image {
    width: 100%;
    aspect-ratio: 765 / 427;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.venue-header h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #2c0303;
}

.see-menu-btn {
    padding: 12px 24px;
    background-color: #2c0303;
    color: #fff7e1;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.see-menu-btn:hover {
    background-color: #4a0505;
}

.venue-info p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2c0303;
}

@media (max-width: 1024px) {
    .dining-grid {
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .dining-intro h2 {
        font-size: 24px;
    }

    .dining-grid {
        grid-template-columns: 1fr;
    }

    .venue-card.full-width {
        grid-column: span 1;
    }

    .venue-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .see-menu-btn {
        width: 100%;
        text-align: center;
    }
}

body[data-page="about-us"] .drink-responsibly,
body[data-page="age-limits"] .drink-responsibly,
body[data-page="aml"] .drink-responsibly,
body[data-page="book-now"] .drink-responsibly,
body[data-page="casino"] .drink-responsibly,
body[data-page="contact"] .drink-responsibly,
body[data-page="disclaimer"] .drink-responsibly,
body[data-page="eat-drink"] .drink-responsibly,
body[data-page="further-assistance"] .drink-responsibly,
body[data-page="gaming-machines"] .drink-responsibly,
body[data-page="help"] .drink-responsibly,
body[data-page="host-responsibility"] .drink-responsibly,
body[data-page="hotel"] .drink-responsibly,
body[data-page="index"] .drink-responsibly,
body[data-page="legal"] .drink-responsibly,
body[data-page="media"] .drink-responsibly,
body[data-page="news"] .drink-responsibly,
body[data-page="privacy"] .drink-responsibly,
body[data-page="responsibility"] .drink-responsibly,
body[data-page="signs-symptoms"] .drink-responsibly,
body[data-page="success"] .drink-responsibly,
body[data-page="table-games"] .drink-responsibly,
body[data-page="terms"] .drink-responsibly,
body[data-page="thursday-jackpot"] .drink-responsibly {
    position: static;
    margin-top: 40px;
    text-align: center;
}

body[data-page="success"] .success-page-content {
    min-height: calc(100vh - 600px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
}

body[data-page="success"] .success-message {
    text-align: center;
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

body[data-page="success"] .success-message::before {
    content: '✓';
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background-color: #2c0303;
    color: #fff7e1;
    font-size: 80px;
    line-height: 120px;
    border-radius: 50%;
    font-weight: 900;
}

body[data-page="success"] .success-message h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #2c0303;
    margin-bottom: 24px;
}

body[data-page="success"] .success-message p {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2c0303;
    line-height: 1.6;
    margin-bottom: 40px;
}

body[data-page="success"] .back-home-btn {
    display: inline-block;
    padding: 16px 48px;
    background-color: #2c0303;
    color: #fff7e1;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

body[data-page="success"] .back-home-btn:hover {
    background-color: #1a0101;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    body[data-page="success"] .success-message::before {
        width: 80px;
        height: 80px;
        font-size: 60px;
        line-height: 80px;
        margin-bottom: 24px;
    }

    body[data-page="success"] .success-message h1 {
        font-size: 32px;
    }

    body[data-page="success"] .success-message p {
        font-size: 16px;
    }

    body[data-page="success"] .back-home-btn {
        width: 100%;
        padding: 14px 32px;
    }
}

.booking-main {
    padding-top: calc(var(--header-height) - 24px);
}
