/* style/promotions-new-user-bonus.css */

/* --- General Styles --- */
.page-promotions-new-user-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 (#000000) */
}

.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; /* Brand color for titles */
    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: #f0f0f0; /* Light grey for descriptions on dark backgrounds */
}

/* --- Color Contrast Classes --- */
.page-promotions-new-user-bonus__dark-bg {
    background-color: #000000; /* Assuming body is dark, this is a darker section */
    color: #ffffff;
    padding: 60px 0;
}

.page-promotions-new-user-bonus__light-bg {
    background-color: #1a1a1a; /* Slightly lighter dark for contrast */
    color: #f0f0f0;
    padding: 60px 0;
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__section-title {
    color: #26A9E0;
}
.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__section-description {
    color: #cccccc;
}

.page-promotions-new-user-bonus__text-block {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #f0f0f0;
}

/* --- Buttons --- */
.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

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

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

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

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

/* --- Hero Section --- */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
}

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

.page-promotions-new-user-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: 2;
}

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

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

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* --- Intro Section --- */
.page-promotions-new-user-bonus__intro-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* --- Bonus Packages Grid --- */
.page-promotions-new-user-bonus__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__card {
    background-color: #1a1a1a; /* Card background on dark section */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    border: 1px solid #26A9E0;
}

.page-promotions-new-user-bonus__card-image {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency, object-fit will handle aspect ratio */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below image */
}

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

.page-promotions-new-user-bonus__card-text {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to take available space */
}

.page-promotions-new-user-bonus__card-button {
    margin-top: auto; /* Push button to bottom */
    width: 100%;
}

/* --- Registration Guide Steps --- */
.page-promotions-new-user-bonus__steps-container {
    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: #0d0d0d; /* Darker background for steps */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    border: 1px solid #26A9E0;
}

.page-promotions-new-user-bonus__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 15px;
    background-color: rgba(38, 169, 224, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

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

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

.page-promotions-new-user-bonus__center-button {
    text-align: center;
    margin-top: 40px;
}

/* --- Terms & Conditions List --- */
.page-promotions-new-user-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__terms-item {
    background-color: #1a1a1a;
    border-left: 5px solid #26A9E0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

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

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

/* --- Benefits Section --- */
.page-promotions-new-user-bonus__benefit-card {
    background-color: #0d0d0d;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    border: 1px solid #26A9E0;
}

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

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

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

/* --- FAQ Section --- */
.page-promotions-new-user-bonus__faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-promotions-new-user-bonus__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    border: 1px solid #26A9E0;
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: #0d0d0d;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
    background-color: #222;
}

.page-promotions-new-user-bonus__faq-heading {
    font-size: 1.2em;
    margin: 0;
    color: #26A9E0;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
    transform: rotate(45deg); /* Plus to minus visual effect */
}