/* style/promotions-new-user-bonus.css */
/* Base styles for the new user promotions page */

.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark backgrounds */
    background-color: #1A1A1A; /* Dark background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space for footer */
}

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

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient for hero */
    color: #FFD700; /* Gold for main title */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-promotions-new-user-bonus__hero-title .highlight {
    color: #FFFFFF; /* White for Bet88 highlight */
}

.page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    color: #E0E0E0; /* Light grey for subtitle */
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
}

.page-promotions-new-user-bonus__hero-section > .page-promotions-new-user-bonus__container {
    position: relative;
    z-index: 1;
}

/* General Sections */
.page-promotions-new-user-bonus__section {
    padding: 60px 0;
    background-color: #1A1A1A;
}

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

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions-new-user-bonus__text {
    font-size: 1.1em;
    color: #E0E0E0; /* Light grey for body text */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-promotions-new-user-bonus__text .keyword {
    color: #FFD700; /* Highlight keywords in gold */
    font-weight: bold;
}

/* Buttons */
.page-promotions-new-user-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    border: none;
}

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

.page-promotions-new-user-bonus__btn--primary:hover {
    background-color: #E0B500; /* Darker gold on hover */
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__btn--secondary {
    background-color: #1A1A1A; /* Dark button */
    color: #FFD700; /* Gold text on dark */
    border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A1A1A; /* Dark text on gold */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__btn--link {
    background: none;
    border: none;
    color: #FFD700; /* Gold link text */
    padding: 0;
    margin: 10px;
    font-size: 1.1em;
    text-decoration: underline;
}

.page-promotions-new-user-bonus__btn--link:hover {
    color: #E0B500; /* Darker gold on hover */
    text-decoration: none;
}

.page-promotions-new-user-bonus__btn--download {
    background-color: #4CAF50; /* Green for download */
    color: #FFFFFF;
}

.page-promotions-new-user-bonus__btn--download:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-new-user-bonus__card {
    background-color: #222222;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

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

.page-promotions-new-user-bonus__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: invert(100%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(1.2); /* Gold tint for icons */
}

.page-promotions-new-user-bonus__card-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__card-text {
    font-size: 1em;
    color: #B0B0B0; /* Lighter grey for card text */
}

/* How-to-claim steps */
.page-promotions-new-user-bonus__steps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-promotions-new-user-bonus__step-item {
    background-color: #222222;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #333333;
}

.page-promotions-new-user-bonus__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700; /* Gold for step numbers */
    background-color: #333333;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
}

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

.page-promotions-new-user-bonus__step-description {
    font-size: 1.1em;
    color: #E0E0E0; /* Light grey for step description */
    margin-bottom: 20px;
    max-width: 700px;
}

.page-promotions-new-user-bonus__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__link--inline {
    color: #FFD700; /* Gold for inline links */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-new-user-bonus__link--inline:hover {
    text-decoration: underline;
    color: #E0B500; /* Darker gold on hover */
}

/* CTA Block */
.page-promotions-new-user-bonus__cta-block {
    background-color: #333333;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFD700; /* Gold border */
}

.page-promotions-new-user-bonus__cta-title {
    font-size: 2em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__cta-text {
    font-size: 1.2em;
    color: #E0E0E0; /* Light grey for CTA text */
    margin-bottom: 30px;
}

/* Terms and Conditions List */
.page-promotions-new-user-bonus__list {
    list-style: disc;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
    padding-left: 25px;
    color: #E0E0E0; /* Light grey for list items */
}

.page-promotions-new-user-bonus__list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-new-user-bonus__list strong {
    color: #FFD700; /* Gold for strong text in list */
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-item {
    background-color: #222222;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #333333;
}

.page-promotions-new-user-bonus__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
    font-size: 1em;
    color: #B0B0B0; /* Lighter grey for FAQ answers */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-new-user-bonus__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Why Bet88 Section */
.page-promotions-new-user-bonus__advantages-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-promotions-new-user-bonus__advantages-list li {
    background-color: #222222;
    border-radius: 8px;
    padding: 20px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700; /* Gold accent */
    display: flex;
    align-items: center;
}

.page-promotions-new-user-bonus__advantages-list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus__advantages-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus__step-item {
        padding: 20px;
    }
    .page-promotions-new-user-bonus__step-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__cta-block {
        padding: 30px;
    }
    .page-promotions-new-user-bonus__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__card-title {
        font-size: 1.3em;
    }
    .page-promotions-new-user-bonus__step-title {
        font-size: 1.3em;
    }
    .page-promotions-new-user-bonus__faq-question {
        font-size: 1.1em;
    }
}