/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-new-user-bonus__hero {
    background: linear-gradient(135deg, #0A2342 0%, #3a506b 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:cockfighting,pattern,abstract]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

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

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

.page-promotions-new-user-bonus__section--intro {
    background-color: #fff;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 50px auto;
    color: #555;
}

.page-promotions-new-user-bonus__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-promotions-new-user-bonus__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-promotions-new-user-bonus__text-content {
    flex: 1;
}

.page-promotions-new-user-bonus__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-promotions-new-user-bonus__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-promotions-new-user-bonus__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-promotions-new-user-bonus__button--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-new-user-bonus__button--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #0A2342;
}

.page-promotions-new-user-bonus__button--secondary:hover {
    background-color: #1a3a5e;
    border-color: #1a3a5e;
    transform: translateY(-2px);
}

.page-promotions-new-user-bonus__button--text {
    background: none;
    color: #0A2342;
    border: none;
    padding: 15px 20px;
}

.page-promotions-new-user-bonus__button--text:hover {
    color: #FFD700;
    background: none;
    transform: translateY(-2px);
}

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

.page-promotions-new-user-bonus__section--bonus-details {
    background-color: #f0f2f5;
}

.page-promotions-new-user-bonus__feature-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: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-new-user-bonus__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-new-user-bonus__feature-title {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__feature-item p {
    color: #666;
}

.page-promotions-new-user-bonus__cta-row {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-new-user-bonus__section--how-to-claim {
    background-color: #fff;
}

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

.page-promotions-new-user-bonus__step-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    padding-top: 70px; /* Space for number */
}

.page-promotions-new-user-bonus__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0A2342;
    color: #FFD700;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-item p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions-new-user-bonus__step-image {
    max-width: 100%;
    height: 150px; /* Fixed height for consistency */
    object-fit: contain; /* Ensure image content is visible */
    margin-top: 20px;
    border-radius: 5px;
}

.page-promotions-new-user-bonus__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-new-user-bonus__section--why-sv388 {
    background-color: #0A2342;
    color: #fff;
}

.page-promotions-new-user-bonus__section--why-sv388 .page-promotions-new-user-bonus__section-title {
    color: #FFD700;
}

.page-promotions-new-user-bonus__section--why-sv388 .page-promotions-new-user-bonus__section-description {
    color: #ccc;
}

.page-promotions-new-user-bonus__advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-promotions-new-user-bonus__advantages-list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #eee;
    border-left: 4px solid #FFD700;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__advantages-list li:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-new-user-bonus__advantages-list li strong {
    color: #FFD700;
}

.page-promotions-new-user-bonus__image-wrapper--center {
    margin-top: 40px;
}

.page-promotions-new-user-bonus__section--app {
    background-color: #f8f9fa;
}

.page-promotions-new-user-bonus__section--tips {
    background-color: #fff;
}

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

.page-promotions-new-user-bonus__tip-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    border-top: 5px solid #FFD700;
}

.page-promotions-new-user-bonus__tip-title {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__tip-item p {
    color: #666;
}

.page-promotions-new-user-bonus__section--faq {
    background-color: #f0f2f5;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promotions-new-user-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    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 {
    color: #555;
    font-size: 1.0em;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

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

.page-promotions-new-user-bonus__section--final-cta {
    background: linear-gradient(90deg, #0A2342, #1a3a5e);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-promotions-new-user-bonus__section--final-cta .page-promotions-new-user-bonus__section-title {
    color: #FFD700;
    margin-bottom: 25px;
}

.page-promotions-new-user-bonus__section--final-cta .page-promotions-new-user-bonus__section-description {
    color: #eee;
    margin-bottom: 40px;
}

.page-promotions-new-user-bonus__small-text {
    font-size: 0.9em;
    color: #bbb;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__content-grid {
        flex-direction: column;
    }
    .page-promotions-new-user-bonus__content-grid--reverse {
        flex-direction: column;
    }
    .page-promotions-new-user-bonus__hero {
        padding: 80px 0;
    }
    .page-promotions-new-user-bonus__section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__feature-grid, .page-promotions-new-user-bonus__steps-grid, .page-promotions-new-user-bonus__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus__cta-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__button {
        width: 100%;
        box-sizing: border-box;
    }
    .page-promotions-new-user-bonus__button--text {
        width: auto;
    }
    .page-promotions-new-user-bonus__container {
        padding: 0 15px;
    }
}