/* ============================================
   shahriyar.in — LimeWire-Inspired Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #0d1117;
  --bg-card: rgba(20, 25, 35, 0.7);
  --bg-card-hover: rgba(30, 38, 50, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);

  /* Greens */
  --green-primary: #00DC82;
  --green-secondary: #00b368;
  --green-dark: #004d2e;
  --green-glow: rgba(0, 220, 130, 0.15);
  --green-glow-strong: rgba(0, 220, 130, 0.3);
  --green-gradient: linear-gradient(135deg, #00DC82, #00b368);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-green: #00DC82;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-green: rgba(0, 220, 130, 0.3);
  --border-green-strong: rgba(0, 220, 130, 0.6);

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-green: 0 0 30px rgba(0, 220, 130, 0.2);
  --shadow-green-strong: 0 0 60px rgba(0, 220, 130, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --radius-full: 50%;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--text-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--green-primary);
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

input, textarea {
  font-family: var(--font-body);
  outline: none;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.text-green {
  color: var(--text-green);
}

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   Background Effects
   ============================================ */
.bg-gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 100, 50, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 220, 130, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 150, 80, 0.05), transparent 50%);
}

/* Floating 3D Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-card {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(0, 220, 130, 0.1), rgba(0, 100, 50, 0.2));
  border: 1px solid rgba(0, 220, 130, 0.1);
  backdrop-filter: blur(10px);
  animation: floatCard 12s ease-in-out infinite;
  opacity: 0.4;
}

.float-card::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(0, 220, 130, 0.05), transparent);
}

.float-card:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
  animation-duration: 14s;
  transform: rotate(-15deg);
}

.float-card:nth-child(2) {
  top: 20%;
  right: 8%;
  width: 70px;
  height: 70px;
  animation-delay: -3s;
  animation-duration: 10s;
  transform: rotate(20deg);
}

.float-card:nth-child(3) {
  bottom: 30%;
  left: 3%;
  width: 60px;
  height: 60px;
  animation-delay: -5s;
  animation-duration: 16s;
  transform: rotate(10deg);
}

.float-card:nth-child(4) {
  top: 60%;
  right: 5%;
  width: 90px;
  height: 90px;
  animation-delay: -7s;
  animation-duration: 12s;
  transform: rotate(-25deg);
}

.float-card:nth-child(5) {
  bottom: 10%;
  left: 15%;
  width: 50px;
  height: 50px;
  animation-delay: -2s;
  animation-duration: 18s;
  transform: rotate(35deg);
}

.float-card:nth-child(6) {
  top: 40%;
  right: 15%;
  width: 65px;
  height: 65px;
  animation-delay: -9s;
  animation-duration: 13s;
  transform: rotate(-8deg);
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
  25% {
    transform: translateY(-25px) rotate(calc(var(--rotate, 0deg) + 5deg));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--rotate, 0deg) - 3deg));
  }
  75% {
    transform: translateY(-30px) rotate(calc(var(--rotate, 0deg) + 2deg));
  }
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition-medium),
              box-shadow var(--transition-medium),
              padding var(--transition-medium);
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--green-primary);
  box-shadow: 0 0 12px var(--green-glow-strong);
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 12px var(--green-glow-strong); }
  50% { box-shadow: 0 0 24px var(--green-glow-strong), 0 0 48px var(--green-glow); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-primary);
  transition: width var(--transition-fast);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);
  color: #000;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: #00ff96;
  box-shadow: var(--shadow-green-strong);
  transform: translateY(-1px);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--border-green);
  background: var(--bg-glass-hover);
  color: var(--text-primary);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--green-primary);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--green-primary);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Hero Avatar Circle — inspired by LimeWire's upload circle */
.hero-avatar-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 40px;
}

.hero-avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  border: 3px solid var(--green-primary);
  animation: ringPulse 3s ease-in-out infinite;
}

.hero-avatar-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 220, 130, 0.2);
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow-strong); }
  50% { box-shadow: 0 0 40px 10px var(--green-glow); }
}

.hero-avatar {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-primary);
  overflow: hidden;
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding-bottom: 60px;
}

.stats-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 28px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ============================================
   About Section
   ============================================ */
.about {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(0, 220, 130, 0.02), transparent);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.highlight-card:hover {
  border-color: var(--border-green);
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
}

.highlight-card .h-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.highlight-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.8));
  pointer-events: none;
}

.about-float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  z-index: 2;
}

.about-float-badge h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-float-badge p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   Projects Section
   ============================================ */
.projects {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-tab:hover {
  border-color: var(--border-green);
  color: var(--text-primary);
}

.filter-tab.active {
  background: rgba(0, 220, 130, 0.1);
  border-color: var(--border-green-strong);
  color: var(--green-primary);
}

.filter-tab .tab-icon {
  font-size: 1rem;
}

/* Search Bar */
.project-search {
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
}

.project-search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.project-search input::placeholder {
  color: var(--text-muted);
}

.project-search input:focus {
  border-color: var(--border-green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.project-search .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

/* Project Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.project-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
  transition: all var(--transition-medium);
  cursor: pointer;
}

.project-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.project-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-card-image .project-icon {
  font-size: 3rem;
  opacity: 0.6;
  transition: all var(--transition-medium);
}

.project-card:hover .project-icon {
  opacity: 1;
  transform: scale(1.1);
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-body {
  padding: 20px;
}

.project-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tag {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--green-glow);
  color: var(--green-primary);
  border: 1px solid rgba(0, 220, 130, 0.15);
}

/* ============================================
   Tools / Tech Stack Section
   ============================================ */
.tools {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(0, 220, 130, 0.02), transparent);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.tool-card {
  padding: 24px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: default;
}

.tool-card:hover {
  border-color: var(--border-green);
  background: var(--bg-glass-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.tool-card .tool-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tool-card .tool-icon img {
  width: 48px;
  height: 48px;
}

.tool-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tool-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  position: relative;
  z-index: 2;
}

.contact-wrapper {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-card {
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.contact-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--border-green);
  background: var(--bg-glass-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.divider-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.divider-or::before,
.divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--border-green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 8px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--text-green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom-links a:hover {
  color: var(--text-green);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
  }

  .about-image-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .stats-card {
    gap: 24px;
    padding: 24px 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    letter-spacing: -1px;
  }

  .hero-avatar-wrapper {
    width: 160px;
    height: 160px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-card {
    padding: 32px 24px;
  }

  .contact-socials {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .float-card {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-tabs {
    gap: 6px;
  }

  .filter-tab {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* ============================================
   File Sharing — Upload Zone (LimeWire-style)
   ============================================ */
.fileshare {
  position: relative;
  z-index: 2;
}

.fileshare .section-header {
  margin-bottom: 40px;
}

.upload-zone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.upload-zone {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: var(--radius-full);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-align: center;
  overflow: hidden;
}

.upload-zone-ring {
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-full);
  border: 3px solid var(--green-primary);
  pointer-events: none;
  transition: all var(--transition-medium);
}

.upload-zone-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 220, 130, 0.3);
}

.upload-zone:hover .upload-zone-ring {
  box-shadow: 0 0 40px var(--green-glow), 0 0 80px var(--green-glow);
}

.upload-zone.drag-over {
  transform: scale(1.03);
}

.upload-zone.drag-over .upload-zone-ring {
  border-color: #00ff96;
  box-shadow: 0 0 60px var(--green-glow-strong), 0 0 120px var(--green-glow);
}

.upload-zone-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.upload-zone-icon svg {
  width: 28px;
  height: 28px;
}

.upload-zone-text {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.upload-zone-text .upload-link {
  color: var(--green-secondary);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.upload-zone-text .upload-link:hover {
  color: var(--green-primary);
}

.upload-zone-limit {
  margin-top: 16px;
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Hidden file input */
.upload-input {
  display: none;
}

/* Upload Progress */
.upload-progress {
  display: none;
  width: 100%;
  max-width: 500px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
}

.upload-progress.active {
  display: block;
}

.upload-progress-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.upload-file-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.upload-file-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  word-break: break-all;
  margin-bottom: 2px;
}

.upload-file-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.progress-bar-wrapper {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--green-gradient);
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  animation: progressShine 1.5s ease-in-out infinite;
}

@keyframes progressShine {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Upload Result / Share Card */
.upload-result {
  display: none;
  width: 100%;
  max-width: 500px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  backdrop-filter: blur(20px);
  text-align: center;
}

.upload-result.active {
  display: block;
  animation: resultFadeIn 0.5s ease;
}

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

.upload-result-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}

.upload-result h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.upload-result .result-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.share-link-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.share-link-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  min-width: 0;
}

.share-link-box .btn-copy {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--green-primary);
  color: #000;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.share-link-box .btn-copy:hover {
  background: #00ff96;
}

.share-link-box .btn-copy.copied {
  background: var(--green-secondary);
}

.result-extras {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.result-qr {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-qr canvas,
.result-qr img {
  width: 100% !important;
  height: 100% !important;
}

.result-file-info {
  text-align: left;
}

.result-file-info .info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.result-file-info .info-row .info-label {
  color: var(--text-muted);
  min-width: 70px;
}

.result-file-info .info-row .info-value {
  color: var(--text-primary);
  font-weight: 500;
}

/* Password toggle */
.password-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.password-toggle label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.password-toggle input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-subtle);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.password-toggle input[type="checkbox"]:checked {
  background: var(--green-primary);
  border-color: var(--green-primary);
}

.password-toggle input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #000;
  font-weight: 700;
}

.password-field {
  display: none;
  margin-bottom: 16px;
}

.password-field.active {
  display: block;
}

.password-field input {
  width: 100%;
  max-width: 280px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 0.88rem;
  text-align: center;
}

.password-field input:focus {
  border-color: var(--border-green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.upload-another {
  margin-top: 12px;
}

.upload-another .btn {
  font-size: 0.85rem;
}

/* Recent Uploads */
.recent-uploads {
  width: 100%;
  max-width: 700px;
  margin-top: 32px;
}

.recent-uploads h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: var(--text-secondary);
}

.recent-uploads-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recent-file-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.recent-file-item:hover {
  border-color: var(--border-green);
  background: var(--bg-glass-hover);
}

.recent-file-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.recent-file-details {
  flex: 1;
  min-width: 0;
}

.recent-file-details h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-file-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.recent-file-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.recent-file-actions .btn-sm {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.recent-file-actions .btn-sm:hover {
  border-color: var(--border-green);
  color: var(--green-primary);
}

/* ============================================
   File Sharing — Download Page
   ============================================ */
.download-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
}

.download-card {
  width: 100%;
  max-width: 480px;
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  text-align: center;
}

.download-file-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
}

.download-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  word-break: break-all;
}

.download-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.download-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.download-meta .meta-divider {
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--text-muted);
}

.download-password-gate {
  margin-bottom: 24px;
}

.download-password-gate p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.download-password-gate input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 12px;
}

.download-password-gate input:focus {
  border-color: var(--border-green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.download-password-gate .error-msg {
  color: #ef4444;
  font-size: 0.82rem;
  margin-top: 8px;
  display: none;
}

.download-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.download-stats {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.download-stats svg {
  width: 16px;
  height: 16px;
}

.download-error {
  text-align: center;
}

.download-error h2 {
  margin-bottom: 12px;
}

.download-error p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.download-loading {
  text-align: center;
}

.download-loading .spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--green-primary);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.download-loading p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   File Sharing — Responsive Overrides
   ============================================ */
@media (max-width: 768px) {
  .upload-zone {
    width: 280px;
    height: 280px;
  }

  .upload-progress,
  .upload-result {
    max-width: 100%;
  }

  .result-extras {
    flex-direction: column;
  }

  .result-file-info {
    text-align: center;
  }

  .share-link-box {
    flex-direction: column;
    padding: 12px;
    border-radius: var(--radius-md);
  }

  .share-link-box input {
    text-align: center;
    width: 100%;
  }

  .share-link-box .btn-copy {
    width: 100%;
  }

  .download-card {
    padding: 32px 24px;
  }

  .recent-file-item {
    flex-wrap: wrap;
  }

  .recent-file-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .upload-zone {
    width: 240px;
    height: 240px;
  }

  .upload-zone-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .upload-zone-text {
    font-size: 0.85rem;
  }
}

/* ============================================
   Scrollbar Styling
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   Selection Color
   ============================================ */
::selection {
  background: var(--green-glow-strong);
  color: var(--text-primary);
}

/* ============================================
   Action Buttons (Danger/Warning)
   ============================================ */
.btn-warning {
  background: transparent;
  color: #ff9800;
  border-color: rgba(255, 152, 0, 0.3);
}

.btn-warning:hover {
  background: rgba(255, 152, 0, 0.1);
  border-color: #ff9800;
  box-shadow: 0 0 15px rgba(255, 152, 0, 0.2);
}

.btn-danger {
  background: transparent;
  color: #ff3333;
  border-color: rgba(255, 51, 51, 0.3);
}

.btn-danger:hover {
  background: rgba(255, 51, 51, 0.1);
  border-color: #ff3333;
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.2);
}

.recent-file-actions {
  display: flex;
  gap: 8px;
}

/* ============================================
   Expiration Setting
   ============================================ */
.expiration-setting {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.expiration-select {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.expiration-select:focus,
.expiration-select:hover {
  border-color: var(--green-primary);
  box-shadow: 0 0 10px var(--green-glow);
}

.expiration-select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* ============================================
   Admin Panel Styles
   ============================================ */
.admin-login-box {
  max-width: 400px;
  margin: 60px auto;
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.admin-form input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.stat-card h4 {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.stat-card span {
  font-size: 2rem;
  font-weight: bold;
  color: var(--green-primary);
  font-family: var(--font-heading);
}

.admin-table-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-table th {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table tr:hover {
  background: var(--bg-glass);
}

.file-name-cell {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.success { background: rgba(0, 220, 130, 0.1); color: var(--green-primary); }
.status-badge.error { background: rgba(255, 51, 51, 0.1); color: #ff3333; }

.admin-actions {
  display: flex;
  gap: 8px;
}
