/* style/promotions-game-specific-bonuses.css */
.page-promotions-game-specific-bonuses {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #0A2463; /* Main background color */
    line-height: 1.6;
}

.page-promotions-game-specific-bonuses a {
    color: #E3A81D; /* Accent color for links */
    text-decoration: none;
}

.page-promotions-game-specific-bonuses a:hover {
    text-decoration: underline;
    color: #ebc261; /* Slightly lighter accent on hover */
}

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

.page-promotions-game-specific-bonuses__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9f 100%); /* Gradient with primary color */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-game-specific-bonuses__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3A81D; /* Accent color for main title */
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-promotions-game-specific-bonuses__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-promotions-game-specific-bonuses__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-promotions-game-specific-bonuses__btn--primary {
    background-color: #E3A81D; /* Primary button using accent color */
    color: #0A2463;
}

.page-promotions-game-specific-bonuses__btn--primary:hover {
    background-color: #ebc261; /* Lighter accent on hover */
    transform: translateY(-3px);
}

.page-promotions-game-specific-bonuses__btn--secondary {
    background-color: #0A2463; /* Secondary button using primary color */
    color: #E3A81D;
    border: 2px solid #E3A81D;
}

.page-promotions-game-specific-bonuses__btn--secondary:hover {
    background-color: #1a3c7a; /* Darker primary on hover */
    transform: translateY(-3px);
}

.page-promotions-game-specific-bonuses__intro-section,
.page-promotions-game-specific-bonuses__bonus-categories,
.page-promotions-game-specific-bonuses__how-to-claim,
.page-promotions-game-specific-bonuses__terms-conditions,
.page-promotions-game-specific-bonuses__why-choose-uu88,
.page-promotions-game-specific-bonuses__faq-section,
.page-promotions-game-specific-bonuses__cta-section {
    padding: 60px 0;
    background-color: #0A2463; /* Ensure consistent background */
    color: #f0f0f0; /* Ensure text visibility */
}

.page-promotions-game-specific-bonuses__section-title {
    font-size: 2.5em;
    color: #E3A81D; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-game-specific-bonuses__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E3A81D;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions-game-specific-bonuses__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #cccccc;
}

.page-promotions-game-specific-bonuses__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-game-specific-bonuses__grid--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-promotions-game-specific-bonuses__card {
    background-color: #1a3c7a; /* Darker variant of primary for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-game-specific-bonuses__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(227, 168, 29, 0.5)); /* Subtle glow for icons */
}

.page-promotions-game-specific-bonuses__card-title {
    font-size: 1.8em;
    color: #E3A81D; /* Accent color for card titles */
    margin-bottom: 15px;
}

.page-promotions-game-specific-bonuses__card-text {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-promotions-game-specific-bonuses__steps {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-game-specific-bonuses__steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: #1a3c7a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-game-specific-bonuses__step-number {
    background-color: #E3A81D;
    color: #0A2463;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-right: 15px;
}

.page-promotions-game-specific-bonuses__step-text {
    font-size: 1.1em;
    color: #f0f0f0;
    margin: 0;
}

.page-promotions-game-specific-bonuses__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-game-specific-bonuses__list li {
    background-color: #1a3c7a;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #E3A81D;
    border-radius: 5px;
    color: #cccccc;
}

.page-promotions-game-specific-bonuses__list-item-text {
    margin: 0;
    font-size: 1em;
}

.page-promotions-game-specific-bonuses__feature-item {
    text-align: center;
    padding: 25px;
    background-color: #1a3c7a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-game-specific-bonuses__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(227, 168, 29, 0.5));
}

.page-promotions-game-specific-bonuses__feature-title {
    font-size: 1.6em;
    color: #E3A81D;
    margin-bottom: 10px;
}

.page-promotions-game-specific-bonuses__feature-text {
    font-size: 0.95em;
    color: #cccccc;
}

.page-promotions-game-specific-bonuses__faq-item {
    background-color: #1a3c7a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-game-specific-bonuses__faq-question {
    padding: 20px;
    margin: 0;
    font-size: 1.2em;
    color: #E3A81D;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-game-specific-bonuses__faq-question:hover {
    background-color: #2a4e9b;
}

.page-promotions-game-specific-bonuses__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #E3A81D;
    transition: transform 0.3s ease;
}

.page-promotions-game-specific-bonuses__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-game-specific-bonuses__faq-answer {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 1em;
    color: #cccccc;
    display: none;
}

.page-promotions-game-specific-bonuses__cta-section {
    text-align: center;
    background-color: #1a3c7a; /* Darker variant for CTA section */
    padding: 80px 0;
}

.page-promotions-game-specific-bonuses__cta-section .page-promotions-game-specific-bonuses__section-title {
    color: #ffffff;
}

.page-promotions-game-specific-bonuses__cta-section .page-promotions-game-specific-bonuses__section-title::after {
    background-color: #ffffff;
}

.page-promotions-game-specific-bonuses__cta-section .page-promotions-game-specific-bonuses__text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-game-specific-bonuses__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-game-specific-bonuses__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-game-specific-bonuses__section-title {
        font-size: 2em;
    }

    .page-promotions-game-specific-bonuses__grid--two-cols {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-game-specific-bonuses__hero-section,
    .page-promotions-game-specific-bonuses__intro-section,
    .page-promotions-game-specific-bonuses__bonus-categories,
    .page-promotions-game-specific-bonuses__how-to-claim,
    .page-promotions-game-specific-bonuses__terms-conditions,
    .page-promotions-game-specific-bonuses__why-choose-uu88,
    .page-promotions-game-specific-bonuses__faq-section,
    .page-promotions-game-specific-bonuses__cta-section {
        padding: 40px 0;
    }

    .page-promotions-game-specific-bonuses__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-game-specific-bonuses__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-game-specific-bonuses__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-game-specific-bonuses__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions-game-specific-bonuses__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-game-specific-bonuses__grid--two-cols {
        grid-template-columns: 1fr;
    }

    .page-promotions-game-specific-bonuses__card,
    .page-promotions-game-specific-bonuses__feature-item,
    .page-promotions-game-specific-bonuses__faq-item {
        padding: 20px;
    }

    .page-promotions-game-specific-bonuses__card-title {
        font-size: 1.5em;
    }

    .page-promotions-game-specific-bonuses__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }

    .page-promotions-game-specific-bonuses__step-text,
    .page-promotions-game-specific-bonuses__list-item-text,
    .page-promotions-game-specific-bonuses__feature-text,
    .page-promotions-game-specific-bonuses__faq-question,
    .page-promotions-game-specific-bonuses__faq-answer {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-promotions-game-specific-bonuses__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-game-specific-bonuses__hero-subtitle {
        font-size: 0.9em;
    }

    .page-promotions-game-specific-bonuses__section-title {
        font-size: 1.5em;
    }

    .page-promotions-game-specific-bonuses__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotions-game-specific-bonuses__card-title {
        font-size: 1.3em;
    }

    .page-promotions-game-specific-bonuses__step-text,
    .page-promotions-game-specific-bonuses__list-item-text,
    .page-promotions-game-specific-bonuses__feature-text,
    .page-promotions-game-specific-bonuses__faq-question,
    .page-promotions-game-specific-bonuses__faq-answer {
        font-size: 0.9em;
    }
}