/* style/casino.css */

/* Base styles for the casino page */
.page-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

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

.page-casino__section-title {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #ffffff; /* White title for dark background */
    font-weight: bold;
}

.page-casino__sub-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffffff; /* White subtitle for dark background */
}

.page-casino__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0; /* Slightly off-white for body text */
}

.page-casino__paragraph--center {
    text-align: center;
}

.page-casino__highlight {
    color: #26A9E0; /* Brand primary color for highlights */
    font-weight: bold;
}

.page-casino__text-link {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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