:root {
    --bg-body: #f1f5f9;
    --bg-app: #ffffff;
    --card-bg: #f8fafc;
    --border-color: #e2e8f0;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --primary: #10b981;
    --accent: #f59e0b;
    --danger: #ef4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { background-color: var(--bg-body); color: var(--text-dark); font-family: 'Inter', sans-serif; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
.hidden { display: none !important; }

/* Icon Animations */
.icon-animate { animation: pulse 2s infinite ease-in-out; }
.icon-animate-slow { animation: bounce 3s infinite ease-in-out; }
.text-primary { color: var(--primary); }

@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.loading-text { text-align: center; color: var(--primary); font-size: 14px; font-weight: 600; padding: 30px; animation: pulse 1.5s infinite; }

.share-btn-magic {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    background: linear-gradient(45deg, #10b981, #0ea5e9);
    border: none !important; color: white !important;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}
