/* style/responsible-gaming.css */

/* Custom properties for colors from the prompt */
:root {
    --dt88-bg-color: #08160F;
    --dt88-card-bg: #11271B;
    --dt88-text-main: #F2FFF6;
    --dt88-text-secondary: #A7D9B8;
    --dt88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --dt88-border-color: #2E7A4E;
    --dt88-glow-color: #57E38D;
    --dt88-gold-color: #F2C14E;
    --dt88-divider-color: #1E3A2A;
    --dt88-deep-green: #0A4B2C;
}

.page-responsible-gaming {
    background-color: var(--dt88-bg-color);
    color: var(--dt88-text-main); /* Ensure text is light on dark background */
    font-family: 'Arial', sans-serif; /* Example font */
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom for overall page */
}

/* Ensure all content areas have appropriate text color */
.page-responsible-gaming p,
.page-responsible-gaming li,
.page-responsible-gaming h1,
.page-responsible-gaming h2,
.page-responsible-gaming h3 {
    color: var(--dt88-text-main);
}

.page-responsible-gaming__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Default padding for desktop */
    box-sizing: border-box;
}

.page-responsible-gaming__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden; /* Ensure no overflow */
}

.page-responsible-gaming__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 1920px; /* Max width for hero image */
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 10px;
}

.page-responsible-gaming__hero-content {
    position: relative; /* Ensure content is not positioned over the image */
    z-index: 2;
    max-width: 800px;
}