@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Cinzel:wght@800&display=swap');

:root {
  --primary: #E8451E; --primary-light: #FF6B42; --primary-dark: #cc3a15;
  --secondary: #1E293B; --bg-color: #f1f5f9; --card-bg: rgba(255, 255, 255, 0.7);
  --text-dark: #0f172a; --text-light: #64748b; --success: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
html, body {
  overflow-x: hidden;
  width: 100%;
}
body { 
  background: transparent;
  color: var(--text-dark); 
  height: 100vh; 
  overflow: hidden; 
  position: relative;
}

/* Ultra Modern Animated Background */
.modern-animated-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  background: #ffffff;
  overflow: hidden;
}

/* Subtle Tech Grid overlay */
.modern-animated-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  z-index: 1;
}

.shape {
  display: none;
  position: absolute;
  filter: blur(90px);
  opacity: 0.6;
  border-radius: 50%;
  animation: modernFloat 20s infinite ease-in-out alternate;
}

.shape-1 {
  width: 60vw; height: 60vw;
  background: rgba(232, 69, 30, 0.25); /* Primary Orange */
  top: -20vh; left: -10vw;
  animation-duration: 25s;
}

.shape-2 {
  width: 50vw; height: 50vw;
  background: rgba(16, 185, 129, 0.2); /* Emerald Green */
  bottom: -20vh; right: -5vw;
  animation-delay: -5s;
  animation-duration: 22s;
}

.shape-3 {
  width: 70vw; height: 70vw;
  background: rgba(59, 130, 246, 0.15); /* Blue */
  top: 20%; left: 30%;
  animation-delay: -10s;
  animation-duration: 28s;
  transform-origin: center;
}

.shape-4 {
  width: 40vw; height: 40vw;
  background: rgba(168, 85, 247, 0.15); /* Purple */
  bottom: 10%; left: 10%;
  animation-delay: -15s;
  animation-duration: 19s;
}

@keyframes modernFloat {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(8vw, -10vh) scale(1.1) rotate(45deg); }
  66% { transform: translate(-10vw, 8vh) scale(0.9) rotate(90deg); }
  100% { transform: translate(5vw, 5vh) scale(1.05) rotate(135deg); }
}

/* App Wrapper */
.app-wrapper { width: 90%; margin: 0 auto; display: flex; height: 100vh; padding: 15px 0; gap: 20px; overflow: hidden; }

/* Mac OS Style Dock Navigation */
.mac-dock { position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(35px); -webkit-backdrop-filter: blur(35px); border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 20px 50px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(255,255,255,0.5); border-radius: 40px; padding: 10px 15px; display: flex; align-items: flex-end; gap: 10px; z-index: 1000; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.dock-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; position: relative; width: 50px; transition: all 0.2s ease; }
.dock-icon { width: 50px; height: 50px; border-radius: 18px; background: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--secondary); box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: all 0.2s ease; border: 1px solid rgba(255,255,255,1); }
.dock-tooltip { position: absolute; top: -45px; background: rgba(0,0,0,0.75); color: #fff; font-size: 0.8rem; padding: 6px 12px; border-radius: 8px; opacity: 0; transform: translateY(10px) scale(0.9); pointer-events: none; transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); white-space: nowrap; font-weight: 600; }
.dock-tooltip::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); border-width: 5px 5px 0; border-style: solid; border-color: rgba(0,0,0,0.75) transparent transparent transparent; }
.dock-item:hover { width: 65px; margin: 0 5px; }
.dock-item:hover .dock-icon { width: 65px; height: 65px; background: #fff; color: var(--primary); font-size: 1.6rem; transform: translateY(-10px); box-shadow: 0 15px 30px rgba(232, 69, 30, 0.25); border-color: #fff; }
.dock-item:hover .dock-tooltip { opacity: 1; transform: translateY(0) scale(1); }
.dock-item.active .dock-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: 0 15px 30px rgba(232, 69, 30, 0.35); border: none; }
.dock-item.logout .dock-icon { color: #ef4444; }
.dock-item.logout:hover .dock-icon { color: #fff; background: #ef4444; box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3); border-color: #ef4444; }
.dock-divider { width: 2px; height: 35px; background: rgba(0,0,0,0.08); margin: auto 5px 5px 5px; border-radius: 2px; }

/* Main Area */
.main-content { flex: 1; display: flex; flex-direction: column; overflow-y: auto; }
.main-content::-webkit-scrollbar { width: 0px; } /* hide scrollbar for ultra sleek look */

/* Floating Top Header */
.top-header { 
  background: #ffffff; 
  border-radius: 100px; border: 1px solid #cbd5e1;
  padding: 12px 20px; display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 999; box-shadow: 0 8px 30px rgba(0,0,0,0.08); margin-bottom: 20px;
}
.header-logo { flex: 1; display: flex; align-items: center; justify-content: flex-start; perspective: 1000px; }
.header-title { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; }
.header-title h1 { font-size: 1.4rem; color: var(--secondary); font-weight: 700; margin-bottom: 0; }
.header-actions { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 15px; }
.top-nav-logo { height: 45px; width: 45px; object-fit: contain; background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%); padding: 6px; border-radius: 14px; box-shadow: 0 5px 15px rgba(232, 69, 30, 0.2); animation: logoFloatNav 3s ease-in-out infinite; transform-style: preserve-3d; transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: pointer; }
.top-nav-logo:hover { animation: none; transform: rotateY(360deg) scale(1.15); box-shadow: 0 10px 25px rgba(232, 69, 30, 0.3); }
@keyframes logoFloatNav { 0% { transform: translateY(0); } 50% { transform: translateY(-3px); } 100% { transform: translateY(0); } }
.header-actions { display: flex; align-items: center; gap: 15px; }
.icon-btn { background: #fff; border: 1px solid rgba(255,255,255,0.5); width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-light); cursor: pointer; transition: 0.3s; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.icon-btn:hover { color: var(--primary); transform: translateY(-2px); }

/* Bento Grid System */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 30px; }

/* Base Bento Card */
.bento-card {
  background: #ffffff; 
  border-radius: 32px; border: 1px solid #cbd5e1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08); padding: 30px; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bento-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

/* Hero Bento (Premium Clean Glass Theme) */
.bento-hero { grid-column: span 3; background: #ffffff; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; position: relative; overflow: hidden; border: 1px solid #cbd5e1; border-radius: 35px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.bento-hero::after { content: ''; position: absolute; inset: 0; background: transparent; backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); z-index: 1; pointer-events: none; }
  
  .hero-orb { display: none; position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; animation: floatOrb 10s ease-in-out infinite alternate; pointer-events: none; }
  .orb-1 { width: 350px; height: 350px; background: linear-gradient(135deg, #38bdf8, #818cf8); top: -100px; left: 15%; opacity: 0.15; }
  .orb-2 { width: 400px; height: 400px; background: linear-gradient(135deg, #34d399, #10b981); bottom: -150px; right: 10%; animation-delay: -5s; opacity: 0.12; }
  @keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, 40px) scale(1.1); } }

.user-hero-content { display: flex; align-items: center; gap: 35px; z-index: 2; position: relative; padding: 15px 20px; }
.user-avatar-wrapper { position: relative; padding: 5px; border-radius: 50%; background: linear-gradient(135deg, #f97316, #ea580c, #fb923c); background-size: 200% 200%; animation: spinGradient 4s linear infinite; box-shadow: 0 15px 35px rgba(232, 69, 30, 0.2); }
@keyframes spinGradient { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.user-avatar { width: 130px; height: 130px; border-radius: 50%; border: 5px solid #fff; object-fit: cover; display: block; }

.hero-greeting { font-size: 2.6rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; z-index: 2; position: relative; color: var(--secondary); }
.gradient-text { background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: none; }

.user-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; position: relative; z-index: 2; }
.premium-badge { background: rgba(232, 69, 30, 0.05); padding: 8px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(232, 69, 30, 0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; align-items: center; gap: 8px; color: var(--secondary); box-shadow: none; }
.active-badge { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.1); color: #10b981; }
.pulse-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 0 rgba(16,185,129,0.7); animation: dotPulse 2s infinite; display: inline-block; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); } 70% { box-shadow: 0 0 0 6px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }

.hero-tagline { color: var(--text-light); font-size: 1.1rem; letter-spacing: 0.2px; font-weight: 500; position: relative; z-index: 2; }

.hero-animated-logo { z-index: 2; position: relative; margin-right: 40px; perspective: 1000px; }
.glass-logo-container { 
  padding: 25px; 
  border-radius: 50%; 
  background: #ffffff; 
  border: 1px solid rgba(255,255,255,0.9); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(0,0,0,0.05); 
  animation: modernLogoFloat 5s ease-in-out infinite; 
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); 
  cursor: pointer; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glass-logo-container::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(232, 69, 30, 0.4), transparent);
  animation: spinGlow 4s linear infinite;
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.glass-logo-container::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #ffffff;
  z-index: -1;
}
.glass-logo-container:hover { 
  transform: translateY(-12px) scale(1.08) rotate3d(1, 1, 0, 15deg); 
  box-shadow: 0 35px 70px rgba(232, 69, 30, 0.25), inset 0 0 0 2px rgba(255,255,255,1), 0 0 40px rgba(232, 69, 30, 0.2); 
  background: #ffffff; 
}
.glass-logo-container:hover::before {
  opacity: 1;
  animation-duration: 2s;
}
.hero-logo-img { 
  height: 110px; 
  width: 110px; 
  object-fit: contain; 
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); 
  animation: logoPulse 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes modernLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
  50% { transform: translateY(-15px) rotate(3deg); box-shadow: 0 35px 50px rgba(232, 69, 30, 0.15); }
}

@keyframes spinGlow {
  100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 15px 25px rgba(232, 69, 30, 0.3)); }
}.user-actions { display: flex; gap: 15px; z-index: 2; position: relative; }
.btn-primary { background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 16px; font-weight: 600; display: flex; align-items: center; gap: 8px; border: none; cursor: pointer; transition: 0.3s; }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 10px 20px rgba(232, 69, 30, 0.3); transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,0.1); color: #fff; padding: 12px 24px; border-radius: 16px; font-weight: 600; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); cursor: pointer; transition: 0.3s; }
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* Modern Stat Cards */
.modern-stat-card { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.stat-bg-icon { position: absolute; right: -20px; bottom: -30px; font-size: 8rem; opacity: 0.04; z-index: 1; transform: rotate(-15deg); pointer-events: none; }

/* Subscription Card (Deep Emerald) */
.sub-card { background: #022c22; color: #fff; border: 1px solid rgba(16,185,129,0.2); box-shadow: 0 15px 35px rgba(2,44,34,0.3); }
.sub-card-bg-shape { position: absolute; top: -50%; left: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(16,185,129,0.4) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
.sub-card .stat-bg-icon { opacity: 0.08; color: #10b981; }
.glass-badge { background: rgba(255,255,255,0.1); color: #4ade80; padding: 6px 14px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; backdrop-filter: blur(10px); border: 1px solid rgba(74,222,128,0.3); text-transform: uppercase; letter-spacing: 0.5px; }
.pulse-icon { display: inline-flex; animation: pulseGlow 2s infinite; border-radius: 50%; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); } 70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }

/* Premium Button */
.premium-btn { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #fff; border: none; border-radius: 100px; padding: 6px 6px 6px 20px; font-size: 0.95rem; font-weight: 700; display: inline-flex; align-items: center; gap: 15px; cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 10px 20px rgba(16,185,129,0.3), inset 0 2px 4px rgba(255,255,255,0.2); }
.premium-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(16,185,129,0.4), inset 0 2px 4px rgba(255,255,255,0.2); }
.btn-icon-circle { background: #fff; color: #059669; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: transform 0.3s; }
.premium-btn:hover .btn-icon-circle { transform: translateX(3px); }

.glass-stat { background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%); }
.impact-card { position: relative; border: none; box-shadow: 0 20px 50px rgba(15,23,42,0.3); background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; overflow: hidden; z-index: 1; }
.impact-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 100%); z-index: -1; }
.impact-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(234, 88, 12, 0.4) 0%, transparent 70%); mix-blend-mode: screen; z-index: -1; pointer-events: none; }

/* Carousel Styles */
.carousel-container { position: relative; width: 100%; overflow: hidden; }
.carousel-slide { position: absolute; inset: 0; padding: 30px; opacity: 0; visibility: hidden; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(15px); }
.carousel-slide.active { opacity: 1; visibility: visible; transform: translateY(0); z-index: 5; position: relative; }
.carousel-indicators { position: absolute; bottom: 15px; right: 25px; display: flex; gap: 8px; z-index: 10; }
.indicator { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.indicator.active { background: #fff; width: 24px; border-radius: 10px; }
.indicator:hover { background: rgba(255,255,255,0.6); }

.stat-header-new { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; z-index: 2; position: relative; }
.stat-icon-new { width: 55px; height: 55px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; }
.orange-grad { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); box-shadow: 0 10px 20px rgba(249,115,22,0.3); }
.blue-grad { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); box-shadow: 0 10px 20px rgba(59,130,246,0.3); }
.purple-grad { background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%); box-shadow: 0 10px 20px rgba(168,85,247,0.3); }
.pink-grad { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); box-shadow: 0 10px 20px rgba(236,72,153,0.3); }
.red-grad { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); box-shadow: 0 10px 20px rgba(239,68,68,0.3); }
.stat-trend { font-size: 0.85rem; font-weight: 700; padding: 6px 12px; border-radius: 20px; display: flex; align-items: center; gap: 5px; }
.stat-trend.positive { color: #10b981; background: rgba(16,185,129,0.1); }
.stat-content-new { z-index: 2; position: relative; }
.stat-value { font-size: 2.4rem; font-weight: 800; color: var(--secondary); line-height: 1.1; margin-bottom: 5px; letter-spacing: -0.5px; }
.stat-label { font-size: 1rem; color: var(--text-light); font-weight: 600; margin: 0; }

/* Activity Bento */
.bento-activity { grid-column: span 2; }
.bento-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.bento-header h3 { font-size: 1.3rem; color: var(--secondary); font-weight: 700; }
.activity-list { display: flex; flex-direction: column; gap: 20px; }
.activity-item { display: flex; gap: 15px; align-items: center; background: #fff; padding: 15px 20px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.activity-icon { width: 45px; height: 45px; border-radius: 50%; background: var(--bg-color); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.activity-info { flex: 1; }
.activity-info h4 { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.activity-info p { font-size: 0.9rem; color: var(--text-light); }
.activity-time { font-size: 0.85rem; color: #94a3b8; font-weight: 500; }

/* Event Bento */
.bento-event { grid-column: span 1; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(to bottom, var(--card-bg), #fff5f3); }
.event-icon { width: 80px; height: 80px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 20px; box-shadow: 0 10px 20px rgba(232, 69, 30, 0.3); }
.bento-event h4 { font-size: 1.3rem; color: var(--secondary); margin-bottom: 10px; font-weight: 700; }
.bento-event p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.event-tags { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; width: 100%; }
.event-tags span { font-size: 0.85rem; font-weight: 600; padding: 6px 12px; border-radius: 10px; }
.tag-date { color: var(--primary); background: rgba(232, 69, 30, 0.1); }
.tag-time { color: var(--secondary); background: rgba(30, 41, 59, 0.1); }
.btn-primary.full { width: 100%; justify-content: center; }

/* Profile Detail Lists */
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 15px; position: relative; z-index: 2; flex: 1; }
.detail-item { display: flex; align-items: flex-start; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.detail-icon { width: 40px; height: 40px; background: rgba(232, 69, 30, 0.08); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.detail-content h5 { font-size: 0.85rem; color: var(--text-light); font-weight: 500; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.detail-content p { font-size: 1.05rem; color: var(--text-dark); font-weight: 600; line-height: 1.4; }
.bento-card-title { font-size: 1.4rem; color: var(--secondary); font-weight: 700; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.bento-card-title i { color: var(--primary); }

/* Unique Profile Header Design */
.profile-header-bento {
  grid-column: span 3; background: #ffffff;
  border-radius: 32px; border: 1px solid #cbd5e1; box-shadow: 0 8px 30px rgba(0,0,0,0.08); 
  display: flex; flex-direction: column; overflow: hidden; padding-bottom: 40px; margin-bottom: 10px;
}
.profile-cover {
  width: 100%; height: 220px; background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; 
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; z-index: 1;
}
.profile-cover::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.5) 100%); z-index: -1;
}
.profile-cover::after {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 69, 30, 0.3) 0%, transparent 70%); border-radius: 50%; pointer-events: none;
}
.profile-avatar-wrapper { margin-top: -70px; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.profile-avatar-overlap {
  width: 140px; height: 140px; border-radius: 50%; border: 6px solid #f8fafc; /* match background so it blends */
  object-fit: cover; box-shadow: 0 15px 35px rgba(0,0,0,0.15); background: #fff;
}
.profile-header-info { text-align: center; margin-top: 15px; }
.profile-header-info h2 { font-size: 2.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 5px; }
.profile-header-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.profile-header-badges .badge { background: rgba(30, 41, 59, 0.05); color: var(--text-dark); border: 1px solid rgba(30, 41, 59, 0.15); font-weight: 600; padding: 8px 16px; box-shadow: none; display: inline-flex; align-items: center; gap: 8px; border-radius: 30px; font-size: 0.9rem; }
.profile-header-badges .badge.active { background: rgba(16, 185, 129, 0.1); color: var(--success); border-color: rgba(16, 185, 129, 0.2); }
.profile-header-badges .badge.danger { background: rgba(239, 68, 68, 0.1); color: #ef4444; border-color: rgba(239, 68, 68, 0.2); }
.profile-header-actions { display: flex; justify-content: center; gap: 15px; }
.profile-card-left { grid-column: span 2; }
.profile-card-right { grid-column: span 1; }

/* Modern Form Design */
.form-card { grid-column: span 3; background: #ffffff; border-radius: 32px; border: 1px solid #cbd5e1; box-shadow: 0 8px 30px rgba(0,0,0,0.08); padding: 40px; margin-bottom: 30px; position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(232, 69, 30, 0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

.avatar-upload-box { background: linear-gradient(135deg, rgba(232, 69, 30, 0.05), rgba(255, 255, 255, 0)); border: 1px dashed rgba(232, 69, 30, 0.3); border-radius: 24px; padding: 20px; transition: 0.3s; display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.avatar-upload-box:hover { border-color: var(--primary); background: rgba(232, 69, 30, 0.08); transform: translateY(-2px); }

.form-section-title { font-size: 1.15rem; color: var(--secondary); font-weight: 700; margin-bottom: 25px; padding: 12px 20px; border-radius: 12px; background: linear-gradient(90deg, rgba(30,41,59,0.03) 0%, transparent 100%); border-left: 4px solid var(--primary); display: flex; align-items: center; gap: 10px; }
.form-section-title i { color: var(--primary); font-size: 1.3rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 40px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 0.9rem; font-weight: 600; color: var(--secondary); margin-left: 5px; }

.modern-input-wrapper { position: relative; display: flex; align-items: center; }
.modern-input-wrapper i { position: absolute; left: 18px; color: #94a3b8; font-size: 1.1rem; transition: color 0.3s ease; pointer-events: none; }
.modern-input-wrapper:focus-within i { color: var(--primary); transform: scale(1.1); }

.modern-input-wrapper input, .modern-input-wrapper select, .modern-input-wrapper textarea { width: 100%; padding: 16px 20px 16px 50px; border-radius: 16px; border: 2px solid transparent; background: #f8fafc; font-size: 1rem; color: var(--text-dark); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-family: 'Outfit', sans-serif; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.modern-input-wrapper textarea { padding-top: 16px; }
.modern-input-wrapper i.fa-map-marker-alt { top: 18px; } /* Adjust icon for textarea */

.modern-input-wrapper input:focus, .modern-input-wrapper select:focus, .modern-input-wrapper textarea:focus { outline: none; background: #ffffff; border-color: var(--primary); box-shadow: 0 10px 25px rgba(232, 69, 30, 0.15), inset 0 2px 4px rgba(0,0,0,0.02); }
.modern-input-wrapper input:disabled { background: #f1f5f9; color: #64748b; cursor: not-allowed; }

.form-actions { display: flex; justify-content: flex-end; gap: 15px; margin-top: 20px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 30px; }

.save-btn-premium { background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%); color: #fff; border: none; border-radius: 16px; padding: 14px 30px; font-size: 1rem; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 10px 20px rgba(232, 69, 30, 0.3); }
.save-btn-premium:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(232, 69, 30, 0.4); }

/* Cover Animated Elements */
.cover-back-btn { position: absolute; top: 20px; left: 20px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; border: 1px solid rgba(255,255,255,0.2); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 10; }
.cover-back-btn:hover { background: #fff; color: var(--primary); transform: translateX(-5px) scale(1.1); box-shadow: 0 10px 25px rgba(255,255,255,0.3); }
.cover-edit-btn { position: absolute; top: 20px; right: 20px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; border: 1px solid rgba(255,255,255,0.2); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 10; }
.cover-edit-btn:hover { background: #fff; color: var(--primary); transform: translateX(5px) scale(1.1); box-shadow: 0 10px 25px rgba(255,255,255,0.3); }
.cover-animated-text { 
  font-size: 2.2rem; 
  font-weight: 800; 
  color: #ffffff;
  letter-spacing: 8px; 
  text-align: center; 
  z-index: 5; 
  margin-top: -30px; 
  text-transform: uppercase; 
  font-family: 'Outfit', sans-serif; 
  padding: 16px 45px;
  border-radius: 50px;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 0 20px rgba(255,255,255,0.3);
  animation: floatText 5s ease-in-out infinite;
}
@keyframes shineText { to { background-position: 200% center; } }
@keyframes floatText { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }

/* Mobile Bottom Nav (Native App Style) */
.mobile-bottom-nav { display: none; position: fixed; bottom: 20px; left: 20px; right: 20px; background: rgba(255,255,255,0.85); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border-radius: 100px; padding: 10px 20px; justify-content: space-between; align-items: center; box-shadow: 0 15px 40px rgba(0,0,0,0.1); z-index: 1000; border: 1px solid rgba(255,255,255,0.8); }
.mobile-nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-light); text-decoration: none; font-size: 0.75rem; font-weight: 600; gap: 5px; padding: 10px; }
.mobile-nav-item i { font-size: 1.3rem; }
.mobile-nav-item.active { color: var(--primary); }

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-hero { grid-column: span 2; flex-direction: column; text-align: center; gap: 30px; }
  .user-hero-content { flex-direction: column; }
  .user-badges { justify-content: center; }
  .bento-stat-3 { grid-column: span 2; }
}

@media (max-width: 992px) {
  .app-wrapper { padding: 10px; padding-bottom: 100px; width: 100% !important; margin: 0 !important; } /* Room for bottom nav */
  .top-header { border-radius: 30px; margin-bottom: 15px; }
  .mac-dock { width: 95%; overflow: visible; justify-content: space-evenly; padding: 10px; gap: 5px; }
  .dock-item-profile { display: none !important; }
  .dock-item { width: 45px; }
  .dock-icon { width: 45px; height: 45px; font-size: 1.1rem; }
  .dock-item:hover { width: 45px; margin: 0; }
  .dock-item:hover .dock-icon { width: 45px; height: 45px; transform: none; box-shadow: 0 5px 15px rgba(0,0,0,0.04); font-size: 1.1rem; }
  .dock-tooltip { display: none; }
}

@media (max-width: 768px) {
  .hero-animated-logo { display: none !important; }
  .bento-grid { grid-template-columns: 1fr; gap: 15px; }
  .bento-hero, .bento-stat, .sub-card, .impact-card, .bento-activity, .bento-event, .bento-stat-3, .profile-card-left, .profile-card-right, .profile-header-bento { grid-column: span 1 !important; }
  .user-actions { flex-direction: column; width: 100%; }
  .user-actions button { width: 100%; justify-content: center; }
  .activity-item { flex-direction: column; text-align: center; padding: 20px; }
  .profile-header-actions { flex-direction: column; width: 100%; padding: 0 20px; }
  .profile-header-actions button { width: 100%; justify-content: center; }
  .profile-cover { height: 160px; }
  .cover-animated-text { display: none !important; }
  
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-card { padding: 25px 20px; }
  .form-actions { flex-direction: column; }
  .form-actions button { width: 100%; justify-content: center; }
}

/* Store & Merchandise Styles */
.store-header-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,245,235,0.85) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 35px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  text-align: left;
  overflow: hidden;
  min-height: 160px; /* Force it to not be squished */
  box-sizing: border-box; 
}
.store-header-card::before {
  content: ''; position: absolute; top: -100px; right: -50px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, rgba(234, 88, 12, 0) 70%); border-radius: 50%; z-index: 0; pointer-events: none;
}
.store-header-card::after {
  content: ''; position: absolute; bottom: -150px; left: 10%; width: 350px; height: 350px; background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0) 70%); border-radius: 50%; z-index: 0; pointer-events: none;
}
.store-header-content { position: relative; z-index: 1; flex: 1; }
.store-header-content h2 { font-size: clamp(2.2rem, 5vw, 2.8rem); font-weight: 900; margin-bottom: 4px; background: linear-gradient(to right, var(--secondary), var(--primary), #fb923c); background-size: 200% auto; color: transparent; -webkit-background-clip: text; background-clip: text; animation: shineText 6s linear infinite; line-height: 1.2; letter-spacing: -0.5px; padding-top: 5px; padding-bottom: 0px; }
.store-header-content p { color: var(--text-light); font-size: 1.15rem; max-width: 650px; margin: 0; font-weight: 500; line-height: 1.6; }
@media (max-width: 768px) { 
  .store-header-card { padding: 20px 15px !important; } 
  .store-header-card > div:first-child { flex-direction: row !important; align-items: flex-start !important; justify-content: flex-start !important; text-align: left !important; gap: 15px !important; display: flex !important; } 
  .store-header-card button { width: 45px !important; height: 45px !important; font-size: 1.1rem !important; border-radius: 12px !important; margin-top: 5px; flex-shrink: 0; }
  .store-header-content { text-align: left !important; flex: 1; display: block !important; } 
  .store-header-content h2 { font-size: 1.45rem !important; word-break: break-word !important; text-align: left !important; margin-bottom: 5px !important; line-height: 1.2 !important; } 
  .store-header-content p { font-size: 0.9rem !important; max-width: 100% !important; margin: 0 !important; line-height: 1.4 !important; display: block !important; }
  .hide-mobile { display: none !important; } 
}

.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 35px; margin-bottom: 50px; position: relative; z-index: 2; }

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card { 
  background: rgba(15, 23, 42, 0.85); 
  backdrop-filter: blur(25px); 
  -webkit-backdrop-filter: blur(25px); 
  border-radius: 35px; 
  overflow: hidden; 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.15); 
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); 
  position: relative; 
  display: flex; 
  flex-direction: column; 
  height: 100%; 
  animation: slideUpFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards; 
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.15) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover { 
  transform: translateY(-15px) scale(1.03); 
  box-shadow: 0 40px 80px rgba(234, 88, 12, 0.2), inset 0 0 0 1px rgba(234, 88, 12, 0.5); 
  border-color: rgba(234, 88, 12, 0.5); 
  z-index: 5; 
}

.product-image-wrapper { 
  position: relative; 
  width: calc(100% - 30px); 
  margin: 15px auto 0;
  padding-top: 85%; 
  border-radius: 25px;
  overflow: hidden; 
  background: #0f172a; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  z-index: 1;
}
.product-image-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); }
.product-card:hover .product-image-wrapper img { transform: scale(1.15) rotate(2deg); }
.product-badge { position: absolute; top: 25px; left: 25px; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; z-index: 2; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: 0.3s; }
.product-card:hover .product-badge { background: linear-gradient(135deg, var(--primary), #ea580c); border-color: transparent; }

.product-details { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; position: relative; z-index: 1; }
.product-title { font-size: 1.4rem; font-weight: 800; color: #ffffff; margin-bottom: 8px; letter-spacing: -0.5px; }
.product-desc { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; font-weight: 400; }

.product-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: auto; }
.product-price { display: flex; flex-direction: column; }
.product-price .current-price { font-size: 1.6rem; font-weight: 900; color: #ffffff; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.product-price .original-price { font-size: 0.85rem; color: #64748b; text-decoration: line-through; margin-top: 6px; font-weight: 600; }

.btn-order { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 12px 24px; border-radius: 100px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); display: flex; align-items: center; gap: 8px; backdrop-filter: blur(10px); }
.product-card:hover .btn-order { background: linear-gradient(135deg, var(--primary), #ea580c); color: #fff; border-color: transparent; box-shadow: 0 10px 25px rgba(232,69,30,0.4); transform: translateY(-2px); }

/* Donation Page Styles */
.donation-split-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; margin-top: 20px; align-items: start; margin-bottom: 80px; }

.impact-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(234, 88, 12, 0.1); color: var(--primary); padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: -15px; border: 1px solid rgba(234, 88, 12, 0.2); width: fit-content; }
.motivation-section { display: flex; flex-direction: column; gap: 30px; position: relative; z-index: 1; }
.motivation-section h2 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; color: transparent; margin-bottom: 10px; }
.motivation-section p { font-size: 1.15rem; color: var(--text-light); line-height: 1.7; font-weight: 500; border-left: 4px solid var(--primary); padding-left: 20px; border-radius: 2px; }

.impact-slider-container { position: relative; width: 100%; border-radius: 32px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15); height: 400px; background: #000; }
.impact-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out; }
.impact-slide.active { opacity: 1; z-index: 2; }
.impact-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transform: scale(1.05); transition: transform 6s ease; }
.impact-slide.active img { transform: scale(1); }
.slide-caption { position: absolute; bottom: 0; left: 0; width: 100%; padding: 60px 30px 30px 30px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; z-index: 3; }
.slide-caption h4 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.slide-caption p { font-size: 1.05rem; color: rgba(255,255,255,0.9); line-height: 1.4; margin: 0; font-weight: 400; }

.donate-payment-card { background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%); border-radius: 40px; padding: 50px 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.15), inset 0 1px 1px rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.05); position: sticky; top: 100px; text-align: center; color: #fff; overflow: hidden; }
.donate-payment-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(234, 88, 12, 0.15) 0%, transparent 50%); pointer-events: none; z-index: 0; }
.donate-payment-card > * { position: relative; z-index: 1; }
.donate-payment-card h3 { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 30px; letter-spacing: -0.5px; }

.qr-box { background: #ffffff; padding: 20px; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 8px rgba(255,255,255,0.05); display: inline-block; margin-bottom: 30px; position: relative; }
.qr-box img { width: 190px; height: 190px; object-fit: contain; border-radius: 16px; }
.qr-box::after { content: 'SCAN & PAY'; position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #ea580c, #f97316); color: #fff; padding: 8px 20px; border-radius: 30px; font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; box-shadow: 0 10px 20px rgba(234, 88, 12, 0.4); white-space: nowrap; }

.bank-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; text-align: left; }
.bank-detail-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 20px 15px; border-radius: 20px; text-align: center; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.bank-detail-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.bank-detail-item i { font-size: 1.5rem; color: #fb923c; margin-bottom: 12px; display: block; }
.bank-detail-item .label { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; display: block; font-weight: 600; }
.bank-detail-item .value { font-size: 1.15rem; color: #fff; font-weight: 700; word-break: break-all; }
.bank-detail-item.full-width { grid-column: span 2; display: flex; align-items: center; justify-content: flex-start; text-align: left; padding: 20px 25px; gap: 20px; }
.bank-detail-item.full-width i { margin-bottom: 0; font-size: 2rem; color: #ea580c; background: rgba(234, 88, 12, 0.1); padding: 15px; border-radius: 16px; }
.bank-detail-item.full-width .text-group { flex: 1; }
.bank-detail-item.full-width .value { font-size: 1.3rem; }

.quote-box { margin-top: 30px; background: rgba(241, 245, 249, 0.5); border-left: 4px solid var(--primary); padding: 25px 30px; border-radius: 0 20px 20px 0; font-size: 1.15rem; font-style: italic; color: var(--secondary); font-weight: 600; line-height: 1.6; }
.quote-author { display: block; margin-top: 10px; font-size: 0.9rem; color: var(--text-light); font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 992px) {
  .donation-split-layout { grid-template-columns: 1fr; }
  .motivation-section h2 { font-size: 2.5rem; }
  .impact-slider-container { height: 250px; }
  .donate-payment-card { position: static; }
}

/* Downloads Page Styles */
.modern-downloads-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 40px 0 80px 0; }
.asset-card { background: rgba(255,255,255,0.95); border-radius: 40px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 8px 30px rgba(0,0,0,0.08); border: 1px solid #cbd5e1; position: relative; overflow: hidden; transition: all 0.4s ease; }
.asset-card:hover { transform: translateY(-10px); box-shadow: 0 40px 80px rgba(0,0,0,0.08); }

.asset-visual { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 30px; height: 450px; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; position: relative; overflow: hidden; box-shadow: inset 0 20px 40px rgba(0,0,0,0.2); } .asset-visual::before { content: ""; position: absolute; width: 150%; height: 150%; background: conic-gradient(from 0deg, transparent, rgba(234, 88, 12, 0.4), transparent); animation: rotateGlow 6s linear infinite; } @keyframes rotateGlow { 100% { transform: rotate(360deg); } } .asset-visual::after { content: ""; position: absolute; inset: 3px; background: inherit; border-radius: 27px; z-index: 0; } .asset-visual > div { z-index: 1; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 30px 60px rgba(0,0,0,0.5); animation: floatCard 6s ease-in-out infinite; } .asset-card:hover .asset-visual > div { transform: scale(1.08) translateY(-10px); } @keyframes floatCard { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } } /* ID Card Preview CSS */ .id-preview { width: 230px; height: 370px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); border-radius: 20px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(255,255,255,0.4); } .id-preview::after { content: ""; position: absolute; top: 0; left: -150%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent); transform: skewX(-25deg); animation: glassShine 4s infinite; } @keyframes glassShine { 0% { left: -150%; } 20% { left: 150%; } 100% { left: 150%; } } .id-header { background: linear-gradient(135deg, var(--secondary), #000); width: 100%; padding: 25px 10px 50px 10px; color: #fff; text-align: center; clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); } .id-header h4 { font-size: 0.9rem; font-weight: 800; margin: 0; letter-spacing: 2px; } .id-avatar { width: 90px; height: 90px; border-radius: 50%; border: 4px solid #fff; object-fit: cover; margin-top: -45px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 2; background: #fff; } .id-body { padding: 15px 15px; text-align: center; width: 100%; } .id-name { font-size: 1.3rem; font-weight: 900; color: var(--dark); margin-bottom: 5px; letter-spacing: -0.5px; } .id-role { font-size: 0.8rem; color: var(--primary); font-weight: 800; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; } .id-qr { width: 70px; height: 70px; margin-top: auto; margin-bottom: 25px; border-radius: 8px; border: 2px solid #e2e8f0; padding: 2px; } .id-footer { background: #f8fafc; width: 100%; padding: 12px; font-size: 0.7rem; font-weight: 700; color: #64748b; margin-top: auto; text-align: center; border-top: 1px solid #e2e8f0; } /* Certificate Preview CSS */ .cert-preview { width: 100%; max-width: 380px; aspect-ratio: 1.414 / 1; background: #fff; border-radius: 4px; position: relative; border: 12px solid #0f172a; padding: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: inset 0 0 0 2px #cfb53b, 0 20px 50px rgba(0,0,0,0.5); } .cert-inner { border: 2px dashed #cfb53b; width: 100%; height: 100%; padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: #fcfaf5; position: relative; } .cert-logo { width: 35px; margin-bottom: 8px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); } .cert-title { font-size: 1.1rem; font-family: "Times New Roman", serif; color: var(--secondary); font-weight: 900; letter-spacing: 4px; margin-bottom: 12px; text-transform: uppercase; } .cert-subtitle { font-size: 0.55rem; color: #64748b; margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; } .cert-name { font-size: 1.4rem; font-family: cursive, sans-serif; color: var(--primary); font-weight: 700; margin-bottom: 15px; border-bottom: 1px solid #cbd5e1; padding-bottom: 5px; width: 85%; } .cert-signature { display: flex; justify-content: space-between; width: 85%; margin-top: 15px; } .cert-signature div { border-top: 1px solid #94a3b8; font-size: 0.45rem; padding-top: 4px; color: #64748b; width: 40%; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; } .gold-seal { position: absolute; bottom: 15px; right: 25px; width: 40px; height: 40px; background: radial-gradient(circle, #fcd34d 0%, #b45309 100%); border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.3); border: 2px dashed rgba(255,255,255,0.7); }

@media (max-width: 992px) {
  .modern-downloads-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .bank-details-grid { grid-template-columns: 1fr; gap: 10px; }
  .bank-detail-item.full-width { grid-column: span 1; flex-direction: column; text-align: center; justify-content: center; padding: 20px 15px; }
  .bank-detail-item.full-width i { margin-right: 0; margin-bottom: 12px; }
  .bank-detail-item .value { font-size: 1.1rem; }
  .hero-greeting { font-size: 1.8rem; letter-spacing: 0px; }
}

/* Ultra Modern Loader */.modern-loader { position: fixed; inset: 0; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; justify-content: center; align-items: center; z-index: 99999; transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s; }.modern-loader.hidden { opacity: 0; visibility: hidden; }.loader-spinner { width: 120px; height: 120px; border-radius: 50%; border: 3px solid transparent; border-top-color: #ea580c; border-bottom-color: #1e293b; animation: ultraSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite; position: absolute; box-shadow: 0 0 40px rgba(234, 88, 12, 0.3); }.loader-spinner::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; border: 3px solid transparent; border-left-color: #1e293b; border-right-color: #ea580c; animation: ultraSpinReverse 2s linear infinite; }.loader-logo { width: 50px; height: 50px; animation: softPulse 2s ease-in-out infinite; z-index: 2; border-radius: 50%; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }@keyframes ultraSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }@keyframes ultraSpinReverse { 0% { transform: rotate(360deg); } 100% { transform: rotate(0deg); } }@keyframes softPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }



/* New Horizontal Asset Layout */
.downloads-row-wrapper { display: flex; flex-direction: column; gap: 40px; margin: 40px 0 100px 0; }
.asset-row-card { display: flex; align-items: center; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); border-radius: 40px; padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.9); gap: 40px; transition: transform 0.4s ease; }
.asset-row-card:hover { transform: translateY(-5px); }
.asset-row-card.reverse { flex-direction: row-reverse; }
.asset-visual-col { flex: 1; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 30px; height: 400px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: inset 0 20px 40px rgba(0,0,0,0.2); min-width: 350px; }
.asset-visual-col::before { content: ''; position: absolute; width: 150%; height: 150%; background: conic-gradient(from 0deg, transparent, rgba(234, 88, 12, 0.4), transparent); animation: rotateGlow 6s linear infinite; }
.asset-visual-col.cert-visual::before { background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.4), transparent); }
.asset-visual-col::after { content: ''; position: absolute; inset: 3px; background: inherit; border-radius: 27px; z-index: 0; }
.asset-visual-col > div { z-index: 1; animation: floatCard 6s ease-in-out infinite; box-shadow: 0 30px 60px rgba(0,0,0,0.5); transition: transform 0.5s; }
.asset-row-card:hover .asset-visual-col > div { transform: scale(1.05) translateY(-10px); }
.asset-content-col { flex: 1; padding: 20px 40px 20px 20px; }
.asset-row-card.reverse .asset-content-col { padding: 20px 20px 20px 40px; }
.asset-badge { display: inline-block; padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; background: rgba(234, 88, 12, 0.1); color: var(--primary); margin-bottom: 20px; }
.asset-badge.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.asset-content-col h3 { font-size: 2.5rem; font-weight: 900; color: var(--dark); margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
.asset-content-col p { font-size: 1.1rem; color: #64748b; line-height: 1.7; margin-bottom: 40px; }
.btn-download-glow { width: 100%; max-width: 300px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border: none; padding: 20px 30px; border-radius: 25px; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 15px 30px rgba(234, 88, 12, 0.3); position: relative; overflow: hidden; }
.btn-download-glow:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 25px 40px rgba(234, 88, 12, 0.4); }
@media (max-width: 992px) { .asset-row-card, .asset-row-card.reverse { flex-direction: column; gap: 20px; padding: 15px; } .asset-visual-col { width: 100%; min-width: unset; height: 350px; } .asset-content-col, .asset-row-card.reverse .asset-content-col { padding: 20px 10px; text-align: center; } .btn-download-glow { max-width: 100%; margin: 0 auto; } }

/* WOW Assets Layout */
.wow-assets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 10px 0 80px 0; }
.wow-asset-card { position: relative; background: rgba(10, 15, 30, 0.75); backdrop-filter: blur(35px); -webkit-backdrop-filter: blur(35px); border-radius: 40px; padding: 20px; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.1); display: flex; flex-direction: column; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.wow-asset-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(139, 92, 246, 0.2)); opacity: 0; transition: opacity 0.5s ease; z-index: 0; }
.wow-asset-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 40px 80px rgba(234, 88, 12, 0.3); border-color: rgba(234, 88, 12, 0.4); }
.wow-asset-card:hover::before { opacity: 1; }
.wow-glow-bg { display: none; }
.wow-visual-stage { background: radial-gradient(circle at 50% 100%, rgba(234, 88, 12, 0.15) 0%, rgba(10, 15, 30, 0.8) 70%); border-radius: 30px; height: 420px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; border: 1px solid rgba(255,255,255,0.08); perspective: 1200px; box-shadow: inset 0 -20px 40px rgba(0,0,0,0.5); }
.wow-floating { animation: wowFloat 6s ease-in-out infinite; transform-style: preserve-3d; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 15px 30px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.15); }
@keyframes wowFloat { 0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg) scale(1); } 50% { transform: translateY(-25px) rotateX(-5deg) rotateY(5deg) scale(1.05); } }
.wow-content { padding: 35px 20px 15px 20px; text-align: center; position: relative; z-index: 1; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.wow-content h3 { font-size: 2rem; font-weight: 900; color: #ffffff; margin-bottom: 10px; letter-spacing: -0.5px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.wow-content p { color: #94a3b8; font-size: 1.05rem; margin-bottom: 30px; font-weight: 500; }
.wow-btn-download { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1); padding: 8px 8px 8px 25px; border-radius: 50px; font-weight: 800; font-size: 1.05rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); margin: 0 auto; max-width: 260px; width: 100%; backdrop-filter: blur(10px); }
.wow-btn-download:hover { background: linear-gradient(135deg, var(--primary), #ea580c); box-shadow: 0 15px 35px rgba(234, 88, 12, 0.5); transform: scale(1.05) translateY(-2px); border-color: transparent; }
.wow-icon-circle { background: rgba(255,255,255,0.2); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); transition: 0.3s; }
.wow-btn-download:hover .wow-icon-circle { background: rgba(255,255,255,0.3); transform: rotate(15deg); }

@media (max-width: 768px) {
  .wow-assets-grid { grid-template-columns: 1fr; gap: 20px; }
  .wow-visual-stage { height: 390px; }
  
  /* Avatar Box Mobile Fix */
  .avatar-upload-box {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    position: relative;
    padding-top: 40px !important;
    gap: 15px !important;
  }
  .avatar-upload-box .extracted-style-bf7c49 {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }
  .avatar-upload-box .extracted-style-bf7c49 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .avatar-upload-box .extracted-style-f30ee2 {
    position: absolute;
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 375px) {
  .app-wrapper { padding: 5px !important; padding-bottom: 90px !important; }
  .bento-card, .profile-header-bento { padding: 15px 10px !important; border-radius: 20px; }
  .profile-header-bento { padding-bottom: 25px !important; }
  .profile-cover { height: 130px; }
  .profile-avatar-wrapper { margin-top: -50px; }
  .profile-avatar-overlap { width: 100px; height: 100px; border-width: 4px; }
  .profile-header-info h2 { font-size: 1.8rem; }
  .extracted-style-569444 { min-width: 100% !important; }
  .mac-dock { width: 100%; border-radius: 20px; padding: 10px 5px; justify-content: center; gap: 2px; }
  .dock-item { width: 40px; }
  .dock-icon { width: 40px; height: 40px; font-size: 1rem; }
}
