:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #000; /* Body background */
    --card-bg-dark-mode: rgba(255, 255, 255, 0.1); /* Slightly transparent white for cards on dark background */
    --border-color: rgba(255, 255, 255, 0.2);
}

/* Base styles for the responsible gaming page */
.page-responsible-gaming {
    color: var(--text-light); /* Light text on dark body background */
    background-color: var(--bg-dark); /* Ensure consistency, though body is already dark */
    padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Fixed header offset for main content */
.page-responsible-gaming {
    padding-top: var(--header-offset, 120px);
}

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

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

.page-responsible-gaming__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-responsible-gaming__text-block {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

/* Hero Section */
.page-responsible-gaming__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0; /* Remove top padding here, it's on .page-responsible-gaming */
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
    overflow: hidden;
}