:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login-bg: #EA7C07;
    --background-light: #FFFFFF;
    --color-black: #000000;
}

.page-promotions-new-user-bonus {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light body background */
    background-color: var(--background-light); /* Assuming default white body background */
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #a7e0f8 100%); /* Light blue gradient */
    color: var(--text-light); /* Text on primary background */
    overflow: hidden; /* Prevent image overflow */
}

.page-promotions-new-user-bonus__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2); /* Slightly darker overlay for text readability */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-promotions-new-user-bonus__description {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-new-user-bonus__cta-button.page-promotions-new-user-bonus__btn-primary {
    background: var(--button-login-bg); /* Use specific login color for primary action */
    color: var(--text-light);
    border: 2px solid var(--button-login-bg);
}

.page-promotions-new-user-bonus__cta-button.page-promotions-new-user-bonus__btn-primary:hover {
    background: #e06c00;
    border-color: #e06c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-button.page-promotions-new-user-bonus__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions-new-user-bonus__cta-button.page-promotions-new-user-bonus__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-promotions-new-user-bonus__section {
    padding: 80px 20px;
    text-align: center;
}

.page-promotions-new-user-bonus__section:nth-of-type(odd) {
    background-color: var(--background-light);
}

.page-promotions-new-user-bonus__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.page-promotions-new-user-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions-new-user-bonus__intro-text {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-new-user-bonus__text-white {
    color: var(--text-light);
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim {
    background-color: var(--background-light);
}

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

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

.page-promotions-new-user-bonus__step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__step-item img {
    width: 100%;
    max-width: 300px; /* Constrain image size within card */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__step-description {
    font-size: 1em;
    color: var(--text-dark);
}

/* Bonus Benefits Section */
.page-promotions-new-user-bonus__bonus-benefits {
    background-color: var(--primary-color); /* Darker background for this section */
    color: var(--text-light);
}

.page-promotions-new-user-bonus__bonus-benefits .page-promotions-new-user-bonus__section-title {
    color: var(--text-light);
}

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

.page-promotions-new-user-bonus__benefit-item {
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent white card on primary background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__benefit-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__benefit-item img {
    width: 100%;
    max-width: 200px; /* Constrain image size within card */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__benefit-title {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__benefit-description {
    font-size: 0.95em;
    color: var(--text-light);
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms-conditions {
    background-color: #f8f8f8;
    text-align: left;
}

.page-promotions-new-user-bonus__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__terms-list li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.8;
}

.page-promotions-new-user-bonus__terms-list strong {
    color: var(--primary-color);
}

.page-promotions-new-user-bonus__disclaimer-text {
    font-size: 0.95em;
    color: #666;
}

.page-promotions-new-user-bonus__inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-new-user-bonus__inline-link:hover {
    color: #1a8cc4;
}

/* Other Promotions Section */
.page-promotions-new-user-bonus__other-promotions {
    background-color: var(--background-light);
}

.page-promotions-new-user-bonus__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-promotions-new-user-bonus__promotion-card {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__promotion-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions-new-user-bonus__promotion-card .page-promotions-new-user-bonus__card-title {
    font-size: 1.3em;
    color: var(--primary-color);
    padding: 15px 20px 5px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__promotion-card .page-promotions-new-user-bonus__card-link {
    color: var(--primary-color);
    text-decoration: none;
}

.page-promotions-new-user-bonus__promotion-card .page-promotions-new-user-bonus__card-link:hover {
    text-decoration: underline;
}

.page-promotions-new-user-bonus__promotion-card .page-promotions-new-user-bonus__card-description {
    font-size: 0.95em;
    color: var(--text-dark);
    padding: 0 20px 15px;
}

.page-promotions-new-user-bonus__btn-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    max-width: calc(100% - 40px); /* Button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-link:hover {
    background: #1a8cc4;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
    background-color: #f8f8f8;
    text-align: left;
}

/* FAQ container styles */
.page-promotions-new-user-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

/* FAQ default state - answer hidden */
.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 15px;
  opacity: 0;
}