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

/* General styles for the page content area */
.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-promotions-deposit-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-promotions-deposit-bonus__hero-section {
    background: linear-gradient(135deg, #4B0082, #6a0dad); /* Dark purple gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
}

.page-promotions-deposit-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-deposit-bonus__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-deposit-bonus__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-deposit-bonus__btn--primary {
    background-color: #FFC107; /* Gold */
    color: #4B0082; /* Deep purple text on gold */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__btn--primary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__btn--secondary {
    background-color: transparent;
    color: #FFC107; /* Gold text */
    border: 2px solid #FFC107;
}

.page-promotions-deposit-bonus__btn--secondary:hover {
    background-color: #FFC107;
    color: #4B0082;
    transform: translateY(-2px);
}

.page-promotions-deposit-bonus__hero-image {
    position: absolute;
    bottom: -50px;
    right: 0;
    opacity: 0.15;
    width: 400px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
}

/* General Section Styles */
.page-promotions-deposit-bonus__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
    background-color: #fefefe;
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #4B0082;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-deposit-bonus__text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-deposit-bonus__highlight {
    color: #4B0082;
    font-weight: bold;
}

.page-promotions-deposit-bonus__image-inline {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-promotions-deposit-bonus__image-full-width {
    display: block;
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Bonus Types Section */
.page-promotions-deposit-bonus__bonus-types {
    background-color: #f0f0f0;
}

.page-promotions-deposit-bonus__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions-deposit-bonus__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.page-promotions-deposit-bonus__feature-title {
    font-size: 1.6em;
    color: #4B0082;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__feature-description {
    font-size: 1em;
    color: #666;
    text-align: left;
}

.page-promotions-deposit-bonus__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #4B0082;
    border-radius: 10px;
    color: #ffffff;
}

.page-promotions-deposit-bonus__cta-text {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: bold;
    color: #FFC107;
}

/* How To Claim Section */
.page-promotions-deposit-bonus__how-to-claim {
    background-color: #ffffff;
}

.page-promotions-deposit-bonus__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-deposit-bonus__step-item {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #FFC107;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-promotions-deposit-bonus__step-title {
    font-size: 1.4em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__step-description {
    font-size: 1em;
    color: #666;
}

.page-promotions-deposit-bonus__step-description a {
    color: #4B0082;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-deposit-bonus__step-description a:hover {
    color: #FFC107;
}

/* Terms & Conditions Section */
.page-promotions-deposit-bonus__terms {
    background-color: #f0f0f0;
}

.page-promotions-deposit-bonus__list {
    list-style: none;
    padding: 0;
}

.page-promotions-deposit-bonus__list-item {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid #4B0082;
}

.page-promotions-deposit-bonus__list-title {
    font-size: 1.3em;
    color: #4B0082;
    margin-bottom: 8px;
}

.page-promotions-deposit-bonus__list-description {
    font-size: 0.95em;
    color: #666;
}

/* Maximize Bonuses Section */
.page-promotions-deposit-bonus__maximize-bonuses {
    background-color: #ffffff;
}

.page-promotions-deposit-bonus__strategy-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-promotions-deposit-bonus__strategy-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 5px solid #FFC107;
}

.page-promotions-deposit-bonus__strategy-title {
    font-size: 1.4em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__strategy-description {
    font-size: 1em;
    color: #666;
}

/* Why J88 Section */
.page-promotions-deposit-bonus__why-j88 {
    background-color: #f0f0f0;
}

.page-promotions-deposit-bonus__benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-deposit-bonus__benefits-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

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

.page-promotions-deposit-bonus__benefits-title {
    font-size: 1.5em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__benefits-description {
    font-size: 1em;
    color: #666;
}

/* FAQ Section */
.page-promotions-deposit-bonus__faq {
    background-color: #ffffff;
}

.page-promotions-deposit-bonus__faq-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.page-promotions-deposit-bonus__faq-question {
    font-size: 1.2em;
    color: #4B0082;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-deposit-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonus__faq-answer {
    font-size: 1em;
    color: #666;
    margin-top: 10px;
    display: none;
    padding-left: 15px;
    border-left: 2px solid #FFC107;
}

.page-promotions-deposit-bonus__faq-item.active .page-promotions-deposit-bonus__faq-answer {
    display: block;
}

/* Final CTA Section */
.page-promotions-deposit-bonus__final-cta {
    background: linear-gradient(135deg, #FFC107, #e6b000);
    color: #4B0082;
    text-align: center;
    padding: 70px 0;
    border-radius: 10px;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
    color: #4B0082;
    font-size: 3em;
    margin-bottom: 25px;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__text {
    color: #4B0082;
    font-size: 1.3em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-promotions-deposit-bonus__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    background-color: #4B0082;
    color: #FFC107;
}

.page-promotions-deposit-bonus__btn--large:hover {
    background-color: #6a0dad;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__hero-image {
        width: 300px;
        bottom: -30px;
    }
    .page-promotions-deposit-bonus__feature-grid,
    .page-promotions-deposit-bonus__strategy-list,
    .page-promotions-deposit-bonus__benefits-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__hero-actions {
        flex-direction: column;
    }
    .page-promotions-deposit-bonus__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__text {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__hero-image {
        display: none;
    }
    .page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__text {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__btn--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__btn {
        width: 100%;
    }
    .page-promotions-deposit-bonus__feature-grid,
    .page-promotions-deposit-bonus__strategy-list,
    .page-promotions-deposit-bonus__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__hero-actions {
        gap: 15px;
    }
}