/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light 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: 20px;
}

.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark gradient for hero */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-deposit-bonus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

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

.page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.4em;
    color: #CBD5E0;
    margin-bottom: 30px;
}

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

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

.page-promotions-deposit-bonus__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.page-promotions-deposit-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-promotions-deposit-bonus__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-deposit-bonus__section:last-of-type {
    border-bottom: none;
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-deposit-bonus__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-bonus__introduction p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 15px;
}

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

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

.page-promotions-deposit-bonus__bonus-card {
    background-color: #2D3748; /* Slightly lighter dark background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-deposit-bonus__bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

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

.page-promotions-deposit-bonus__bonus-card p {
    color: #CBD5E0;
    font-size: 1em;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions-deposit-bonus__bonus-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    width: 100%;
}

.page-promotions-deposit-bonus__bonus-card ul li {
    background-color: #1A202C;
    border-left: 3px solid #FFD700;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #E2E8F0;
    font-size: 0.95em;
}

.page-promotions-deposit-bonus__call-to-action-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
    color: #E2E8F0;
}

.page-promotions-deposit-bonus__call-to-action-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-deposit-bonus__call-to-action-text a:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

.page-promotions-deposit-bonus__step-list li {
    background-color: #2D3748;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-deposit-bonus__step-list p {
    color: #CBD5E0;
    font-size: 1em;
}

.page-promotions-deposit-bonus__step-list a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-deposit-bonus__step-list a:hover {
    text-decoration: underline;
}

.page-promotions-deposit-bonus__action-box {
    background-color: #FFD700; /* Gold background for action box */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-bonus__action-box p {
    font-size: 1.3em;
    color: #1A202C; /* Dark text on gold */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-deposit-bonus__cta-button--secondary {
    background-color: #1A202C; /* Dark button on gold background */
    color: #FFD700; /* Gold text on dark button */
    border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__cta-button--secondary:hover {
    background-color: #0d121c;
    color: #e6c200;
    border-color: #e6c200;
}

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

.page-promotions-deposit-bonus__info-item {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.page-promotions-deposit-bonus__info-item p {
    color: #CBD5E0;
    font-size: 0.95em;
    flex-grow: 1;
}

.page-promotions-deposit-bonus__disclaimer {
    text-align: center;
    font-style: italic;
    color: #A0AEC0;
    margin-top: 40px;
    font-size: 0.9em;
}

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

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

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

.page-promotions-deposit-bonus__content-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-bonus__responsible-gaming p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 15px;
    color: #CBD5E0;
}

.page-promotions-deposit-bonus__accordion {
    margin-top: 30px;
}

.page-promotions-deposit-bonus__accordion-item {
    background-color: #2D3748;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-deposit-bonus__accordion-header {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__accordion-header:hover {
    background-color: #3b4556;
}

.page-promotions-deposit-bonus__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
}

.page-promotions-deposit-bonus__accordion-item.active .page-promotions-deposit-bonus__accordion-header::after {
    content: '-';
}

.page-promotions-deposit-bonus__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #E2E8F0;
}

.page-promotions-deposit-bonus__accordion-item.active .page-promotions-deposit-bonus__accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

.page-promotions-deposit-bonus__final-cta {
    background-color: #FFD700; /* Gold background for final CTA */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus__final-cta-content {
    position: relative;
    z-index: 2;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
    color: #1A202C; /* Dark text on gold */
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title::after {
    background-color: #1A202C;
}

.page-promotions-deposit-bonus__final-cta p {
    font-size: 1.3em;
    color: #1A202C;
    margin-bottom: 30px;
}

.page-promotions-deposit-bonus__cta-button--primary {
    background-color: #1A202C; /* Dark button on gold background */
    color: #FFD700; /* Gold text on dark button */
    border: 2px solid #1A202C;
}

.page-promotions-deposit-bonus__cta-button--primary:hover {
    background-color: #0d121c;
    color: #e6c200;
    border-color: #0d121c;
}

.page-promotions-deposit-bonus__final-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

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

    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-deposit-bonus__section-title {
        font-size: 2em;
    }

    .page-promotions-deposit-bonus__bonus-card-grid,
    .page-promotions-deposit-bonus__info-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-deposit-bonus__accordion-header {
        font-size: 1.2em;
        padding: 15px;
    }

    .page-promotions-deposit-bonus__list li {
        font-size: 1em;
    }
}

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

    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-deposit-bonus__cta-button {
        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__bonus-card,
    .page-promotions-deposit-bonus__info-item,
    .page-promotions-deposit-bonus__step-list li {
        padding: 20px;
    }

    .page-promotions-deposit-bonus__card-title,
    .page-promotions-deposit-bonus__info-title {
        font-size: 1.3em;
    }

    .page-promotions-deposit-bonus__action-box p,
    .page-promotions-deposit-bonus__final-cta p {
        font-size: 1.1em;
    }
}