/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0A192F; /* Main dark blue background */
}

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

.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero-section .page-promotions-new-user-bonus__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-promotions-new-user-bonus__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-promotions-new-user-bonus__main-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__lead-text {
    font-size: 1.25em;
    color: #E0E0E0; /* Lighter gray for lead text */
    margin-bottom: 40px;
}

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

.page-promotions-new-user-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.page-promotions-new-user-bonus__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    border-color: #FFD700;
}

.page-promotions-new-user-bonus__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border-color: #FFD700;
}

.page-promotions-new-user-bonus__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 700px;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions-new-user-bonus__section:nth-of-type(even) {
    background-color: #1a2a40; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__section-description {
    font-size: 1.15em;
    color: #B0B0B0; /* Light gray for descriptions */
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.page-promotions-new-user-bonus__feature-card {
    background-color: #0A192F; /* Dark blue for feature cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-new-user-bonus__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-new-user-bonus__feature-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__feature-text {
    font-size: 1em;
    color: #C0C0C0; /* Lighter gray for feature text */
}

.page-promotions-new-user-bonus__offer-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    text-align: left;
    background-color: #0A192F;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promotions-new-user-bonus__offer-item:last-of-type {
    margin-bottom: 0;
}