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

/* Custom Color Variables */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-promotions-new-user-bonus {
    font-family: Arial, sans-serif;
    color: var(--color-text-main); /* Main text color for the page */
    background-color: var(--color-background); /* Page background color */
    line-height: 1.6;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: var(--color-deep-green); /* A darker green for the hero background */
    overflow: hidden; /* Ensure no overflow */
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__hero-content {
    max-width: 900px;
    width: 100%; /* Ensure width 100% on desktop */
    margin: 20px auto 0 auto;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* H1 font size with clamp */
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

/* CTA Button Styles */
.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-promotions-new-user-bonus__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-button--small {
    font-size: 1em;
    padding: 12px 25px;
}

.page-promotions-new-user-bonus__cta-button--large {
    font-size: 1.2em;
    padding: 18px 35px;
}

/* General Section Styles */
.page-promotions-new-user-bonus__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%; /* Ensure width 100% on desktop */
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.2em;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__section-description,
.page-promotions-new-user-bonus__note-text {
    font-size: 1.05em;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-grid,
.page-promotions-new-user-bonus__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__benefit-card,
.page-promotions-new-user-bonus__why-choose-card {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__benefit-card:hover,
.page-promotions-new-user-bonus__why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__benefit-icon,
.page-promotions-new-user-bonus__why-choose-icon {
    width: 100%;
    max-width: 250px; /* Max width for smaller images in cards */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-new-user-bonus__benefit-text,
.page-promotions-new-user-bonus__why-choose-text {
    font-size: 0.95em;
    color: var(--color-text-secondary);
}

/* Guide Section */
.page-promotions-new-user-bonus__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__step-item {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    text-align: center;
}

.page-promotions-new-user-bonus__step-number {
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    color: var(--color-background);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-new-user-bonus__step-text {
    font-size: 0.95em;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}