/* style/responsible-gambling.css */

/* Base styles for the page */
.page-responsible-gambling {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #f8f8f8; /* Light background for the content area */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

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

.page-responsible-gambling__section-title {
    font-size: 36px;
    color: #CC0000; /* Primary brand color */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-responsible-gambling__main-title {
    font-size: 48px;
    color: #CC0000;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-responsible-gambling__intro-text {
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-responsible-gambling__hero-section {
    background: linear-gradient(135deg, #CC0000, #FFD700); /* Brand gradient */
    padding: 80px 0 40px;
    color: #ffffff; /* White text for gradient background */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling__hero-section .page-responsible-gambling__main-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__hero-section .page-responsible-gambling__intro-text {
    color: #f0f0f0;
}

.page-responsible-gambling__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-responsible-gambling__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700; /* Secondary brand color */
    color: #CC0000; /* Primary brand color for text on secondary background */
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-responsible-gambling__cta-button:hover {
    background: #e6c200; /* Slightly darker secondary color on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Commitment Section */
.page-responsible-gambling__commitment-section {
    background-color: #ffffff;
}