/* ===== DESIGNER AURORA GLASSMORPHISM STYLES ===== */

body {
  background-color: #03050A;
}

/* Glassmorphism Panels */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Aurora Blobs */
.aurora-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 20s infinite ease-in-out alternate;
  opacity: 0.6;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 100px) scale(1.2); }
  100% { transform: translate(-50px, -50px) scale(0.9); }
}

.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

/* Text Gradient Animation */
.animate-gradient {
  background-size: 200% auto;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* Portfolio Tabs */
.main-tab {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.active-main-tab {
  background: linear-gradient(135deg, #3B82F6 0%, #A855F7 100%);
  color: white;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Category Filters */
.cat-filter {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
}
.active-cat-filter {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.inactive-cat-filter:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
}

/* Portfolio Card */
.portfolio-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.portfolio-card .aspect-video, .portfolio-card .aspect-\[4\/3\] {
  flex-shrink: 0;
}
.portfolio-card .p-5, .portfolio-card .p-4 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #03050A; }
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-200 { transition-delay: 200ms; }

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: toastIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.toast.success { border-color: rgba(34, 197, 94, 0.5); color: #4ADE80; }
.toast.error { border-color: rgba(239, 68, 68, 0.5); color: #F87171; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(50px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(50px) scale(0.9); }
}
