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

/* Base styles for the page content */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark background */
    background-color: #0d0d1a; /* Very dark background for premium feel */
    line-height: 1.6;
}

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

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

.page-promotions-new-user-bonus__section:nth-child(even) {
    background-color: #1a1a33; /* Slightly lighter dark for contrast */
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.8em;
    color: #FFCC00; /* Wealth Gold for titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-new-user-bonus__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-promotions-new-user-bonus__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions-new-user-bonus__keyword {
    color: #FFCC00;
    font-weight: bold;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #003366, #001a33);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-new-user-bonus__hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.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;
    cursor: pointer;
    border: none;
}

.page-promotions-new-user-bonus__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-promotions-new-user-bonus__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-promotions-new-user-bonus__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.page-promotions-new-user-bonus__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

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

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

.page-promotions-new-user-bonus__hero-image {
    max-width: 70%;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-new-user-bonus__feature-item {
    background-color: #003366; /* Primary color as background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions-new-user-bonus__feature-item h3 {
    color: #FFCC00;
    font-size: 1.6em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__feature-item p {
    color: #c0c0c0;
    font-size: 1em;
}

.page-promotions-new-user-bonus__feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Offer Cards */
.page-promotions-new-user-bonus__offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__offer-card {
    background-color: #003366;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__offer-card:hover {
    transform: translateY(-10px);
}

.page-promotions-new-user-bonus__offer-card h3 {
    color: #FFCC00;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__offer-card p {
    color: #c0c0c0;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__offer-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__offer-highlight {
    color: #FFCC00;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__note {
    font-size: 0.9em;
    color: #999;
    margin-top: 30px;
}

/* Steps Grid */
.page-promotions-new-user-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions-new-user-bonus__step-item {
    background-color: #1a1a33;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-promotions-new-user-bonus__step-number {
    background-color: #FFCC00;
    color: #003366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.5);
}

.page-promotions-new-user-bonus__step-item h3 {
    color: #FFCC00;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-item p {
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-image {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 20px;
    background-color: #001a33; /* Dark background for image */
    padding: 10px;
}

/* Game Categories */
.page-promotions-new-user-bonus__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__game-category {
    background-color: #003366;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__game-category:hover {
    transform: translateY(-10px);
}

.page-promotions-new-user-bonus__game-category h3 {
    color: #FFCC00;
    font-size: 1.6em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__game-category p {
    color: #c0c0c0;
}

.page-promotions-new-user-bonus__game-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* App Download Section */
.page-promotions-new-user-bonus__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions-new-user-bonus__app-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__app-details {
    flex: 1;
    min-width: 300px;
}

.page-promotions-new-user-bonus__app-details h3 {
    color: #FFCC00;
    font-size: 2em;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__app-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus__app-details ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFCC00"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 1.1em;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-items {
    margin-top: 40px;
    text-align: left;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: #003366;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__faq-question {
    color: #FFCC00;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-new-user-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-new-user-bonus__faq-answer {
    color: #c0c0c0;
    font-size: 1em;
    margin-top: 15px;
    display: none;
}

.page-promotions-new-user-bonus__faq-answer.active {
    display: block;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta {
    background-color: #003366;
    padding: 80px 0;
}

.page-promotions-new-user-bonus__final-cta .page-promotions-new-user-bonus__section-title {
    color: #FFCC00;
}

.page-promotions-new-user-bonus__final-cta .page-promotions-new-user-bonus__text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus__text--small {
    font-size: 0.9em;
    color: #999;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 3em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-new-user-bonus__app-details {
        min-width: unset;
        width: 100%;
    }
    .page-promotions-new-user-bonus__app-details ul {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-new-user-bonus__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-promotions-new-user-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__text {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__hero-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__btn {
        width: 100%;
        max-width: 250px;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.6em;
    }
    .page-promotions-new-user-bonus__feature-item,
    .page-promotions-new-user-bonus__offer-card,
    .page-promotions-new-user-bonus__step-item,
    .page-promotions-new-user-bonus__game-category {
        padding: 20px;
    }
    .page-promotions-new-user-bonus__faq-question {
        font-size: 1.2em;
    }
}