/* style/promotions-registration-bonus.css */
.page-promotions-registration-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Hero Section */
.page-promotions-registration-bonus__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

.page-promotions-registration-bonus__hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.page-promotions-registration-bonus__hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-promotions-registration-bonus__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.page-promotions-registration-bonus__hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.page-promotions-registration-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-promotions-registration-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promotions-registration-bonus__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Sections */
.page-promotions-registration-bonus__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-promotions-registration-bonus__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promotions-registration-bonus__introduction-section,
.page-promotions-registration-bonus__guide-section,
.page-promotions-registration-bonus__games-section,
.page-promotions-registration-bonus__cta-section {
    padding: 60px 0;
}

.page-promotions-registration-bonus__introduction-section.page-promotions-registration-bonus__dark-bg,
.page-promotions-registration-bonus__guide-section.page-promotions-registration-bonus__dark-bg,
.page-promotions-registration-bonus__games-section.page-promotions-registration-bonus__dark-bg,
.page-promotions-registration-bonus__cta-section.page-promotions-registration-bonus__dark-bg {
    background-color: #1a1a1a; /* Darker background for sections on dark body */
    color: #ffffff;
}

.page-promotions-registration-bonus__details-section,
.page-promotions-registration-bonus__terms-section,
.page-promotions-registration-bonus__faq-section {
    background-color: #0a0a0a; /* Match body background for continuity */
    color: #ffffff;
    padding: 60px 0;
}

.page-promotions-registration-bonus__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-promotions-registration-bonus__content-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.page-promotions-registration-bonus__text-block {
    flex: 1;
    font-size: 1.1em;
}

.page-promotions-registration-bonus__text-block p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-promotions-registration-bonus__text-block ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-promotions-registration-bonus__text-block li {
    margin-bottom: 8px;
    color: #f0f0f0;
}

.page-promotions-registration-bonus__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-promotions-registration-bonus__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Cards Grid */
.page-promotions-registration-bonus__cards-grid,
.page-promotions-registration-bonus__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-registration-bonus__card,
.page-promotions-registration-bonus__game-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: #ffffff;
}

.page-promotions-registration-bonus__card:hover,
.page-promotions-registration-bonus__game-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-registration-bonus__card-title,
.page-promotions-registration-bonus__game-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions-registration-bonus__card-description,
.page-promotions-registration-bonus__game-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-promotions-registration-bonus__card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-registration-bonus__card-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.page-promotions-registration-bonus__card-features li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

/* Guide Section */
.page-promotions-registration-bonus__guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-promotions-registration-bonus__guide-step {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-promotions-registration-bonus__step-number {
    font-size: 2.5em;
    color: #26A9E0;
    font-weight: bold;
    margin-bottom: 15px;
}

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

.page-promotions-registration-bonus__step-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-promotions-registration-bonus__image-wrapper--center {
    margin-top: 50px;
}

/* Terms Section */
.page-promotions-registration-bonus__terms-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-promotions-registration-bonus__terms-list {
    list-style: none;
    padding: 0;
}

.page-promotions-registration-bonus__terms-list li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #26A9E0;
    border-radius: 5px;
    color: #f0f0f0;
}

.page-promotions-registration-bonus__terms-list li strong {
    color: #26A9E0;
}

/* Game Cards */
.page-promotions-registration-bonus__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-promotions-registration-bonus__btn-link {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.page-promotions-registration-bonus__btn-link:hover {
    background-color: #1e87b6;
}

/* FAQ Section */
.page-promotions-registration-bonus__faq-list {
    margin-top: 40px;
}

.page-promotions-registration-bonus__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-registration-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1a1a1a; /* Slightly darker for question */
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-registration-bonus__faq-question:hover {
    background-color: #26A9E0;
}

.page-promotions-registration-bonus__faq-question h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2em;
}

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

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

.page-promotions-registration-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: rgba(255, 255, 255, 0.05); /* Lighter for answer */
    color: #f0f0f0;
}

.page-promotions-registration-bonus__faq-item.active .page-promotions-registration-bonus__faq-answer {
    max-height: 1000px !important; /* Ensure it expands fully */
    padding: 20px 25px;
}

.page-promotions-registration-bonus__faq-answer p {
    margin: 0;
    color: #f0f0f0;
}

/* Call to Action Section */
.page-promotions-registration-bonus__cta-section {
    text-align: center;
    padding: 80px 0;
}

.page-promotions-registration-bonus__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Buttons */
.page-promotions-registration-bonus__btn-primary,
.page-promotions-registration-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-promotions-registration-bonus__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-promotions-registration-bonus__btn-primary:hover {
    background-color: #1e87b6;
    border-color: #1e87b6;
    transform: translateY(-2px);
}

.page-promotions-registration-bonus__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-promotions-registration-bonus__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-registration-bonus__hero-title {
        font-size: 3em;
    }
    .page-promotions-registration-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-registration-bonus__content-wrapper,
    .page-promotions-registration-bonus__terms-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-registration-bonus__content-wrapper:nth-child(even) {
        flex-direction: column;
    }
    .page-promotions-registration-bonus__image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions-registration-bonus__hero-section {
        height: 70vh;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
    }
    .page-promotions-registration-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-registration-bonus__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-registration-bonus__hero-cta-buttons,
    .page-promotions-registration-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-registration-bonus__btn-primary,
    .page-promotions-registration-bonus__btn-secondary,
    .page-promotions-registration-bonus a[class*="button"],
    .page-promotions-registration-bonus a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-registration-bonus__cta-buttons,
    .page-promotions-registration-bonus__button-group,
    .page-promotions-registration-bonus__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

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

    .page-promotions-registration-bonus__container {
        padding: 15px;
    }

    .page-promotions-registration-bonus__image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions-registration-bonus__image-wrapper,
    .page-promotions-registration-bonus__hero-video-wrapper,
    .page-promotions-registration-bonus__video {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-promotions-registration-bonus video,
    .page-promotions-registration-bonus__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-promotions-registration-bonus__video-section,
    .page-promotions-registration-bonus__video-container,
    .page-promotions-registration-bonus__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }

    .page-promotions-registration-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-registration-bonus__faq-item.active .page-promotions-registration-bonus__faq-answer {
        padding: 15px 20px;
    }
}