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

/* Variables for consistent styling and easy modification */
:root {
    --page-promotions-deposit-bonus-primary-color: #0A1931; /* Dark Blue */
    --page-promotions-deposit-bonus-secondary-color: #FFD700; /* Gold */
    --page-promotions-deposit-bonus-text-light: #FFFFFF;
    --page-promotions-deposit-bonus-text-dark: #0A1931;
    --page-promotions-deposit-bonus-accent-color: #FFEB3B; /* Slightly lighter gold for highlights */
    --page-promotions-deposit-bonus-gray-text: #E0E0E0; /* Light gray for secondary text on dark background */
    --page-promotions-deposit-bonus-border-color: rgba(255, 215, 0, 0.3); /* Gold with transparency */
}

.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-promotions-deposit-bonus-text-light); /* Default text color for main content */
    background-color: var(--page-promotions-deposit-bonus-primary-color); /* Default background */
}

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

.page-promotions-deposit-bonus__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
    background-color: #1a2a47; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.8em;
    color: var(--page-promotions-deposit-bonus-secondary-color);
    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: var(--page-promotions-deposit-bonus-secondary-color);
    border-radius: 2px;
}

.page-promotions-deposit-bonus h2,
.page-promotions-deposit-bonus h3 {
    color: var(--page-promotions-deposit-bonus-secondary-color);
}

.page-promotions-deposit-bonus p {
    color: var(--page-promotions-deposit-bonus-gray-text);
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus a {
    color: var(--page-promotions-deposit-bonus-secondary-color);
    text-decoration: none;
}

.page-promotions-deposit-bonus a:hover {
    text-decoration: underline;
    color: var(--page-promotions-deposit-bonus-accent-color);
}

.page-promotions-deposit-bonus .highlight {
    color: var(--page-promotions-deposit-bonus-secondary-color);
}

/* Hero Section */
.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, var(--page-promotions-deposit-bonus-primary-color) 0%, #1a2a47 100%);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    color: var(--page-promotions-deposit-bonus-text-light);
}

.page-promotions-deposit-bonus__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,gold_pattern,dark_blue,subtle_texture]') no-repeat center center/cover; /* Background pattern */
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-deposit-bonus__hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
}

.page-promotions-deposit-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-promotions-deposit-bonus-text-light);
}

.page-promotions-deposit-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-promotions-deposit-bonus-gray-text);
}

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

.page-promotions-deposit-bonus__hero-image {
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.page-promotions-deposit-bonus__btn--primary {
    background-color: var(--page-promotions-deposit-bonus-secondary-color);
    color: var(--page-promotions-deposit-bonus-primary-color); /* Dark text on gold button */
    border: 2px solid var(--page-promotions-deposit-bonus-secondary-color);
}

.page-promotions-deposit-bonus__btn--primary:hover {
    background-color: var(--page-promotions-deposit-bonus-accent-color);
    border-color: var(--page-promotions-deposit-bonus-accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions-deposit-bonus__btn--secondary {
    background-color: transparent;
    color: var(--page-promotions-deposit-bonus-secondary-color);
    border: 2px solid var(--page-promotions-deposit-bonus-secondary-color);
}

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

.page-promotions-deposit-bonus__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 20px;
}

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

.page-promotions-deposit-bonus__promo-card {
    background-color: #1a2a47;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-promotions-deposit-bonus-border-color);
}

.page-promotions-deposit-bonus__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-bonus__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__promo-card-title {
    font-size: 1.8em;
    color: var(--page-promotions-deposit-bonus-secondary-color);
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__promo-card p {
    color: var(--page-promotions-deposit-bonus-gray-text);
    font-size: 1em;
}

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

.page-promotions-deposit-bonus__step-card {
    background-color: #0A1931;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-promotions-deposit-bonus-border-color);
}

.page-promotions-deposit-bonus__step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--page-promotions-deposit-bonus-secondary-color);
    color: var(--page-promotions-deposit-bonus-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__step-title {
    font-size: 1.6em;
    color: var(--page-promotions-deposit-bonus-secondary-color);
    margin-bottom: 10px;
}

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

/* Call to Action */
.page-promotions-deposit-bonus__call-to-action {
    margin-top: 50px;
}

/* Terms and Conditions */
.page-promotions-deposit-bonus__terms-list {
    text-align: left;
    margin-top: 40px;
}

.page-promotions-deposit-bonus__term-item {
    background-color: #1a2a47;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--page-promotions-deposit-bonus-secondary-color);
}

.page-promotions-deposit-bonus__term-title {
    font-size: 1.5em;
    color: var(--page-promotions-deposit-bonus-secondary-color);
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__term-item p {
    color: var(--page-promotions-deposit-bonus-gray-text);
    font-size: 1em;
}

.page-promotions-deposit-bonus__important-note {
    font-style: italic;
    margin-top: 30px;
    color: var(--page-promotions-deposit-bonus-accent-color);
}

/* Why 13win bet Section */
.page-promotions-deposit-bonus__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions-deposit-bonus__feature-item {
    background-color: #1a2a47;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-promotions-deposit-bonus-border-color);
}

.page-promotions-deposit-bonus__feature-title {
    font-size: 1.7em;
    color: var(--page-promotions-deposit-bonus-secondary-color);
    margin-bottom: 15px;
}

/* Responsible Gaming Section */
.page-promotions-deposit-bonus__responsible-gaming-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 50px;
}

/* FAQ Section */
.page-promotions-deposit-bonus__faq {
    text-align: left;
}

.page-promotions-deposit-bonus__faq-item {
    background-color: #1a2a47;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid var(--page-promotions-deposit-bonus-border-color);
}

.page-promotions-deposit-bonus__faq-question {
    font-size: 1.4em;
    color: var(--page-promotions-deposit-bonus-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-deposit-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: var(--page-promotions-deposit-bonus-secondary-color);
    transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonus__faq-answer {
    color: var(--page-promotions-deposit-bonus-gray-text);
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding-left: 10px; /* Indent for answers */
}

.page-promotions-deposit-bonus__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus__hero {
        flex-direction: column;
        padding: 80px 20px;
        text-align: center;
    }

    .page-promotions-deposit-bonus__hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

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

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

    .page-promotions-deposit-bonus__hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-deposit-bonus__hero-image {
        max-width: 80%;
    }

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

    .page-promotions-deposit-bonus__promo-grid,
    .page-promotions-deposit-bonus__steps-grid,
    .page-promotions-deposit-bonus__feature-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .page-promotions-deposit-bonus__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-deposit-bonus__hero-actions {
        flex-direction: column;
    }
}