/* style/responsible-gambling.css */

/* Define CSS variables for colors from the global shared.css or fallback */
:root {
    --primary-color: #26A9E0; /* Main brand color */
    --secondary-color: #FFFFFF; /* Accent/background color */
    --text-dark: #333333; /* Dark text for light backgrounds */
    --text-light: #FFFFFF; /* Light text for dark backgrounds */
    --login-button-color: #EA7C07; /* Specific login button color */
    --header-offset: 120px; /* Default offset, will be overridden by shared.css */
}

/* Page specific styles - all selectors must use BEM naming rule */
.page-responsible-gambling {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for the page content */
    background-color: var(--secondary-color); /* Matches body background from shared.css */
}

/* Hero Section */
.page-responsible-gambling__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color) 70%, var(--secondary-color));
    color: var(--text-light);
    overflow: hidden;
}

.page-responsible-gambling__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-responsible-gambling__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-light);
    max-width: 900px;
}

.page-responsible-gambling__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    color: var(--text-light);
}

.page-responsible-gambling__cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}