/* style/promotions-deposit-bonuses.css */
.page-promotions-deposit-bonuses {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions-deposit-bonuses__hero {
    background: linear-gradient(135deg, #1A237E 0%, #3f4a9b 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-deposit-bonuses__hero > * {
    position: relative;
    z-index: 1;
}

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

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

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

.page-promotions-deposit-bonuses__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Dark blue text on gold */
}

.page-promotions-deposit-bonuses__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__button--secondary {
    background-color: #1A237E; /* Dark blue */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-promotions-deposit-bonuses__button--secondary:hover {
    background-color: #0d1242; /* Slightly darker blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-promotions-deposit-bonuses__section--dark {
    background-color: #1A237E; /* Dark blue section */
    color: #fff;
}

.page-promotions-deposit-bonuses__section-title {
    font-size: 2.2em;
    color: #1A237E; /* Dark blue for titles on light background */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__section-title--light {
    color: #FFD700; /* Gold for titles on dark background */
}

.page-promotions-deposit-bonuses__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-promotions-deposit-bonuses__description--light {
    color: #e0e0e0;
}

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

.page-promotions-deposit-bonuses__card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700; /* Gold accent */
}

.page-promotions-deposit-bonuses__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-deposit-bonuses__card-title {
    font-size: 1.6em;
    color: #1A237E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonuses__list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    color: #444;
}

.page-promotions-deposit-bonuses__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-promotions-deposit-bonuses__list li::before {
    content: '✓';
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-promotions-deposit-bonuses__list--light li {
    color: #e0e0e0;
}

.page-promotions-deposit-bonuses__list--light li::before {
    color: #FFD700;
}

.page-promotions-deposit-bonuses__promo-item {
    text-align: center;
    padding: 25px;
    background-color: #2b358e; /* Darker blue variant for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

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

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

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

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

.page-promotions-deposit-bonuses__game-promo-card {
    background-color: #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
}

.page-promotions-deposit-bonuses__game-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-deposit-bonuses__game-promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonuses__game-promo-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-promotions-deposit-bonuses__game-promo-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
}

.page-promotions-deposit-bonuses__game-promo-card .page-promotions-deposit-bonuses__button {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions-deposit-bonuses__tcs {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #2b358e; /* Darker blue variant */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    text-align: left;
}

.page-promotions-deposit-bonuses__tcs-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
}

.page-promotions-deposit-bonuses__tcs p {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonuses__tcs .page-promotions-deposit-bonuses__button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
}

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

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

.page-promotions-deposit-bonuses__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonuses__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

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

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

.page-promotions-deposit-bonuses__faq-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.page-promotions-deposit-bonuses__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-promotions-deposit-bonuses__faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promotions-deposit-bonuses__faq-question {
    font-size: 1.2em;
    color: #1A237E;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.page-promotions-deposit-bonuses__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonuses__faq-answer {
    font-size: 1em;
    color: #555;
    padding: 0 25px 20px;
    margin: 0;
    display: none;
}

.page-promotions-deposit-bonuses__faq-answer.open {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-deposit-bonuses__title {
        font-size: 2.2em;
    }

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

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

    .page-promotions-deposit-bonuses__grid,
    .page-promotions-deposit-bonuses__game-promo-grid,
    .page-promotions-deposit-bonuses__features-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .page-promotions-deposit-bonuses__card,
    .page-promotions-deposit-bonuses__promo-item,
    .page-promotions-deposit-bonuses__game-promo-card,
    .page-promotions-deposit-bonuses__feature-item {
        padding: 20px;
    }

    .page-promotions-deposit-bonuses__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-deposit-bonuses__faq-question::after {
        right: 20px;
    }

    .page-promotions-deposit-bonuses__faq-answer {
        padding: 0 20px 15px;
    }
}