:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --login-button-color: #EA7C07;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
}

/* 🚨 Desktop HERO Section Styles (Strictly enforced) */
.page-casino__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), #40c0ff); /* Using a slightly lighter gradient for visual appeal */
    color: var(--text-light);
    /* 🚨 Top spacing as per common fragment agreement, use var(--header-offset) to prevent being covered by fixed header */
    padding-top: var(--header-offset, 120px);
}

.page-casino__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-casino__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-casino__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    /* 🚨 Prohibition of CSS filter to change image color */
    filter: none;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-casino__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-casino__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-casino__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.page-casino__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-casino__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    box-sizing: border-box; /* Ensure padding doesn't push it out */
}

.page-casino__cta-button--register {
    background: var(--login-button-color); /* Specific color for register */
    border-color: var(--login-button-color);
}

.page-casino__cta-button--login {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-casino__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.page-casino__cta-button--register:hover {
    background: #FF8C00; /* Slightly darker orange */
    border-color: #FF8C00;
}

.page-casino__cta-button--login:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

/* General Section Styles */
.page-casino__section {
    padding: 80px 20px;
    text-align: center;
    color: var(--text-dark); /* Default dark text for light body background */
}

.page-casino__section:nth-of-type(even) {
    background-color: var(--background-light);
}

.page-casino__dark-section {
    background: var(--primary-color);
    color: var(--text-light);
}

.page-casino__dark-section .page-casino__section-title,
.page-casino__dark-section h3 {
    color: var(--text-light);
}

.page-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.page-casino__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    color: var(--primary-color);
}