.premium-onboarding-card { text-align: center; }
.premium-hero-title-compact { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.premium-badge-highlight-compact { background: rgba(37, 99, 235, 0.1); padding: 0.5rem 1rem; border-radius: 2rem; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-primary); font-weight: 600; margin-bottom: 1rem; }

.premium-pricing-box-compact {
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(30, 41, 59, 0.5));
    border: 1px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.premium-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.premium-step {
    background: var(--bg-card-light);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
    transition: all 0.3s ease;
}

.check-list-custom { list-style: none; padding: 0; }
.check-list-custom li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--text-main); font-size: 0.95rem; text-align: left; }
.check-list-custom i { flex-shrink: 0; margin-top: 0.25rem; font-size: 1rem; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeInUp 0.6s ease-out forwards; }

/* Modal Styles */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(5px);
    display: none; justify-content: center; align-items: center; z-index: 1000;
}
.modal-overlay.open { display: flex; }
.modal-window {
    background: #1e293b; border: 1px solid #334155; padding: 2rem;
    border-radius: 1rem; position: relative; max-width: 400px; width: 90%;
    text-align: center; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.modal-close-btn {
    position: absolute; top: 1rem; right: 1rem; background: transparent;
    border: none; color: #94a3b8; font-size: 1.25rem; cursor: pointer; width: auto; padding: 0;
}
.auth-qr-canvas { background: white; padding: 10px; border-radius: 8px; margin: 1.5rem auto; display: inline-block; }
.success-icon { color: #4ade80; font-size: 3rem; margin-bottom: 1rem; }
.loader {
    display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%; border-top-color: #6366f1; animation: spin 1s ease-in-out infinite; vertical-align: middle; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

#claimErrorModal .modal-window {
    border: 2px solid #ef4444;
    max-width: 500px;
}
#claimErrorModal textarea::selection {
    background: #22c55e;
    color: #000;
}
.btn-telegram:hover { background-color: #1c85b8; }
