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

/* Base styles for the page content container */
.page-promotions-welcome-bonus-details {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text on dark backgrounds for good contrast */
    line-height: 1.6;
    background-color: #0F1A2C; /* Slightly darker than main blue for depth, or main blue */
}

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

/* Hero Section */
.page-promotions-welcome-bonus-details__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #0F1A2C); /* Gradient from main blue to darker blue */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-welcome-bonus-details__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

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

.page-promotions-welcome-bonus-details__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Victory Gold for main title */
    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.3em;
    color: #FFFFFF; /* White text for subtitle on dark background */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-welcome-bonus-details__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-welcome-bonus-details__btn--primary {
    background-color: #FFD700; /* Victory Gold button */
    color: #1A2B4C; /* Rick Blue text on gold button */
    font-size: 1.1em;
}

.page-promotions-welcome-bonus-details__btn--primary:hover {
    background-color: #E5C100; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus-details__btn--secondary {
    background-color: #1A2B4C; /* Rick Blue button */
    color: #FFD700; /* Victory Gold text on blue button */
    border: 2px solid #FFD700;
    font-size: 1.1em;
}

.page-promotions-welcome-bonus-details__btn--secondary:hover {
    background-color: #2D4063; /* Lighter blue on hover */
    transform: translateY(-2px);
}

/* General Content Sections */
.page-promotions-welcome-bonus-details__content-section,
.page-promotions-welcome-bonus-details__how-to-claim-section,
.page-promotions-welcome-bonus-details__terms-conditions-section,
.page-promotions-welcome-bonus-details__tips-section,
.page-promotions-welcome-bonus-details__why-choose-section,
.page-promotions-welcome-bonus-details__faq-section,
.page-promotions-welcome-bonus-details__cta-section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Main blue background for content */
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold separator */
}

.page-promotions-welcome-bonus-details__content-section:nth-child(even),
.page-promotions-welcome-bonus-details__how-to-claim-section:nth-child(even),
.page-promotions-welcome-bonus-details__terms-conditions-section:nth-child(even),
.page-promotions-welcome-bonus-details__tips-section:nth-child(even),
.page-promotions-welcome-bonus-details__why-choose-section:nth-child(even),
.page-promotions-welcome-bonus-details__faq-section:nth-child(even),
.page-promotions-welcome-bonus-details__cta-section:nth-child(even) {
    background-color: #0F1A2C; /* Alternate darker blue for sections */
}


.page-promotions-welcome-bonus-details__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main section titles */
    text-align: center;
    margin-bottom: 40px;
    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: #FFD700;
    border-radius: 2px;
}

.page-promotions-welcome-bonus-details__sub-section-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-promotions-welcome-bonus-details__text {
    font-size: 1.1em;
    color: #E0E0E0; /* Light grey text for readability */
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-welcome-bonus-details__list li {
    background-color: rgba(255, 215, 0, 0.05); /* Very subtle gold background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid #FFD700; /* Gold accent on left */
    border-radius: 4px;
    color: #FFFFFF; /* White text for list items */
    font-size: 1em;
}

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

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

.page-promotions-welcome-bonus-details__step-item {
    background-color: #0F1A2C; /* Darker blue for step items */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-welcome-bonus-details__step-item .page-promotions-welcome-bonus-details__step-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__image--inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-promotions-welcome-bonus-details__image--full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Terms and Conditions Section */
.page-promotions-welcome-bonus-details__terms-conditions-section .page-promotions-welcome-bonus-details__text {
    margin-bottom: 30px;
}

.page-promotions-welcome-bonus-details__term-item {
    background-color: #0F1A2C; /* Darker blue for term items */
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus-details__term-item .page-promotions-welcome-bonus-details__sub-section-title {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-promotions-welcome-bonus-details__faq-item {
    background-color: #0F1A2C; /* Darker blue for FAQ items */
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.page-promotions-welcome-bonus-details__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    background-color: #2D4063; /* Slightly lighter blue for question header */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus-details__faq-question:hover {
    background-color: #3B527A;
}

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

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

.page-promotions-welcome-bonus-details__faq-answer {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: #E0E0E0;
    display: none; /* Hidden by default, toggled by JS */
    font-size: 1em;
}

/* Call to Action Section */
.page-promotions-welcome-bonus-details__cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #0F1A2C, #1A2B4C); /* Darker to main blue gradient */
}

.page-promotions-welcome-bonus-details__cta-section .page-promotions-welcome-bonus-details__section-title {
    color: #FFD700;
}

/* Brand Link Styling */
.page-promotions-welcome-bonus-details__brand-link {
    color: #FFD700; /* Gold for RIKVIP links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-welcome-bonus-details__brand-link:hover {
    color: #FFFFFF; /* White on hover */
    text-decoration: underline;
}

/* Small Brand Logo */
.page-promotions-welcome-bonus-details__brand-logo-small {
    text-align: center;
    padding: 30px 0;
    background-color: #0F1A2C;
}

.page-promotions-welcome-bonus-details__logo-image {
    max-width: 150px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-welcome-bonus-details__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-welcome-bonus-details__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-welcome-bonus-details__section-title {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus-details__sub-section-title {
        font-size: 1.5em;
    }

    .page-promotions-welcome-bonus-details__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-welcome-bonus-details__step-by-step {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-welcome-bonus-details__hero-title {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus-details__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-welcome-bonus-details__section-title {
        font-size: 1.8em;
    }

    .page-promotions-welcome-bonus-details__sub-section-title {
        font-size: 1.3em;
    }

    .page-promotions-welcome-bonus-details__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}