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

/* Base styles for the page content */
.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FFD700; /* Gold accent */
}

.page-promotions-deposit-bonus__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding: 0 20px;
}

.page-promotions-deposit-bonus__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-bonus__subtitle {
    font-size: 1.3em;
    color: #CCCCCC;
    margin-bottom: 40px;
}

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

.page-promotions-deposit-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-deposit-bonus__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C;
}

.page-promotions-deposit-bonus__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    right: 0;
    width: 40%;
    max-width: 600px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.page-promotions-deposit-bonus__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* General Section Styling */
.page-promotions-deposit-bonus__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
    background-color: #2c3440; /* Slightly lighter dark background */
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-deposit-bonus__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-deposit-bonus p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

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

.page-promotions-deposit-bonus__benefit-item {
    background-color: #2c3440;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a475a;
}

.page-promotions-deposit-bonus__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-bonus__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

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

/* Content with Image */
.page-promotions-deposit-bonus__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-promotions-deposit-bonus__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-promotions-deposit-bonus__text-content {
    flex: 1;
}

.page-promotions-deposit-bonus__image-box {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__feature-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-promotions-deposit-bonus__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__list li {
    background: #2c3440;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__list li strong {
    color: #FFD700;
}

/* Terms Section */
.page-promotions-deposit-bonus__terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions-deposit-bonus__term-item {
    background-color: #2c3440;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #3a475a;
}

.page-promotions-deposit-bonus__terms-note {
    margin-top: 40px;
    font-style: italic;
    color: #B0B0B0;
}

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

.page-promotions-deposit-bonus__faq-item {
    background-color: #2c3440;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3a475a;
}

.page-promotions-deposit-bonus__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3a475a;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__faq-question:hover {
    background-color: #4a5a6d;
}

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

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

.page-promotions-deposit-bonus__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-deposit-bonus__faq-item.active .page-promotions-deposit-bonus__faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 20px;
}

.page-promotions-deposit-bonus__faq-answer p {
    color: #B0B0B0;
    margin-bottom: 0;
}

/* Final CTA Section */
.page-promotions-deposit-bonus__cta-final {
    background: linear-gradient(90deg, #1A202C, #000000); /* Darker gradient */
    padding: 80px 0;
    border-top: 3px solid #FFD700;
}

.page-promotions-deposit-bonus__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus__title {
        font-size: 2.8em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__content-wrapper,
    .page-promotions-deposit-bonus__content-wrapper--reversed {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-deposit-bonus__image-box {
        order: -1; /* Image on top for smaller screens */
        margin-bottom: 30px;
    }
    .page-promotions-deposit-bonus__hero-image-wrapper {
        width: 60%;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero {
        padding: 60px 0;
    }
    .page-promotions-deposit-bonus__title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__subtitle {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-deposit-bonus__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__hero-image-wrapper {
        width: 80%;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__sub-title {
        font-size: 1.4em;
    }
    .page-promotions-deposit-bonus p,
    .page-promotions-deposit-bonus__list li,
    .page-promotions-deposit-bonus__benefit-description {
        font-size: 0.95em;
    }
    .page-promotions-deposit-bonus__benefits-grid,
    .page-promotions-deposit-bonus__terms-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__hero-image-wrapper {
        display: none; /* Hide decorative image on very small screens */
    }
    .page-promotions-deposit-bonus__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__faq-answer p {
        font-size: 0.9em;
    }
}