/* style/resources-dabet-vip-registration-login-guide.css */

/* Base styles for the page content */
.page-resources-dabet-vip-registration-login-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background from shared.css */
}

/* Hero Section */
.page-resources-dabet-vip-registration-login-guide__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-resources-dabet-vip-registration-login-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* Ensure no filter is applied */
}

.page-resources-dabet-vip-registration-login-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-dabet-vip-registration-login-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-resources-dabet-vip-registration-login-guide__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources-dabet-vip-registration-login-guide__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-resources-dabet-vip-registration-login-guide__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Section Styles */
.page-resources-dabet-vip-registration-login-guide__content-section {
    padding: 60px 0;
    background-color: #1a1a2e; /* Inherit from body or specific dark background */
}

.page-resources-dabet-vip-registration-login-guide__content-section:nth-of-type(even) {
    background-color: #2a2a3e; /* Slightly different dark background for contrast */
}

.page-resources-dabet-vip-registration-login-guide__dark-bg {
    background-color: #017439; /* Brand color as background */
    color: #ffffff; /* White text for brand color background */
}

.page-resources-dabet-vip-registration-login-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-dabet-vip-registration-login-guide__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-dabet-vip-registration-login-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

/* Buttons */
.page-resources-dabet-vip-registration-login-guide__btn-primary,
.page-resources-dabet-vip-registration-login-guide__btn-secondary,
.page-resources-dabet-vip-registration-login-guide__btn-register {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-dabet-vip-registration-login-guide__btn-primary {
    background-color: #C30808; /* Custom Register/Login button color */
    color: #FFFF00; /* Custom Register/Login font color */
    border: 2px solid #C30808;
}

.page-resources-dabet-vip-registration-login-guide__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-resources-dabet-vip-registration-login-guide__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Custom Register/Login font color */
    border: 2px solid #C30808; /* Custom Register/Login button color */
}

.page-resources-dabet-vip-registration-login-guide__btn-secondary:hover {
    background-color: #C30808; /* Custom Register/Login button color */
    color: #ffffff;
}

.page-resources-dabet-vip-registration-login-guide__btn-register {
    background-color: #C30808; /* Custom Register button color */
    color: #FFFF00; /* Custom Register font color */
    border: 2px solid #C30808;
    margin-top: 15px;
    width: 100%; /* Full width in step card */
}

.page-resources-dabet-vip-registration-login-guide__btn-register:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-resources-dabet-vip-registration-login-guide__btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-dabet-vip-registration-login-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Steps Grid */
.page-resources-dabet-vip-registration-login-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-dabet-vip-registration-login-guide__step-item {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card for dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff; /* Light text for card */
}

.page-resources-dabet-vip-registration-login-guide__step-image {
    width: 100%;
    max-width: 400px;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    /* No filter */
}

.page-resources-dabet-vip-registration-login-guide__step-title {
    font-size: 1.5em;
    color: #FFFF00; /* Custom font color for titles in cards */
    margin-bottom: 15px;
}

.page-resources-dabet-vip-registration-login-guide__step-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 15px;
    flex-grow: 1; /* Pushes button to bottom */
}

.page-resources-dabet-vip-registration-login-guide__list {
    text-align: left;
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
    color: #f0f0f0;
}

.page-resources-dabet-vip-registration-login-guide__list strong {
    color: #FFFF00; /* Highlight important text */
}

/* Benefits Grid */
.page-resources-dabet-vip-registration-login-guide__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-dabet-vip-registration-login-guide__benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-dabet-vip-registration-login-guide__benefit-icon {
    width: 100%;
    max-width: 300px; /* Max width for benefit icons */
    height: 200px; /* Fixed height */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    /* No filter */
}

.page-resources-dabet-vip-registration-login-guide__benefit-title {
    font-size: 1.4em;
    color: #FFFF00;
    margin-bottom: 15px;
}

.page-resources-dabet-vip-registration-login-guide__benefit-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Content Image */
.page-resources-dabet-vip-registration-login-guide__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-resources-dabet-vip-registration-login-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    /* No filter */
}

/* FAQ Section */
.page-resources-dabet-vip-registration-login-guide__faq-list {
    margin-top: 40px;
}

.page-resources-dabet-vip-registration-login-guide__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}