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

/* --- Base Styles for Page-Specific Content --- */
.page-promotions-first-deposit-bonus-details {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light gray for general text on dark background */
    background-color: #1A1A1A; /* Dark background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space for footer */
}

.page-promotions-first-deposit-bonus-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
.page-promotions-first-deposit-bonus-details__title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-first-deposit-bonus-details__subtitle {
    font-size: 1.3em;
    color: #CCCCCC;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-first-deposit-bonus-details__section-heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section headings */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus-details__sub-heading {
    font-size: 1.8em;
    color: #CC0000; /* Deep red for sub-headings */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-first-deposit-bonus-details__paragraph {
    font-size: 1.1em;
    color: #E0E0E0; /* Slightly lighter gray for paragraphs */
    margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus-details__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

.page-promotions-first-deposit-bonus-details__list li strong {
    color: #FFD700; /* Gold for strong text in lists */
}

/* --- Buttons --- */
.page-promotions-first-deposit-bonus-details__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-promotions-first-deposit-bonus-details__btn--primary {
    background-color: #CC0000; /* Deep red primary button */
    color: #FFFFFF; /* White text for contrast */
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus-details__btn--primary:hover {
    background-color: #E60000; /* Lighter red on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.6);
}

.page-promotions-first-deposit-bonus-details__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700; /* Gold border */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions-first-deposit-bonus-details__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A1A1A; /* Dark text on gold hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions-first-deposit-bonus-details__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
    margin-top: 15px;
}

/* --- Hero Section --- */
.page-promotions-first-deposit-bonus-details__hero {
    background: linear-gradient(135deg, #CC0000 0%, #800000 100%); /* Deep red gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold border at bottom */
}

.page-promotions-first-deposit-bonus-details__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns]') no-repeat center center/cover; /* Abstract background pattern */
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-first-deposit-bonus-details__hero .page-promotions-first-deposit-bonus-details__container {
    position: relative;
    z-index: 1;
}

.page-promotions-first-deposit-bonus-details__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* --- Content Sections --- */
.page-promotions-first-deposit-bonus-details__content-section,
.page-promotions-first-deposit-bonus-details__steps-section,
.page-promotions-first-deposit-bonus-details__terms-section,
.page-promotions-first-deposit-bonus-details__faq-section,
.page-promotions-first-deposit-bonus-details__cta-bottom,
.page-promotions-first-deposit-bonus-details__responsible-gaming {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold separator */
}

.page-promotions-first-deposit-bonus-details__content-section:last-of-type,
.page-promotions-first-deposit-bonus-details__responsible-gaming {
    border-bottom: none;
}

/* --- Image Styling --- */
.page-promotions-first-deposit-bonus-details__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-promotions-first-deposit-bonus-details__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

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

/* --- Step Cards Section --- */
.page-promotions-first-deposit-bonus-details__step-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-first-deposit-bonus-details__step-card {
    background-color: #2A2A2A; /* Slightly lighter dark background for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-top: 4px solid #CC0000; /* Red top border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus-details__step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-top-color: #FFD700; /* Gold top border on hover */
}

.page-promotions-first-deposit-bonus-details__step-number {
    font-size: 2.5em;
    color: #FFD700; /* Gold number */
    font-weight: bold;
    margin-bottom: 15px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid #FFD700;
}

.page-promotions-first-deposit-bonus-details__step-title {
    font-size: 1.5em;
    color: #CC0000; /* Deep red title */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-first-deposit-bonus-details__step-description {
    color: #E0E0E0;
    font-size: 1em;
    margin-bottom: 20px;
}

/* --- FAQ Section --- */
.page-promotions-first-deposit-bonus-details__faq-item {
    background-color: #2A2A2A;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #CC0000; /* Red left border */
}

.page-promotions-first-deposit-bonus-details__faq-item:hover {
    border-left-color: #FFD700; /* Gold left border on hover */
}

.page-promotions-first-deposit-bonus-details__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold for questions */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.page-promotions-first-deposit-bonus-details__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus-details__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-first-deposit-bonus-details__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-first-deposit-bonus-details__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

/* --- Bottom CTA Section --- */
.page-promotions-first-deposit-bonus-details__cta-bottom {
    text-align: center;
    background-color: #222222; /* Slightly darker background */
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

/* --- Responsible Gaming Section --- */
.page-promotions-first-deposit-bonus-details__responsible-gaming {
    text-align: center;
    background-color: #1A1A1A;
    padding-bottom: 80px;
}

.page-promotions-first-deposit-bonus-details__responsible-gaming .page-promotions-first-deposit-bonus-details__section-heading {
    color: #CC0000; /* Red for responsible gaming heading */
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus-details__title {
        font-size: 2.2em;
    }

    .page-promotions-first-deposit-bonus-details__subtitle {
        font-size: 1.1em;
    }

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

    .page-promotions-first-deposit-bonus-details__sub-heading {
        font-size: 1.5em;
    }

    .page-promotions-first-deposit-bonus-details__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-first-deposit-bonus-details__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-promotions-first-deposit-bonus-details__step-card-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-first-deposit-bonus-details__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus-details__title {
        font-size: 1.8em;
    }

    .page-promotions-first-deposit-bonus-details__section-heading {
        font-size: 1.5em;
    }

    .page-promotions-first-deposit-bonus-details__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}