/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text on dark background */
    background-color: #2A2E43; /* Main dark background */
    line-height: 1.6;
}

.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #2A2E43 0%, #4a506e 100%);
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

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

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

.page-promotions-deposit-bonus__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-promotions-deposit-bonus__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
    z-index: 1;
}

.page-promotions-deposit-bonus__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.page-promotions-deposit-bonus__section-intro {
    font-size: 1.15em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.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: #FFD700;
    color: #2A2E43;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-deposit-bonus__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

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

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

.page-promotions-deposit-bonus__btn--text {
    background: none;
    color: #FFD700;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
}

.page-promotions-deposit-bonus__btn--text:hover {
    text-decoration: underline;
    color: #e6c200;
}

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

.page-promotions-deposit-bonus__bonus-card {
    background-color: #3A405A;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__bonus-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-bonus__bonus-card-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-promotions-deposit-bonus__bonus-card-description {
    color: #cccccc;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-deposit-bonus__bonus-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-promotions-deposit-bonus__bonus-card-features li {
    color: #f8f8f8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

.page-promotions-deposit-bonus__bonus-card-features li i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Basic icon for checkmark - replace with actual icon font if available */
.icon-check::before {
    content: '✔';
}

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

.page-promotions-deposit-bonus__step-card {
    background-color: #3A405A;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__step-card:hover {
    transform: translateY(-5px);
}

.page-promotions-deposit-bonus__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #2A2E43;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

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

.page-promotions-deposit-bonus__action-center {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.page-promotions-deposit-bonus__section--terms {
    background-color: #1f2233;
    border-top: 1px solid #FFD700;
    border-bottom: 1px solid #FFD700;
}

.page-promotions-deposit-bonus__terms-content {
    text-align: left;
    color: #cccccc;
    margin-top: 40px;
}

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

.page-promotions-deposit-bonus__terms-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-promotions-deposit-bonus__important-note {
    font-style: italic;
    color: #FFD700;
    margin-top: 25px;
    padding: 15px;
    border-left: 5px solid #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
}

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

.page-promotions-deposit-bonus__why-item {
    background-color: #3A405A;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__why-item:hover {
    transform: translateY(-5px);
}

.page-promotions-deposit-bonus__why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow effect */
}

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

.page-promotions-deposit-bonus__why-item p {
    color: #cccccc;
    font-size: 0.95em;
}

.page-promotions-deposit-bonus__section--faq {
    background-color: #1f2233;
}

.page-promotions-deposit-bonus__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-promotions-deposit-bonus__faq-item {
    background-color: #3A405A;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-deposit-bonus__faq-question:hover {
    background-color: #5a607e;
}

.page-promotions-deposit-bonus__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    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 {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #cccccc;
}

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

.page-promotions-deposit-bonus__cta-final {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
    padding: 80px 5%;
    text-align: center;
    color: #2A2E43;
}

.page-promotions-deposit-bonus__cta-title {
    font-size: 2.8em;
    color: #2A2E43;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions-deposit-bonus__cta-description {
    font-size: 1.2em;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-bonus__btn--large {
    padding: 18px 40px;
    font-size: 1.25em;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__btn--outline {
    background: none;
    border: 2px solid #2A2E43;
    color: #2A2E43;
}

.page-promotions-deposit-bonus__btn--outline:hover {
    background-color: #2A2E43;
    color: #FFD700;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .page-promotions-deposit-bonus__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 5%;
    }

    .page-promotions-deposit-bonus__hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-promotions-deposit-bonus__hero-image-wrapper {
        flex: 1;
        margin-top: 0;
    }

    .page-promotions-deposit-bonus__hero-title {
        font-size: 3.8em;
    }

    .page-promotions-deposit-bonus__action-center {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

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

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

    .page-promotions-deposit-bonus__bonus-card-title {
        font-size: 1.5em;
    }

    .page-promotions-deposit-bonus__step-title {
        font-size: 1.4em;
    }

    .page-promotions-deposit-bonus__cta-title {
        font-size: 2.2em;
    }

    .page-promotions-deposit-bonus__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-promotions-deposit-bonus__bonus-grid,
    .page-promotions-deposit-bonus__steps-grid,
    .page-promotions-deposit-bonus__why-list {
        grid-template-columns: 1fr;
    }
}