/* style/casino.css */

/* Base styles for the casino page */
.page-casino {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #ffffff; /* Explicitly set for clarity, though shared.css might handle body */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* General section styling */
.page-casino__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.page-casino__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-casino__dark-section {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff;
}

.page-casino__dark-section .page-casino__heading,
.page-casino__dark-section .page-casino__paragraph,
.page-casino__dark-section .page-casino__card-title,
.page-casino__dark-section .page-casino__card-text,
.page-casino__dark-section .page-casino__list-item,
.page-casino__dark-section .page-casino__text-link {
    color: #ffffff;
}

.page-casino__dark-section .page-casino__text-link:hover {
    color: #f0f0f0;
}

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

.page-casino__heading {
    font-size: 36px;
    color: #26A9E0; /* Brand primary color */
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.page-casino__dark-section .page-casino__heading {
    color: #ffffff;
}

.page-casino__sub-heading {
    font-size: 24px;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: left;
}

.page-casino__dark-section .page-casino__sub-heading {
    color: #ffffff;
}

.page-casino__paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino__dark-section .page-casino__paragraph {
    color: #ffffff;
}

/* CTA Button Styles */
.page-casino__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #26A9E0; /* Primary brand color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-casino__cta-button:hover {
    background: #1e87b7; /* Slightly darker primary color */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-casino__cta-button--primary {
    background: #26A9E0;
    color: #ffffff;
}

.page-casino__cta-button--primary:hover {
    background: #1e87b7;
}

.page-casino__cta-button--secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    margin-left: 20px;
}

.page-casino__cta-button--secondary:hover {
    background: #e0f2f7;
    color: #1e87b7;
    border-color: #1e87b7;
}

.page-casino__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #26A9E0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-casino__btn-primary:hover {
    background: #1e87b7;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-casino__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: #ffffff;
    color: #26A9E0;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #26A9E0;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-casino__btn-secondary:hover {
    background: #e0f2f7;
    color: #1e87b7;
    border-color: #1e87b7;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-casino__button-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Text link styles */
.page-casino__text-link {
    color: #26A9E0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-casino__text-link:hover {
    color: #1e87b7;
}

/* Image styles */
.page-casino img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-casino__content-image {
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Hero Section */
.page-casino__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: 0; /* Set to 0 to avoid double padding if .page-casino has it */
    background: linear-gradient(135deg, #e0f7fa, #ffffff); /* Light gradient background */
}