/* style/responsible-gaming.css */

/* Base styles for the responsible gaming page */
.page-responsible-gaming {
    background-color: var(--dark-bg-1, #0d0d0d); /* Assuming --dark-bg-1 is dark */
    color: #ffffff; /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

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

.page-responsible-gaming__hero-section {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure image doesn't overflow */
    min-height: 500px;
}

.page-responsible-gaming__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3; /* Make background image subtle */
    /* No filter property to change color */
}

.page-responsible-gaming__hero-section .page-responsible-gaming__container {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-responsible-gaming__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

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

.page-responsible-gaming__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-responsible-gaming__btn-register,
.page-responsible-gaming__btn-login,
.page-responsible-gaming__btn-primary,
.page-responsible-gaming__btn-secondary {
    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;
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure button doesn't overflow */
}

/* Specific colors for Register/Login buttons */
.page-responsible-gaming__btn-register,
.page-responsible-gaming__btn-login {
    background-color: #C30808; /* Red for Register/Login */
    color: #FFFF00; /* Yellow font for Register/Login */
    border: 2px solid #C30808;
}