/* MiniAppify Brand Style Guide – Premium Edition */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-navy: #0B2A5C;
  --brand-blue: #2196F3;
  --brand-sky: #4FC3F7;
  --brand-green: #4CAF50;
  --brand-red: #E53935;
  --accent-orange: #FF9800;
  --accent-gold: #FFC107;
  --bg-page: #F5F7FA;
  --bg-white: #FFFFFF;
  --bg-subtle: #F0F4F8;
  --bg-soft: #E8EDF3;
  --text-primary: #1A2B4A;
  --text-secondary: #5A6B8A;
  --text-muted: #8D99AE;
  --gradient-brand: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
  --gradient-warm: linear-gradient(135deg, #FF9800 0%, #E53935 100%);
  --gradient-sky: linear-gradient(135deg, #4FC3F7 0%, #2196F3 100%);
  --gradient-hero: linear-gradient(135deg, #F8FAFF 0%, #E3F2FD 50%, #E8F5E9 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
  --font-heading: 'Be Vietnam Pro', sans-serif;
  --font-body: 'Inter', 'Be Vietnam Pro', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(26,43,74,0.06);
  --shadow-md: 0 4px 12px rgba(26,43,74,0.08);
  --shadow-lg: 0 8px 24px rgba(26,43,74,0.1);
  --shadow-xl: 0 16px 48px rgba(26,43,74,0.12);
  --shadow-blue: 0 4px 20px rgba(33,150,243,0.25);
  --shadow-glow: 0 0 40px rgba(33,150,243,0.15);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(33,150,243,0.2); } 50% { box-shadow: 0 0 40px rgba(33,150,243,0.35); } }

.anim-fade-up { animation: fadeUp 0.6s ease-out both; }
.anim-float { animation: float 5s ease-in-out infinite; }
.anim-pulse { animation: pulse 3s ease-in-out infinite; }
.anim-glow { animation: glow 3s ease-in-out infinite; }

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
}
.glass-strong {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.4);
}

/* ===== PREMIUM BUTTON ===== */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-brand);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-premium:hover::before { left: 100%; }
.btn-premium:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(33,150,243,0.35); }
.btn-premium:active { transform: translateY(0); }

/* ===== STAT COUNTER ===== */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
}
