/* style/promotions-holiday-bonuses.css */
.page-promotions-holiday-bonuses {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
}

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

.page-promotions-holiday-bonuses__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-holiday-bonuses__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    opacity: 0.3;
    z-index: 0;
}

.page-promotions-holiday-bonuses__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);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-promotions-holiday-bonuses__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-promotions-holiday-bonuses__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.page-promotions-holiday-bonuses__hero-btn:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-holiday-bonuses__section {
    padding: 60px 0;
    background-color: #1A202C; /* Consistent dark background */
}

.page-promotions-holiday-bonuses__section:nth-of-type(even) {
    background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-promotions-holiday-bonuses__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-holiday-bonuses__intro p,
.page-promotions-holiday-bonuses__highlights p,
.page-promotions-holiday-bonuses__guide p,
.page-promotions-holiday-bonuses__games p,
.page-promotions-holiday-bonuses__benefits p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-holiday-bonuses__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-holiday-bonuses__list li {
    background-color: #2D3748; /* Darker background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    font-size: 1.1em;
}

.page-promotions-holiday-bonuses__list li strong {
    color: #FFD700;
}

.page-promotions-holiday-bonuses__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-bonuses__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-holiday-bonuses__step-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-holiday-bonuses__step-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions-holiday-bonuses__step-item p {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-holiday-bonuses__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
}

.page-promotions-holiday-bonuses__btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-holiday-bonuses__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

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

.page-promotions-holiday-bonuses__game-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-promotions-holiday-bonuses__game-item img {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-holiday-bonuses__game-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-promotions-holiday-bonuses__game-item p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-promotions-holiday-bonuses__faq-item {
    background-color: #2D3748;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-bonuses__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promotions-holiday-bonuses__faq-item p {
    font-size: 1em;
    line-height: 1.8;
    color: #CCCCCC;
}

.page-promotions-holiday-bonuses__cta {
    background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient for CTA */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #1A202C; /* Dark text on gold background */
}

.page-promotions-holiday-bonuses__cta-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 800px;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions-holiday-bonuses__cta-title {
    font-size: 3em;
    color: #1A202C; /* Dark title on gold */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-promotions-holiday-bonuses__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #333333;
}

.page-promotions-holiday-bonuses__cta-btn {
    display: inline-block;
    background-color: #1A202C; /* Dark button on gold */
    color: #FFD700; /* Gold text on dark */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.page-promotions-holiday-bonuses__cta-btn:hover {
    background-color: #0d121c; /* Even darker on hover */
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions-holiday-bonuses__hero-title {
        font-size: 3em;
    }
    .page-promotions-holiday-bonuses__section-title {
        font-size: 2em;
    }
    .page-promotions-holiday-bonuses__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-holiday-bonuses__hero {
        padding: 60px 0;
    }
    .page-promotions-holiday-bonuses__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-holiday-bonuses__hero-description {
        font-size: 1em;
    }
    .page-promotions-holiday-bonuses__hero-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-holiday-bonuses__section {
        padding: 40px 0;
    }
    .page-promotions-holiday-bonuses__section-title {
        font-size: 1.8em;
    }
    .page-promotions-holiday-bonuses__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions-holiday-bonuses__game-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-holiday-bonuses__cta {
        padding: 60px 0;
    }
    .page-promotions-holiday-bonuses__cta-title {
        font-size: 2em;
    }
    .page-promotions-holiday-bonuses__cta-description {
        font-size: 1.1em;
    }
    .page-promotions-holiday-bonuses__cta-btn {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-holiday-bonuses__hero-title {
        font-size: 2em;
    }
    .page-promotions-holiday-bonuses__section-title {
        font-size: 1.5em;
    }
    .page-promotions-holiday-bonuses__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-holiday-bonuses__list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }
    .page-promotions-holiday-bonuses__faq-item h3 {
        font-size: 1.2em;
    }
    .page-promotions-holiday-bonuses__faq-item p {
        font-size: 0.9em;
    }
    .page-promotions-holiday-bonuses__hero-btn, .page-promotions-holiday-bonuses__cta-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}