/* style/promotions-deposit-match-bonuses.css */

.page-promotions-deposit-match-bonuses {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* White text on dark background */
    background-color: #1A2E47; /* Primary dark background */
}

.page-promotions-deposit-match-bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-deposit-match-bonuses__hero-section {
    background: linear-gradient(135deg, #1A2E47 0%, #3a5073 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent border */
}

.page-promotions-deposit-match-bonuses__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions-deposit-match-bonuses__hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-match-bonuses__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E47; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-deposit-match-bonuses__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-deposit-match-bonuses__cta-button--secondary {
    margin-top: 30px;
    background-color: #1A2E47;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-deposit-match-bonuses__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
}

.page-promotions-deposit-match-bonuses__cta-button--large {
    padding: 20px 40px;
    font-size: 1.4em;
    border-radius: 10px;
}

.page-promotions-deposit-match-bonuses__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-match-bonuses__intro-section,
.page-promotions-deposit-match-bonuses__how-it-works,
.page-promotions-deposit-match-bonuses__terms-conditions,
.page-promotions-deposit-match-bonuses__benefits-section,
.page-promotions-deposit-match-bonuses__why-f168,
.page-promotions-deposit-match-bonuses__faq-section,
.page-promotions-deposit-match-bonuses__final-cta {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-deposit-match-bonuses__intro-section,
.page-promotions-deposit-match-bonuses__benefits-section {
    background-color: #2a405a; /* Slightly lighter dark blue */
}

.page-promotions-deposit-match-bonuses__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold title */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-deposit-match-bonuses__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-deposit-match-bonuses__text-content {
    font-size: 1.1em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.page-promotions-deposit-match-bonuses__text-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-deposit-match-bonuses__text-content a:hover {
    text-decoration: underline;
}

.page-promotions-deposit-match-bonuses .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* How It Works Section */
.page-promotions-deposit-match-bonuses__steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-deposit-match-bonuses__step-item {
    background-color: #1A2E47;
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-deposit-match-bonuses__step-item:hover {
    transform: translateY(-10px);
}

.page-promotions-deposit-match-bonuses__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-promotions-deposit-match-bonuses__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-deposit-match-bonuses__step-description {
    font-size: 1.1em;
    color: #E0E0E0;
}

/* Terms & Conditions Section */
.page-promotions-deposit-match-bonuses__terms-conditions {
    background-color: #1A2E47;
}

.page-promotions-deposit-match-bonuses__terms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-deposit-match-bonuses__term-item {
    background-color: #2a405a;
    border-left: 5px solid #FFD700;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-match-bonuses__term-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-deposit-match-bonuses__term-description {
    font-size: 1em;
    color: #E0E0E0;
}

/* Benefits Section */
.page-promotions-deposit-match-bonuses__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.page-promotions-deposit-match-bonuses__benefit-item {
    background-color: #1A2E47;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promotions-deposit-match-bonuses__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-promotions-deposit-match-bonuses__benefit-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-deposit-match-bonuses__benefit-description {
    font-size: 1em;
    color: #E0E0E0;
}

/* Why f168 Section */
.page-promotions-deposit-match-bonuses__why-f168 {
    background-color: #1A2E47;
    text-align: left;
}

.page-promotions-deposit-match-bonuses__why-f168 .page-promotions-deposit-match-bonuses__section-title {
    text-align: center;
}

.page-promotions-deposit-match-bonuses__why-f168 .page-promotions-deposit-match-bonuses__section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.page-promotions-deposit-match-bonuses__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-promotions-deposit-match-bonuses__feature-list li {
    background-color: #2a405a;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-deposit-match-bonuses__list-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-promotions-deposit-match-bonuses__why-f168 .page-promotions-deposit-match-bonuses__cta-button {
    margin-top: 40px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-promotions-deposit-match-bonuses__faq-section {
    background-color: #2a405a;
}

.page-promotions-deposit-match-bonuses__faq-accordion {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions-deposit-match-bonuses__faq-item {
    background-color: #1A2E47;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-promotions-deposit-match-bonuses__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-match-bonuses__faq-question:hover {
    background-color: #3a5073;
}

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

.page-promotions-deposit-match-bonuses__faq-item.active .page-promotions-deposit-match-bonuses__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-deposit-match-bonuses__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #E0E0E0;
}

.page-promotions-deposit-match-bonuses__faq-item.active .page-promotions-deposit-match-bonuses__faq-answer {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 15px 25px 25px;
}

.page-promotions-deposit-match-bonuses__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

/* Final CTA Section */
.page-promotions-deposit-match-bonuses__final-cta {
    background-color: #1A2E47;
    padding-bottom: 80px;
    border-top: 5px solid #FFD700;
}

.page-promotions-deposit-match-bonuses__disclaimer {
    font-size: 0.9em;
    color: #999;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-match-bonuses__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-deposit-match-bonuses__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-deposit-match-bonuses__section-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-match-bonuses__steps {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-deposit-match-bonuses__step-item {
        max-width: 90%;
    }
    .page-promotions-deposit-match-bonuses__terms-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-match-bonuses__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-match-bonuses__feature-list {
        padding: 0 15px;
    }
    .page-promotions-deposit-match-bonuses__faq-accordion {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-match-bonuses__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-match-bonuses__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-deposit-match-bonuses__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-match-bonuses__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-deposit-match-bonuses__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
    .page-promotions-deposit-match-bonuses__intro-section,
    .page-promotions-deposit-match-bonuses__how-it-works,
    .page-promotions-deposit-match-bonuses__terms-conditions,
    .page-promotions-deposit-match-bonuses__benefits-section,
.page-promotions-deposit-match-bonuses__why-f168,
.page-promotions-deposit-match-bonuses__faq-section,
.page-promotions-deposit-match-bonuses__final-cta {
        padding: 40px 0;
    }
    .page-promotions-deposit-match-bonuses__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-deposit-match-bonuses__faq-question::after {
        right: 20px;
    }
    .page-promotions-deposit-match-bonuses__faq-answer {
        padding: 0 20px;
    }
    .page-promotions-deposit-match-bonuses__faq-item.active .page-promotions-deposit-match-bonuses__faq-answer {
        padding: 10px 20px 20px;
    }
}