/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #ffffff; /* Default body background */
}

.page-promotions-new-user-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
}

.page-promotions-new-user-bonus__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    color: #ffffff;
    overflow: hidden;
    text-align: center;
}

.page-promotions-new-user-bonus__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle overlay */
}

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-promotions-new-user-bonus__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__btn-primary {
    background-color: #EA7C07; /* Login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background-color: #cc6a00;
    border-color: #cc6a00;
}

.page-promotions-new-user-bonus__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

/* Details Section */
.page-promotions-new-user-bonus__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-new-user-bonus__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__feature-card:hover {
    transform: translateY(-10px);
}

.page-promotions-new-user-bonus__feature-icon {
    width: 200px; /* Minimum size */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__feature-text {
    font-size: 1em;
    color: #555555;
}

/* Guide Section */
.page-promotions-new-user-bonus__guide-section {
    padding: 80px 20px;
    color: #ffffff;
}

.page-promotions-new-user-bonus__guide-section .page-promotions-new-user-bonus__section-title {
    color: #ffffff;
}

.page-promotions-new-user-bonus__guide-section .page-promotions-new-user-bonus__section-description {
    color: #f0f0f0;
}

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

.page-promotions-new-user-bonus__step-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-new-user-bonus__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #EA7C07;
    color: #ffffff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    border: 3px solid #ffffff;
}

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

.page-promotions-new-user-bonus__step-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-promotions-new-user-bonus__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Usage Section */
.page-promotions-new-user-bonus__usage-section {
    padding: 80px 20px;
}

.page-promotions-new-user-bonus__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-promotions-new-user-bonus__content-text {
    padding-right: 20px;
}

.page-promotions-new-user-bonus__content-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
    color: #555555;
}

.page-promotions-new-user-bonus__content-text ul li {
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__content-text strong {
    color: #26A9E0;
}

.page-promotions-new-user-bonus__content-image {
    text-align: center;
}

.page-promotions-new-user-bonus__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose-section {
    padding: 80px 20px;
    color: #ffffff;
}

.page-promotions-new-user-bonus__why-choose-section .page-promotions-new-user-bonus__section-title {
    color: #ffffff;
}

.page-promotions-new-user-bonus__why-choose-section .page-promotions-new-user-bonus__section-description {
    color: #f0f0f0;
}

.page-promotions-new-user-bonus__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-new-user-bonus__advantage-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-new-user-bonus__advantage-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__advantage-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Games Section */
.page-promotions-new-user-bonus__games-section {
    padding: 80px 20px;
}

.page-promotions-new-user-bonus__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-new-user-bonus__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__game-card:hover {
    transform: translateY(-10px);
}

.page-promotions-new-user-bonus__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-promotions-new-user-bonus__game-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__game-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-promotions-new-user-bonus__game-title a:hover {
    text-decoration: underline;
}

.page-promotions-new-user-bonus__game-description {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__game-link {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__game-link:hover {
    background-color: #1e87c0;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
    padding: 80px 20px;
    color: #ffffff;
}

.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-title {
    color: #ffffff;
}

.page-promotions-new-user-bonus__faq-list {
    margin-top: 40px;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-new-user-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #f0f0f0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px;
}

.page-promotions-new-user-bonus__faq-answer p {
    margin-bottom: 10px;
}

/* Conclusion Section */
.page-promotions-new-user-bonus__conclusion-section {
    padding: 80px 20px;
    text-align: center;
}

.page-promotions-new-user-bonus__conclusion-section .page-promotions-new-user-bonus__section-title {
    color: #26A9E0;
}

.page-promotions-new-user-bonus__conclusion-section .page-promotions-new-user-bonus__section-description {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-promotions-new-user-bonus__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions-new-user-bonus__text-center {
  text-align: center;
}

/* General image styling for content areas */
.page-promotions-new-user-bonus img {
    max-width: 100%;
    height: auto;
    display: block; /* Ensure images behave as blocks for max-width */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 3em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 1.2em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__content-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus__content-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions-new-user-bonus__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-promotions-new-user-bonus__hero-content {
        padding: 15px;
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__section-description {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__feature-card,
    .page-promotions-new-user-bonus__step-item,
    .page-promotions-new-user-bonus__advantage-item,
    .page-promotions-new-user-bonus__game-card {
        padding: 25px;
    }

    /* Mobile image adaptation */
    .page-promotions-new-user-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-new-user-bonus__section,
    .page-promotions-new-user-bonus__card,
    .page-promotions-new-user-bonus__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions-new-user-bonus__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-promotions-new-user-bonus__game-image {
        height: auto; /* Allow height to adjust naturally on mobile */
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__hero-section {
        padding: 60px 15px;
        min-height: 400px;
    }
    .page-promotions-new-user-bonus__hero-content {
        padding: 10px;
    }
    .page-promotions-new-user-bonus__cta-buttons {
        gap: 10px;
    }
    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .page-promotions-new-user-bonus__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__step-title {
        font-size: 1.4em;
    }
    .page-promotions-new-user-bonus__sub-title {
      font-size: 1.5em;
    }
}