/* Welcome bonus page */

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--neutral-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-table thead {
    background: rgba(254, 215, 0, 0.1);
}

.bonus-table th {
    padding: 1rem;
    text-align: left;
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
}

.bonus-table td {
    padding: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-table tr:hover {
    background: rgba(254, 215, 0, 0.05);
}

.bonus-table tr:last-child td {
    border-bottom: none;
}

.bonus-table-total {
    background: rgba(254, 215, 0, 0.1);
    font-weight: 600;
}

.bonus-highlight-box {
    background: linear-gradient(135deg, rgba(254, 215, 0, 0.1), rgba(254, 203, 28, 0.05));
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.bonus-highlight-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.bonus-highlight-box p {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    counter-reset: step-counter;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--neutral-dark);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background: var(--primary);
    color: var(--background);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: var(--neutral-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 215, 0, 0.2);
}

.feature-item::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: rgba(254, 215, 0, 0.2);
    color: var(--primary);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 0.75rem;
    font-weight: 700;
}

.bonus-page-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .bonus-table {
        font-size: 0.9rem;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 0.75rem 0.5rem;
    }

    .bonus-highlight-box h3 {
        font-size: 1.4rem;
    }

    .bonus-highlight-box p {
        font-size: 1rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}
