/* style/responsible-gaming.css */
/* Main page styling for Responsible Gaming page */

/* Variables for consistent styling */
:root {
    --primary-color: #017439; /* Brand primary green */
    --secondary-color: #FFFFFF; /* Brand secondary white */
    --text-color-dark-bg: #FFFFFF; /* Text on dark backgrounds */
    --text-color-light-bg: #333333; /* Text on light backgrounds */
    --background-dark: #121212; /* Body background from shared.css */
    --background-light: #f5f5f5; /* Light background for sections */
    --button-register: #C30808; /* Specific color for register button */
    --button-login: #C30808; /* Specific color for login button */
    --button-text-yellow: #FFFF00; /* Specific color for register/login button text */
    --card-bg-dark-section: rgba(255, 255, 255, 0.1); /* Slightly transparent white for cards on dark bg */
    --card-border-dark-section: rgba(255, 255, 255, 0.2); /* Border for cards on dark bg */
}

.page-responsible-gaming {
    color: var(--text-color-dark-bg); /* Default text color for the page, as body is dark */
    background-color: var(--background-dark); /* Ensure consistency if main is not full width */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Space for footer */
}

/* Header offset for fixed header */
.page-responsible-gaming__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply header offset to the first section */
}

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

/* Hero Section */
.page-responsible-gaming__hero-section {
    background-color: var(--primary-color); /* Use primary color for hero background */
    color: var(--secondary-color);
    text-align: center;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-responsible-gaming__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-responsible-gaming__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-responsible-gaming__btn-primary,
.page-responsible-gaming__btn-secondary,
.page-responsible-gaming__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure button doesn't exceed container */
}

.page-responsible-gaming__btn-primary {
    background-color: var(--button-register); /* Specific register color */
    color: var(--button-text-yellow); /* Specific yellow font */
    border: 2px solid var(--button-register);
}