/* style/promotions-first-deposit-bonus.css */

/* Variables for colors */
:root {
    --page-promotions-first-deposit-bonus-primary-color: #004D99; /* Deep Blue */
    --page-promotions-first-deposit-bonus-secondary-color: #FFD700; /* Bright Gold */
    --page-promotions-first-deposit-bonus-text-light: #FFFFFF; /* White for dark backgrounds */
    --page-promotions-first-deposit-bonus-text-dark: #333333; /* Dark gray for light backgrounds */
    --page-promotions-first-deposit-bonus-background-light: #F8F9FA; /* Light gray */
    --page-promotions-first-deposit-bonus-border-color: #E0E0E0; /* Light border */
    --page-promotions-first-deposit-bonus-accent-hover: #E6C200; /* Slightly darker gold for hover */
    --page-promotions-first-deposit-bonus-dark-blue-hover: #003A70; /* Slightly darker blue for hover */
}

.page-promotions-first-deposit-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-promotions-first-deposit-bonus-text-dark);
    background-color: var(--page-promotions-first-deposit-bonus-background-light);
}

.page-promotions-first-deposit-bonus h1,
.page-promotions-first-deposit-bonus h2,
.page-promotions-first-deposit-bonus h3 {
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-first-deposit-bonus h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--page-promotions-first-deposit-bonus-text-light); /* For hero section */
}

.page-promotions-first-deposit-bonus h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

.page-promotions-first-deposit-bonus h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--page-promotions-first-deposit-bonus-secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions-first-deposit-bonus h3 {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-first-deposit-bonus ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus ul li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* --- Buttons --- */
.page-promotions-first-deposit-bonus__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions-first-deposit-bonus__btn--primary {
    background-color: var(--page-promotions-first-deposit-bonus-secondary-color);
    color: var(--page-promotions-first-deposit-bonus-primary-color);
}

.page-promotions-first-deposit-bonus__btn--primary:hover {
    background-color: var(--page-promotions-first-deposit-bonus-accent-hover);
    transform: translateY(-2px);
}

.page-promotions-first-deposit-bonus__btn--secondary {
    background-color: transparent;
    color: var(--page-promotions-first-deposit-bonus-text-light);
    border: 2px solid var(--page-promotions-first-deposit-bonus-secondary-color);
    margin-left: 15px;
}

.page-promotions-first-deposit-bonus__btn--secondary:hover {
    background-color: var(--page-promotions-first-deposit-bonus-secondary-color);
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    transform: translateY(-2px);
}

.page-promotions-first-deposit-bonus__btn--small {
    padding: 8px 18px;
    font-size: 0.95em;
    margin-top: 10px;
}

.page-promotions-first-deposit-bonus__btn--large {
    padding: 15px 35px;
    font-size: 1.25em;
    margin-top: 25px;
}

/* --- Sections --- */
.page-promotions-first-deposit-bonus__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-first-deposit-bonus__section:nth-of-type(even) {
    background-color: var(--page-promotions-first-deposit-bonus-text-light);
}

/* --- Hero Section --- */
.page-promotions-first-deposit-bonus__hero {
    background: linear-gradient(135deg, var(--page-promotions-first-deposit-bonus-primary-color) 0%, #0066CC 100%); /* Slightly lighter blue for gradient */
    color: var(--page-promotions-first-deposit-bonus-text-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-content {
    max-width: 800px;
    z-index: 2;
}

.page-promotions-first-deposit-bonus__hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-promotions-first-deposit-bonus__hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-promotions-first-deposit-bonus__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0.15; /* Subtle background image */
}

.page-promotions-first-deposit-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%); /* Make background image subtle */
}

/* --- Grid Container for Text and Image --- */
.page-promotions-first-deposit-bonus__grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__grid-container:nth-of-type(even) {
    direction: rtl; /* For alternating image/text layout */
}

.page-promotions-first-deposit-bonus__grid-container .page-promotions-first-deposit-bonus__text-content {
    direction: ltr; /* Reset text direction */
}

.page-promotions-first-deposit-bonus__image-wrapper {
    text-align: center;
}

.page-promotions-first-deposit-bonus__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- CTA Section within Bonus Details --- */
.page-promotions-first-deposit-bonus__cta-section {
    background-color: var(--page-promotions-first-deposit-bonus-primary-color);
    color: var(--page-promotions-first-deposit-bonus-text-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.page-promotions-first-deposit-bonus__cta-section p {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: bold;
    color: var(--page-promotions-first-deposit-bonus-text-light);
}

/* --- How to Claim Steps --- */
.page-promotions-first-deposit-bonus__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-first-deposit-bonus__step-card {
    background-color: var(--page-promotions-first-deposit-bonus-text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__step-card:hover {
    transform: translateY(-5px);
}

.page-promotions-first-deposit-bonus__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-first-deposit-bonus__step-card h3 {
    font-size: 1.5em;
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__tip {
    background-color: #e0f2f7; /* Lighter blue for tips */
    border-left: 5px solid var(--page-promotions-first-deposit-bonus-primary-color);
    padding: 20px;
    margin-top: 40px;
    border-radius: 5px;
}

.page-promotions-first-deposit-bonus__tip p {
    margin: 0;
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    font-style: italic;
}

/* --- Why Choose Us Features --- */
.page-promotions-first-deposit-bonus__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-first-deposit-bonus__feature-card {
    background-color: var(--page-promotions-first-deposit-bonus-text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__feature-card:hover {
    transform: translateY(-5px);
}

.page-promotions-first-deposit-bonus__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-first-deposit-bonus__feature-card h3 {
    font-size: 1.4em;
    color: var(--page-promotions-first-deposit-bonus-primary-color);
    margin-bottom: 10px;
}

/* --- FAQ Accordion --- */
.page-promotions-first-deposit-bonus__accordion {
    margin-top: 40px;
}

.page-promotions-first-deposit-bonus__accordion-item {
    background-color: var(--page-promotions-first-deposit-bonus-text-light);
    border: 1px solid var(--page-promotions-first-deposit-bonus-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit-bonus__accordion-header {
    width: 100%;
    background-color: var(--page-promotions-first-deposit-bonus-primary-color);
    color: var(--page-promotions-first-deposit-bonus-text-light);
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__accordion-header:hover {
    background-color: var(--page-promotions-first-deposit-bonus-dark-blue-hover);
}

.page-promotions-first-deposit-bonus__accordion-icon {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__accordion-header.active .page-promotions-first-deposit-bonus__accordion-icon {
    transform: rotate(45deg);
}

.page-promotions-first-deposit-bonus__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--page-promotions-first-deposit-bonus-background-light);
    color: var(--page-promotions-first-deposit-bonus-text-dark);
}

.page-promotions-first-deposit-bonus__accordion-content.active {
    /* max-height will be set by JS */
    padding: 20px 25px;
}

.page-promotions-first-deposit-bonus__accordion-content p {
    margin-bottom: 0;
}

/* --- Final CTA --- */
.page-promotions-first-deposit-bonus__final-cta {
    text-align: center;
    background-color: var(--page-promotions-first-deposit-bonus-primary-color);
    color: var(--page-promotions-first-deposit-bonus-text-light);
    padding: 80px 20px;
    border-radius: 10px;
    margin-bottom: 60px; /* Add some space before footer */
}

.page-promotions-first-deposit-bonus__final-cta h2 {
    color: var(--page-promotions-first-deposit-bonus-secondary-color);
    font-size: 2.5em;
}

.page-promotions-first-deposit-bonus__final-cta p {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-promotions-first-deposit-bonus__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* --- Responsive Design --- */
@media (min-width: 768px) {
    .page-promotions-first-deposit-bonus__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-promotions-first-deposit-bonus__hero-content {
        max-width: 50%;
        margin-right: auto;
    }

    .page-promotions-first-deposit-bonus__hero-buttons {
        justify-content: flex-start;
    }

    .page-promotions-first-deposit-bonus__hero-image-wrapper {
        position: relative;
        width: 50%;
        height: auto;
        opacity: 1;
        filter: none;
        display: block; /* Ensure it's not flex item for object-fit */
    }

    .page-promotions-first-deposit-bonus__hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .page-promotions-first-deposit-bonus__grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .page-promotions-first-deposit-bonus__grid-container:nth-of-type(even) {
        direction: ltr; /* Reset for larger screens */
    }

    .page-promotions-first-deposit-bonus__grid-container:nth-child(even) .page-promotions-first-deposit-bonus__text-content {
        order: 2;
    }
    .page-promotions-first-deposit-bonus__grid-container:nth-child(even) .page-promotions-first-deposit-bonus__image-wrapper {
        order: 1;
    }

    .page-promotions-first-deposit-bonus h1 {
        font-size: 3.5em;
        text-align: left;
    }

    .page-promotions-first-deposit-bonus h2 {
        font-size: 2.5em;
    }

    .page-promotions-first-deposit-bonus__cta-section p {
        font-size: 1.6em;
    }
    
    .page-promotions-first-deposit-bonus__final-cta h2 {
        font-size: 3em;
    }

    .page-promotions-first-deposit-bonus__final-cta p {
        font-size: 1.6em;
    }
}

@media (max-width: 767px) {
    .page-promotions-first-deposit-bonus__hero {
        padding: 60px 15px;
    }

    .page-promotions-first-deposit-bonus__hero-content {
        width: 100%;
    }

    .page-promotions-first-deposit-bonus__hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-first-deposit-bonus__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-promotions-first-deposit-bonus h1 {
        font-size: 2.2em;
    }

    .page-promotions-first-deposit-bonus h2 {
        font-size: 1.8em;
    }

    .page-promotions-first-deposit-bonus h3 {
        font-size: 1.3em;
    }

    .page-promotions-first-deposit-bonus p,
    .page-promotions-first-deposit-bonus ul li {
        font-size: 1em;
    }

    .page-promotions-first-deposit-bonus__section {
        padding: 40px 15px;
    }

    .page-promotions-first-deposit-bonus__cta-section {
        padding: 30px 15px;
    }

    .page-promotions-first-deposit-bonus__cta-section p {
        font-size: 1.2em;
    }

    .page-promotions-first-deposit-bonus__final-cta {
        padding: 60px 15px;
    }

    .page-promotions-first-deposit-bonus__final-cta h2 {
        font-size: 2em;
    }

    .page-promotions-first-deposit-bonus__final-cta p {
        font-size: 1.2em;
    }

    .page-promotions-first-deposit-bonus__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-first-deposit-bonus__btn--large {
        width: 80%;
    }
}