/* ============================================================
   PREMIUMBLOG — Glassmorphism Design System
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --sky-50:  #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;

  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

  --indigo-400: #818cf8;
  --indigo-500: #6366f1;

  --purple-400: #c084fc;
  --purple-500: #a855f7;

  --green-400: #4ade80;
  --green-500: #22c55e;

  --red-400: #f87171;
  --red-500: #ef4444;

  /* Semantic */
  --primary:       var(--sky-500);
  --primary-hover: var(--sky-600);
  --primary-glow:  rgba(14, 165, 233, 0.35);
  --accent:        var(--indigo-500);
  --success:       var(--green-500);
  --danger:        var(--red-500);

  /* Glass surfaces */
  --glass-bg:      rgba(255, 255, 255, 0.07);
  --glass-bg-mid:  rgba(255, 255, 255, 0.11);
  --glass-bg-high: rgba(255, 255, 255, 0.16);
  --glass-border:  rgba(255, 255, 255, 0.18);
  --glass-border-strong: rgba(255, 255, 255, 0.28);
  --glass-blur:    blur(20px);
  --glass-blur-sm: blur(10px);

  /* Text */
  --text:         #f0f8ff;
  --text-muted:   rgba(224, 242, 254, 0.6);
  --text-faint:   rgba(224, 242, 254, 0.35);
  --border:       rgba(255, 255, 255, 0.12);

  /* Layout */
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow:     0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg:  0 12px 48px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 32px var(--primary-glow);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #020d1a;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--sky-400); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky-300); }

img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

/* ─── Ambient Background ─────────────────────────────────────── */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #0ea5e9, transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  bottom: -150px; right: -150px;
  animation: orbFloat 22s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0284c7, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbFloat 28s ease-in-out infinite 4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

/* ─── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(2, 13, 26, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--sky-400), var(--indigo-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-img { height: 32px; width: auto; border-radius: 6px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--glass-bg); }

/* User menu dropdown */
.nav-user-menu { position: relative; }
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-user-btn:hover { background: var(--glass-bg-mid); }

.nav-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--indigo-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: rgba(2, 13, 26, 0.92);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown.open { display: block; animation: fadeIn 0.18s ease; }

.dropdown-item {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--glass-bg-mid); color: var(--text); }
.dropdown-item--danger:hover { background: rgba(239, 68, 68, 0.15); color: var(--red-400); }
.dropdown-divider { height: 1px; background: var(--border); margin: 0.4rem 0; }

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  margin-left: auto;
  padding: 0.25rem;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid var(--border);
}
.nav-mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.6rem 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-link:hover { color: var(--text); background: var(--glass-bg); }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  color: #fff;
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--sky-400), var(--blue-500));
  color: #fff;
  box-shadow: 0 6px 24px rgba(14, 165, 233, 0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--glass-bg);
  border-color: var(--glass-border-strong);
  color: var(--text-muted);
}
.btn-ghost:hover {
  background: var(--glass-bg-mid);
  color: var(--text);
  border-color: var(--sky-400);
}

.btn-success {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
}
.btn-success:hover { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; }

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--red-400);
}
.btn-danger:hover { background: rgba(239, 68, 68, 0.25); color: var(--red-400); }

.btn-sm { padding: 0.35rem 0.8rem; font-size: 0.82rem; }
.btn-lg { padding: 0.8rem 1.8rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ─── Glass Card ─────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* ─── Flash / Toast ──────────────────────────────────────────── */
.flash-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 360px;
}

.flash-container--static {
  position: static;
  margin-bottom: 1rem;
  max-width: 100%;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: rgba(2, 13, 26, 0.9);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease;
  font-size: 0.9rem;
}
.toast--success { border-color: rgba(34, 197, 94, 0.5); }
.toast--error   { border-color: rgba(239, 68, 68, 0.5); }
.toast--info    { border-color: rgba(14, 165, 233, 0.5); }

.toast-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.toast--success .toast-icon { background: rgba(34, 197, 94, 0.2); color: var(--green-400); }
.toast--error   .toast-icon { background: rgba(239, 68, 68, 0.2); color: var(--red-400); }
.toast--info    .toast-icon { background: rgba(14, 165, 233, 0.2); color: var(--sky-400); }

.toast-close {
  margin-left: auto;
  background: none; border: none;
  color: var(--text-faint);
  font-size: 1.1rem; line-height: 1;
  cursor: pointer; flex-shrink: 0;
}
.toast-close:hover { color: var(--text-muted); }

/* ─── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Main Content ───────────────────────────────────────────── */
.main-content {
  position: relative;
  z-index: 1;
  padding-top: 64px;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: var(--glass-bg-mid);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sky-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--sky-400), var(--indigo-400), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-balance-pill {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-balance-pill strong { color: var(--sky-400); }

.hero-decoration {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInRight 0.8s ease 0.5s both;
}

.hero-card-float {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: var(--glass-bg-mid);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  font-size: 1.5rem;
}
.hero-card-float--1 { animation: floatY 4s ease-in-out infinite; }
.hero-card-float--2 { animation: floatY 4s ease-in-out infinite 2s; }
.hcf-label { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 600; }
.hcf-sub   { font-size: 0.72rem; color: var(--sky-400); margin-top: 1px; }

/* ─── Search Bar ─────────────────────────────────────────────── */
.search-bar-section {
  padding: 2rem 1.5rem 0;
  position: relative; z-index: 1;
}

.search-form {
  display: flex;
  gap: 0.75rem;
  max-width: 540px;
}

.search-input {
  flex: 1;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}
.search-input::placeholder { color: var(--text-faint); }
.search-input:focus { border-color: var(--sky-400); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }

/* ─── Posts Section ──────────────────────────────────────────── */
.posts-section { padding: 3rem 1.5rem 5rem; position: relative; z-index: 1; }

.section-header {
  margin-bottom: 2.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.section-sub { color: var(--text-muted); font-size: 0.9rem; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* ─── Post Card ──────────────────────────────────────────────── */
.post-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: var(--glass-border-strong);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(14, 165, 233, 0.08);
  transform: translateY(-3px);
}

.post-card-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }

.post-card-thumb--placeholder {
  background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(99,102,241,0.15));
  display: flex; align-items: center; justify-content: center;
}
.thumb-placeholder-text {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
}

.post-card-premium-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(2, 13, 26, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sky-300);
  display: flex; align-items: center; gap: 0.25rem;
}

.post-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }

.post-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }

.tag-pill {
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.2);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sky-400);
  transition: all var(--transition);
}
.tag-pill:hover { background: rgba(14, 165, 233, 0.2); color: var(--sky-300); }

.post-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.post-card-title a { color: var(--text); }
.post-card-title a:hover { color: var(--sky-300); }

.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.post-card-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.post-author, .post-date { font-size: 0.78rem; color: var(--text-faint); }
.post-card-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sky-400);
}
.post-card-read-more:hover { color: var(--sky-300); }

/* ─── Post Page ──────────────────────────────────────────────── */
.post-container { max-width: var(--max-width); margin: 0 auto; padding: 6rem 1.5rem 4rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--sky-400); }

.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }

.post-article {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.post-cover img { width: 100%; max-height: 420px; object-fit: cover; }

.post-header { padding: 2rem 2rem 1rem; }

.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }

.post-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.post-author-info { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text-muted); }
.post-author-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--indigo-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #fff;
}
.post-date-full { font-size: 0.82rem; color: var(--text-faint); }
.post-premium-count { font-size: 0.8rem; color: var(--sky-400); font-weight: 600; }

.post-content--preview { padding: 1.5rem 2rem; }
.post-content--premium { padding: 0 2rem 1.5rem; }
.post-content h2, .post-content h3 { margin: 1.5em 0 0.6em; }
.post-content p  { margin-bottom: 1em; color: var(--text-muted); line-height: 1.75; }
.post-content ul, .post-content ol { margin: 1em 0 1em 1.5em; color: var(--text-muted); }
.post-content li { margin-bottom: 0.4em; }
.post-content pre {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  overflow-x: auto;
  margin: 1em 0;
  font-size: 0.88rem;
}
.post-content code {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.88em;
  color: var(--sky-300);
}
.post-content pre code { background: none; border: none; padding: 0; color: inherit; }
.post-content img { border-radius: var(--radius); margin: 1em 0; }
.post-content blockquote {
  border-left: 3px solid var(--sky-500);
  padding: 0.75rem 1.25rem;
  margin: 1em 0;
  color: var(--text-muted);
  background: rgba(14,165,233,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ─── Premium Section ────────────────────────────────────────── */
.premium-section {
  margin: 0 2rem 2rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(14, 165, 233, 0.04);
}

.premium-section-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(99,102,241,0.2));
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sky-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.premium-section-desc { font-size: 0.88rem; color: var(--text-muted); }

.premium-links-list { padding: 0.75rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.premium-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: all var(--transition);
}
.premium-link-item:hover { border-color: var(--glass-border-strong); background: var(--glass-bg); }
.premium-link-item.unlocked { border-color: rgba(34, 197, 94, 0.25); background: rgba(34, 197, 94, 0.04); }

.pli-left { display: flex; align-items: center; gap: 0.85rem; min-width: 0; flex: 1; }
.pli-icon { font-size: 1.3rem; flex-shrink: 0; }
.pli-info { min-width: 0; }
.pli-title { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.2rem; }
.pli-url { font-size: 0.8rem; color: var(--sky-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 320px; display: block; }
.pli-url--blurred { filter: blur(5px); color: var(--text-faint); pointer-events: none; user-select: none; }
.pli-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.pli-price { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--sky-400); }

.premium-cta {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.premium-cta p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; }
.premium-cta-btns { display: flex; gap: 0.75rem; justify-content: center; }

/* ─── Post Sidebar ───────────────────────────────────────────── */
.post-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1rem; }

.sidebar-widget {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.widget-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.wallet-widget .wallet-balance {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sky-400);
  margin-bottom: 0.85rem;
}

.sidebar-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sll-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.sll-item--unlocked { border-color: rgba(34, 197, 94, 0.2); }
.sll-icon { font-size: 0.9rem; flex-shrink: 0; }
.sll-title { flex: 1; color: var(--text-muted); }
.sll-price { font-size: 0.75rem; color: var(--sky-400); font-weight: 600; margin-left: auto; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ─── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.2s ease; }

.modal-card {
  position: relative;
  background: rgba(4, 20, 40, 0.95);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: scaleIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 30px; height: 30px;
  color: var(--text-muted);
  font-size: 1.1rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--glass-bg-mid); color: var(--text); }

.modal-header { text-align: center; margin-bottom: 1.5rem; }
.modal-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.modal-title { font-size: 1.25rem; font-weight: 700; }

.modal-body { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.modal-link-title { font-size: 0.95rem; color: var(--text-muted); text-align: center; }
.modal-price-row, .modal-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.modal-price { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--sky-400); }
.modal-balance { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--green-400); }

.modal-footer { display: flex; gap: 0.75rem; }
.modal-footer .btn { flex: 1; }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.4rem; }
.label-hint { font-weight: 400; opacity: 0.7; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: all var(--transition);
  outline: none;
}
.form-input::placeholder { color: var(--text-faint); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sky-400);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
  background: var(--glass-bg-mid);
}

.form-input--lg { font-size: 1.05rem; padding: 0.8rem 1rem; }
.form-input--price { width: 130px; }

.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.78rem; color: var(--text-faint); margin-top: 0.4rem; }
.form-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin: 1.5rem 0 1rem;
}
.form-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }

.input-with-toggle { position: relative; }
.input-with-toggle .form-input { padding-right: 2.8rem; }
.input-toggle-btn {
  position: absolute;
  right: 0.65rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  font-size: 1rem; color: var(--text-faint); cursor: pointer;
}

/* ─── Auth Layout ────────────────────────────────────────────── */
.auth-body { background: #020d1a; }

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative; z-index: 1;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--glass-bg-mid);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-card-header { text-align: center; margin-bottom: 2rem; }
.auth-title { font-size: 1.7rem; font-weight: 800; margin-bottom: 0.35rem; }
.auth-subtitle { color: var(--text-muted); font-size: 0.9rem; }

.auth-form { display: flex; flex-direction: column; }

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ─── Dashboard / User ───────────────────────────────────────── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5.5rem 1.5rem 4rem;
  align-items: start;
  position: relative; z-index: 1;
}

.user-sidebar {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
  text-align: center;
}

.user-sidebar-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--indigo-500));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: #fff;
  margin: 0 auto 0.75rem;
}
.user-sidebar-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
.user-sidebar-role { font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.25rem; }

.user-sidebar-nav { display: flex; flex-direction: column; gap: 0.3rem; text-align: left; }
.user-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.87rem;
  font-weight: 500;
  transition: all var(--transition);
}
.user-nav-link:hover { background: var(--glass-bg-mid); color: var(--text); }
.user-nav-link.active { background: rgba(14, 165, 233, 0.15); color: var(--sky-400); border: 1px solid rgba(14, 165, 233, 0.2); }

.dashboard-main { min-width: 0; }
.dashboard-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.dashboard-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.3rem; }
.dashboard-sub { color: var(--text-muted); font-size: 0.9rem; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover { border-color: var(--glass-border-strong); transform: translateY(-2px); }
.stat-card--blue { border-color: rgba(14, 165, 233, 0.25); background: rgba(14, 165, 233, 0.06); }
.stat-card--purple { border-color: rgba(99, 102, 241, 0.25); background: rgba(99, 102, 241, 0.06); }
.stat-card--green { border-color: rgba(34, 197, 94, 0.25); background: rgba(34, 197, 94, 0.06); }

.stat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.stat-value { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--sky-400); }
.stat-card--purple .stat-value { color: var(--indigo-400); }
.stat-card--green .stat-value { color: var(--green-400); }
.stat-label { font-size: 0.8rem; color: var(--text-faint); margin-top: 0.25rem; }

.dashboard-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.dashboard-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.panel-title { font-size: 0.92rem; font-weight: 700; }
.panel-link { font-size: 0.8rem; color: var(--sky-400); }
.panel-empty { padding: 1.5rem; text-align: center; font-size: 0.88rem; color: var(--text-faint); }
.panel-list { display: flex; flex-direction: column; }

.panel-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.panel-item:hover { background: rgba(255,255,255,0.03); }
.panel-item:last-child { border-bottom: none; }

.pi-icon { font-size: 1.1rem; flex-shrink: 0; }
.pi-info { flex: 1; min-width: 0; }
.pi-title { font-size: 0.85rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pi-sub   { font-size: 0.75rem; color: var(--text-faint); margin-top: 0.1rem; }
.pi-meta  { font-size: 0.75rem; color: var(--text-faint); flex-shrink: 0; }
.pi-amount { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; flex-shrink: 0; }
.pi-amount--credit { color: var(--green-400); }
.pi-amount--debit  { color: var(--red-400); }

.dashboard-cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(99, 102, 241, 0.12));
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius-xl);
  padding: 2rem;
  flex-wrap: wrap;
}
.cta-text h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.cta-text p  { color: var(--text-muted); font-size: 0.88rem; }

/* ─── Deposit ────────────────────────────────────────────────── */
.deposit-layout { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; margin-top: 1.5rem; align-items: start; }
.deposit-card { }
.deposit-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.deposit-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.dep-step { display: flex; gap: 1rem; align-items: flex-start; font-size: 0.88rem; }
.dep-step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; color: #fff;
}
.dep-step strong { display: block; margin-bottom: 0.2rem; }
.dep-step p { color: var(--text-muted); }

.deposit-info-col { display: flex; flex-direction: column; gap: 1rem; }
.deposit-code-card { text-align: center; }
.dep-code-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.dep-code {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--sky-400);
  background: rgba(14, 165, 233, 0.08);
  border: 1px dashed rgba(14, 165, 233, 0.3);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}
.dep-code-note { font-size: 0.78rem; color: var(--text-faint); margin-top: 0.5rem; }

.bank-info { display: flex; flex-direction: column; gap: 0.75rem; }
.bank-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; }
.bank-label { color: var(--text-muted); }
.bank-value { font-weight: 600; }
.bank-acc-row { display: flex; align-items: center; gap: 0.5rem; }
.bank-acc { font-family: 'Syne', sans-serif; font-size: 1rem; letter-spacing: 0.04em; color: var(--sky-400); }

.balance-widget { text-align: center; }
.bw-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.bw-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--green-400); margin-bottom: 0.5rem; }

/* ─── Unlocks / Transactions Lists ──────────────────────────── */
.unlocks-list { display: flex; flex-direction: column; gap: 0.75rem; }
.unlock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ur-left { display: flex; align-items: center; gap: 1rem; flex: 1; }
.ur-icon { font-size: 1.5rem; flex-shrink: 0; }
.ur-info { }
.ur-title { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.2rem; }
.ur-post { font-size: 0.8rem; color: var(--text-muted); }
.ur-date { font-size: 0.75rem; color: var(--text-faint); }
.ur-right { display: flex; align-items: center; gap: 0.75rem; }
.ur-price { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--sky-400); font-size: 0.9rem; }

/* Transactions table */
.tx-table-wrap { overflow-x: auto; padding: 0; }
.tx-table { width: 100%; border-collapse: collapse; }
.tx-table th, .tx-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.tx-table th { color: var(--text-faint); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.tx-table tr:hover td { background: rgba(255,255,255,0.02); }
.tx-desc { color: var(--text-muted); max-width: 260px; }
.tx-date { color: var(--text-faint); white-space: nowrap; }
.tx-amount--credit { color: var(--green-400); font-weight: 600; }
.tx-amount--debit  { color: var(--red-400); font-weight: 600; }

.tx-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: capitalize;
}
.tx-badge--deposit { background: rgba(34, 197, 94, 0.15); color: var(--green-400); }
.tx-badge--unlock  { background: rgba(14, 165, 233, 0.15); color: var(--sky-400); }

/* Profile */
.profile-card { max-width: 680px; }
.profile-meta { display: flex; gap: 1.5rem; font-size: 0.82rem; color: var(--text-faint); margin-bottom: 1.5rem; }

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination { display: flex; gap: 0.4rem; margin-top: 2.5rem; justify-content: center; flex-wrap: wrap; }
.page-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.page-btn:hover { background: var(--glass-bg-mid); color: var(--text); border-color: var(--sky-400); }
.page-btn.active { background: var(--sky-500); border-color: var(--sky-500); color: #fff; }

/* ─── Empty State ────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; }

/* ─── Error Page ─────────────────────────────────────────────── */
.error-page {
  text-align: center;
  padding: 8rem 2rem;
  position: relative; z-index: 1;
}
.error-code {
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--sky-400), var(--indigo-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.error-title { font-size: 1.8rem; margin-bottom: 0.75rem; }
.error-msg { color: var(--text-muted); margin-bottom: 2rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  position: relative; z-index: 1;
  margin-top: 4rem;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 0.4rem; justify-content: center; margin-bottom: 0.5rem; font-family: 'Syne', sans-serif; font-weight: 700; }
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); }
.footer-copy { font-size: 0.78rem; color: var(--text-faint); }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeIn        { from { opacity: 0 } to { opacity: 1 } }
@keyframes fadeInUp      { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }
@keyframes fadeInRight   { from { opacity: 0; transform: translateX(30px) } to { opacity: 1; transform: translateX(0) } }
@keyframes scaleIn       { from { opacity: 0; transform: scale(0.92) } to { opacity: 1; transform: scale(1) } }
@keyframes slideInRight  { from { opacity: 0; transform: translateX(30px) } to { opacity: 1; transform: translateX(0) } }
@keyframes floatY        { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@keyframes spin          { from { transform: rotate(0deg) } to { transform: rotate(360deg) } }

/* ─── Loading Skeleton ───────────────────────────────────────── */
.skeleton { background: linear-gradient(90deg, var(--glass-bg) 25%, var(--glass-bg-mid) 50%, var(--glass-bg) 75%); background-size: 200% 100%; animation: skeleton-shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton-shimmer { from { background-position: 200% 0 } to { background-position: -200% 0 } }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .hero-decoration { display: none; }
  .deposit-layout { grid-template-columns: 1fr; }
  .dashboard-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .user-sidebar { position: static; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; min-height: auto; }
  .post-content--preview, .post-content--premium, .post-header, .premium-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .premium-links-list { padding-left: 1rem; padding-right: 1rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .modal-card { padding: 1.5rem; }
}
