/* style/promotions-welcome-bonus-details.css */

/* Base styles for the page content */
.page-promotions-welcome-bonus-details {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background for general content */
    background-color: #1A252F; /* Dark background, slightly lighter than main color */
    line-height: 1.6;
}

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

.page-promotions-welcome-bonus-details__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-welcome-bonus-details__section:nth-child(even) {
    background-color: #2C3E50; /* Main color for alternating sections */
}

.page-promotions-welcome-bonus-details__section-title {
    font-size: 2.8em;
    color: #F39C12; /* Auxiliary color for main titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-welcome-bonus-details__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F39C12;
    border-radius: 2px;
}

.page-promotions-welcome-bonus-details__description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #BDC3C7; /* Lighter grey for descriptions */
}

/* Hero Section */
.page-promotions-welcome-bonus-details__hero {
    background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-welcome-bonus-details__hero-title {
    font-size: 3.5em;
    color: #F39C12;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-promotions-welcome-bonus-details__hero-subtitle {
    font-size: 1.4em;
    color: #ECF0F1;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-promotions-welcome-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;
    border: none;
}

.page-promotions-welcome-bonus-details__btn--primary {
    background-color: #F39C12;
    color: #2C3E50;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.page-promotions-welcome-bonus-details__btn--primary:hover {
    background-color: #E67E22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

.page-promotions-welcome-bonus-details__btn--secondary {
    background-color: #2C3E50;
    color: #F39C12;
    border: 2px solid #F39C12;
}

.page-promotions-welcome-bonus-details__btn--secondary:hover {
    background-color: #F39C12;
    color: #2C3E50;
    transform: translateY(-3px);
}

.page-promotions-welcome-bonus-details__btn--tertiary {
    background-color: transparent;
    color: #F39C12;
    border: 2px solid #F39C12;
}

.page-promotions-welcome-bonus-details__btn--tertiary:hover {
    background-color: #F39C12;
    color: #2C3E50;
    transform: translateY(-3px);
}

.page-promotions-welcome-bonus-details__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Content Grid */
.page-promotions-welcome-bonus-details__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.page-promotions-welcome-bonus-details__content-grid:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image/text position */
}

.page-promotions-welcome-bonus-details__text-content {
    flex: 1;
}

.page-promotions-welcome-bonus-details__text-content p {
    margin-bottom: 20px;
    color: #ECF0F1;
}

.page-promotions-welcome-bonus-details__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-welcome-bonus-details__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Bonus Types Section */
.page-promotions-welcome-bonus-details__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-welcome-bonus-details__card {
    background-color: #1A252F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #34495E;
}

.page-promotions-welcome-bonus-details__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.page-promotions-welcome-bonus-details__card-title {
    font-size: 1.8em;
    color: #F39C12;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__card-text {
    color: #BDC3C7;
    margin-bottom: 20px;
}

.page-promotions-welcome-bonus-details__card-img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

/* Eligibility Section */
.page-promotions-welcome-bonus-details__content-block {
    background-color: #1A252F;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #34495E;
}

.page-promotions-welcome-bonus-details__sub-title {
    font-size: 1.8em;
    color: #F39C12;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.page-promotions-welcome-bonus-details__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #ECF0F1;
}

.page-promotions-welcome-bonus-details__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #27AE60; /* Green checkmark */
}

/* How to Claim Section */
.page-promotions-welcome-bonus-details__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-welcome-bonus-details__step-card {
    background-color: #2C3E50;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #34495E;
}

.page-promotions-welcome-bonus-details__step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #F39C12;
    color: #2C3E50;
    font-size: 2.5em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-20deg);
    z-index: 1;
}

.page-promotions-welcome-bonus-details__step-title {
    font-size: 1.8em;
    color: #F39C12;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__step-text {
    color: #BDC3C7;
    margin-bottom: 20px;
}

.page-promotions-welcome-bonus-details__step-img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-top: 20px;
    border-radius: 8px;
}

/* Why Choose Section */
.page-promotions-welcome-bonus-details__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-promotions-welcome-bonus-details__feature-list li {
    background-color: #1A252F;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #34495E;
}

.page-promotions-welcome-bonus-details__feature-title {
    font-size: 1.5em;
    color: #F39C12;
    margin-bottom: 10px;
}

.page-promotions-welcome-bonus-details__feature-list li p {
    color: #ECF0F1;
}

/* Responsible Gaming Section */
.page-promotions-welcome-bonus-details__responsible-gaming .page-promotions-welcome-bonus-details__content-grid {
    flex-direction: row; /* Ensure image is on left for this section */
}

.page-promotions-welcome-bonus-details__responsible-gaming .page-promotions-welcome-bonus-details__content-grid .page-promotions-welcome-bonus-details__image-wrapper {
    flex: 0.8;
}

.page-promotions-welcome-bonus-details__responsible-gaming .page-promotions-welcome-bonus-details__content-grid .page-promotions-welcome-bonus-details__text-content {
    flex: 1.2;
}

.page-promotions-welcome-bonus-details__responsible-gaming .page-promotions-welcome-bonus-details__img {
    max-height: 350px;
    object-fit: cover;
}

/* FAQ Section */
.page-promotions-welcome-bonus-details__faq-items {
    margin-top: 40px;
    text-align: left;
}

.page-promotions-welcome-bonus-details__faq-item {
    background-color: #2C3E50;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #34495E;
    overflow: hidden;
}

.page-promotions-welcome-bonus-details__faq-question {
    font-size: 1.4em;
    color: #F39C12;
    padding: 20px 30px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus-details__faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus-details__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-welcome-bonus-details__faq-answer {
    padding: 0 30px 20px;
    color: #BDC3C7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-welcome-bonus-details__faq-answer.active {
    max-height: 300px; /* Adjust as needed */
    padding: 0 30px 30px;
}

/* CTA Banner */
.page-promotions-welcome-bonus-details__cta-banner {
    background: linear-gradient(90deg, #F39C12 0%, #E67E22 100%);
    padding: 80px 0;
    text-align: center;
    color: #2C3E50;
}

.page-promotions-welcome-bonus-details__cta-title {
    font-size: 3em;
    color: #2C3E50;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-promotions-welcome-bonus-details__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #34495E;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-welcome-bonus-details__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-welcome-bonus-details__section-title {
        font-size: 2.2em;
    }
    .page-promotions-welcome-bonus-details__content-grid {
        flex-direction: column;
    }
    .page-promotions-welcome-bonus-details__content-grid:nth-child(even) {
        flex-direction: column;
    }
    .page-promotions-welcome-bonus-details__responsible-gaming .page-promotions-welcome-bonus-details__content-grid {
        flex-direction: column;
    }
    .page-promotions-welcome-bonus-details__responsible-gaming .page-promotions-welcome-bonus-details__content-grid .page-promotions-welcome-bonus-details__image-wrapper,
    .page-promotions-welcome-bonus-details__responsible-gaming .page-promotions-welcome-bonus-details__content-grid .page-promotions-welcome-bonus-details__text-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .page-promotions-welcome-bonus-details__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-welcome-bonus-details__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-welcome-bonus-details__section {
        padding: 40px 0;
    }
    .page-promotions-welcome-bonus-details__section-title {
        font-size: 1.8em;
    }
    .page-promotions-welcome-bonus-details__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-welcome-bonus-details__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-welcome-bonus-details__card-grid, .page-promotions-welcome-bonus-details__steps-grid, .page-promotions-welcome-bonus-details__feature-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-welcome-bonus-details__cta-title {
        font-size: 2.2em;
    }
    .page-promotions-welcome-bonus-details__cta-text {
        font-size: 1em;
    }
    .page-promotions-welcome-bonus-details__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-promotions-welcome-bonus-details__faq-question::after {
        right: 20px;
    }
    .page-promotions-welcome-bonus-details__faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-welcome-bonus-details__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-welcome-bonus-details__hero-subtitle {
        font-size: 0.95em;
    }
    .page-promotions-welcome-bonus-details__section-title {
        font-size: 1.6em;
    }
    .page-promotions-welcome-bonus-details__cta-title {
        font-size: 1.8em;
    }
}