/* style/player-guides-deposit-withdrawal.css */

/* Base styles for the page content */
.page-player-guides-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--dark-bg, #0d0d0d); /* Assuming shared.css defines --dark-bg */
}

/* Header offset for main content */
.page-player-guides-deposit-withdrawal__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* General container for content sections */
.page-player-guides-deposit-withdrawal__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-player-guides-deposit-withdrawal__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    overflow: hidden;
}

.page-player-guides-deposit-withdrawal__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-player-guides-deposit-withdrawal__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-player-guides-deposit-withdrawal__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-player-guides-deposit-withdrawal__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}