/* ===================================
   Promotions Styles
   =================================== */

.bonus-promo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.95), rgba(234, 179, 8, 0.9));
    color: #1a1a1a;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    animation: slideUpBar 0.4s ease;
}

@keyframes slideUpBar {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.bonus-promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bonus-promo-icon {
    font-size: 1.5rem;
    color: #92400e;
}

.bonus-promo-text {
    flex: 1;
    font-size: 0.95rem;
    min-width: 200px;
}

.bonus-promo-text strong {
    font-weight: 700;
}

.btn-gold {
    background: #1a1a1a;
    color: #fbbf24;
    border: none;
    font-weight: 600;
}

.btn-gold:hover {
    background: #333;
    color: #fcd34d;
}

.bonus-promo-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
}

.bonus-promo-close:hover {
    color: #1a1a1a;
}

body.has-promo-bar .dashboard-layout {
    padding-bottom: 64px;
}

.text-gold {
    color: #fbbf24;
}

.publisher-welcome-modal .modal-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.publisher-welcome-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.publisher-welcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.welcome-stat {
    text-align: center;
    padding: 20px 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.welcome-stat i {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.welcome-stat h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
}

.welcome-stat p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.publisher-welcome-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .publisher-welcome-stats {
        grid-template-columns: 1fr;
    }

    .bonus-promo-inner {
        justify-content: center;
        text-align: center;
    }
}
