/* style/resources-debet-top-guide.css */

/* Base Styles for the page content */
.page-resources-debet-top-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-debet-top-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources-debet-top-guide__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-debet-top-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.page-resources-debet-top-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-resources-debet-top-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-resources-debet-top-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-debet-top-guide__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-resources-debet-top-guide__content-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for sections */
}

.page-resources-debet-top-guide__dark-bg {
    background-color: #0d0d0d; /* Even darker background for contrast */
}

.page-resources-debet-top-guide__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-debet-top-guide__sub-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-debet-top-guide__section-text {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: justify;
}

/* Step Items */
.page-resources-debet-top-guide__step-item {
    background-color: rgba(255, 255, 255, 0.05); /* Subtle background for steps */
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #017439;
}

.page-resources-debet-top-guide__step-title {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 10px;
}

.page-resources-debet-top-guide__step-description {
    font-size: 1em;
    color: #e0e0e0;
}

/* List Items */
.page-resources-debet-top-guide__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-resources-debet-top-guide__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 3px solid #017439;
    color: #e0e0e0;
}

.page-resources-debet-top-guide__list-item strong {
    color: #ffffff;
}

/* Game Categories */
.page-resources-debet-top-guide__game-category {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.page-resources-debet-top-guide__game-description {
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: center;
}

/* Promotion Cards */
.page-resources-debet-top-guide__promo-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-debet-top-guide__promo-title {
    font-size: 1.6em;
    color: #017439;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-resources-debet-top-guide__promo-description {
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}