/* style/casino.css */

/* Base Styles for the casino page */
.page-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #ffffff;
}

/* Ensure body offset for fixed header */
.page-casino__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px);
    background-color: #f5f5f5;
    text-align: center;
    padding-bottom: 60px;
    overflow: hidden;
}

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

.page-casino__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-casino__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-casino__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #555555;
}

/* Hero Section */
.page-casino__hero-title {
    font-size: 3.5em;
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: bold;
}