/* style/responsible-gaming.css */

/* --- General Page Styles --- */
.page-responsible-gaming {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-responsible-gaming__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-responsible-gaming__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gaming__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-responsible-gaming__text--cta {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2em;
    font-weight: bold;
}

.page-responsible-gaming__text--center {
    text-align: center;
}

.page-responsible-gaming__text-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-responsible-gaming__text-link:hover {
    color: #fff;
}

.page-responsible-gaming__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-responsible-gaming__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* --- Buttons --- */
.page-responsible-gaming__btn-primary,
.page-responsible-gaming__btn-secondary,
.page-responsible-gaming__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1.1em;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-responsible-gaming__btn-primary {
    background-color: #FFD700; /* Gold */
    color: #121212; /* Dark text for gold background */
    border-color: #FFD700;
}

.page-responsible-gaming__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000000;
}

.page-responsible-gaming__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border-color: #FFD700;
}

.page-responsible-gaming__btn-secondary:hover {
    background-color: #FFD700;
    color: #121212;
}

.page-responsible-gaming__btn-tertiary {
    background-color: #8B0000; /* Dark Red */
    color: #ffffff;
    border-color: #8B0000;
    padding: 10px 20px;
    font-size: 1em;
}

.page-responsible-gaming__btn-tertiary:hover {
    background-color: #a00000;
    border-color: #a00000;
}

/* --- Hero Section --- */
.page-responsible-gaming__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d); /* Dark gradient background */
}

.page-responsible-gaming__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin: 0 20px;
}

.page-responsible-gaming__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
    font-weight: bold;
    line-height: 1.2;
}

.page-responsible-gaming__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-responsible-gaming__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-responsible-gaming__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-responsible-gaming__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for better text readability */
}