:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B;
}

.page-casino {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--deep-navy);
}

.page-casino__section-padding {
    padding: 60px 0;
}

.page-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Hero Section --- */
.page-casino__hero-section {
    position: relative;
    overflow: hidden;
    color: var(--text-main);
    padding-top: 10px; /* Small top padding, assuming body has --header-offset */
    text-align: center;
}

.page-casino__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for desktop hero */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-casino__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none !important; /* Ensure no filters are applied */
}

.page-casino__hero-content {
    position: relative;
    padding: 40px 15px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(8, 22, 43, 0.8); /* Deep Navy with transparency */
    border-radius: 10px;
    margin-top: -100px;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-casino__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-casino__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-casino__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
}