/* ========================================================
   TOUCANUS — AI COMMUNITY & STUDIO STYLESHEET
   SeaArt.ai / Civitai Modern Dark Aesthetics
   ======================================================== */

:root {
  /* ========================================================
     TOUCANUS BRAND COLOR PALETTE (From Mascot Logo & SeaArt Aesthetics)
     ======================================================== */
  /* 1. ⬛ Hitam — Canvas pemersatu tanpa garis pemisah di semua halaman */
  --bg-main: #0c0d10;
  --bg-surface: #0c0d10;
  --bg-surface-elevated: #131418;
  --bg-card: #131418;
  --bg-card-hover: #17181e;
  
  /* Tanpa garis pemisah kasar (Seamless SeaArt Aesthetic) */
  --border-subtle: transparent;
  --border-focus: #00d2ff;
  --border-active: #ffe600;

  /* 8. ⚪ Putih & Teks Berkontras Bersih */
  --text-main: #ffffff;
  --text-secondary: #9eadb8;
  --text-muted: #5e6977;
  --text-accent: #00d2ff;

  /* PALET 11 WARNA LOGO MASKOT TOUCANUS */
  /* 1. ⬛ Hitam — Garis pembentuk kerangka, pola, dan background pemersatu */
  --tc-black: #0c0d10;
  --tc-black-card: #131418;
  --tc-black-input: #17181e;
  --tc-black-stroke: #000000;

  /* 2. 🟡 Kuning Cerah — Dominan kedua setelah hitam (Kepala, leher, pangkal paruh) */
  --tc-yellow: #ffe600;
  --tc-yellow-bright: #ffea2e;
  --tc-yellow-glow: rgba(255, 230, 0, 0.35);

  /* 3. 🟢 Hijau Muda / Hijau Limau — Kepala, leher, atas tubuh */
  --tc-lime: #2ee64d;
  --tc-lime-glow: rgba(46, 230, 77, 0.3);

  /* 4. 🔵 Toska / Biru Muda — Kepala, sisi leher, paruh */
  --tc-cyan: #00d2ff;
  --tc-cyan-glow: rgba(0, 210, 255, 0.35);

  /* 5. 🟠 Oranye / Jingga — Paruh dominan, aksi & energi */
  --tc-orange: #ff7a00;
  --tc-orange-glow: rgba(255, 122, 0, 0.35);

  /* 6. 🩷 Merah Jambu / Fuchsia — Leher kanan & tubuh, like & highlight */
  --tc-fuchsia: #ff2a85;
  --tc-fuchsia-glow: rgba(255, 42, 133, 0.35);

  /* 7. 🟤 Oranye Gelap / Cokelat Kemerahan — Bagian paruh */
  --tc-dark-orange: #b34700;
  --tc-dark-orange-deep: #8b3200;

  /* 8. ⚪ Putih — Latar kontras & aksen teks */
  --tc-white: #ffffff;

  /* 9. 🟡 Kuning Pucat / Krem — Percikan latar */
  --tc-cream: #fff5b8;

  /* 10. 🔵 Biru Pucat — Percikan latar */
  --tc-pale-blue: #bae6fd;

  /* 11. 🟠 Oranye Tua / Cokelat — Percikan latar */
  --tc-amber-brown: #d97706;

  /* Mapping ke variabel aksen UI */
  --accent-cyan: var(--tc-cyan);
  --accent-blue: var(--tc-pale-blue);
  --accent-purple: var(--tc-fuchsia);
  --accent-pink: var(--tc-fuchsia);
  --accent-orange: var(--tc-orange);
  --accent-green: var(--tc-lime);

  /* Toucanus Signatures Gradients */
  --gradient-brand: linear-gradient(135deg, #ff7a00 0%, #ffe600 25%, #2ee64d 50%, #00d2ff 75%, #ff2a85 100%);
  --gradient-cta: linear-gradient(135deg, #ff7a00 0%, #ff2a85 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 210, 255, 0.25) 0%, rgba(255, 42, 133, 0.25) 100%);
  --gradient-hot: linear-gradient(135deg, #ff7a00 0%, #ffe600 100%);

  --radius-xs: 0px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-pill: 0px;

  --shadow-sm: none;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 25px var(--tc-cyan-glow);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-height: 64px;
  --sidebar-width: 76px;
  --bottom-nav-height: 68px;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body.dark-theme {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 24px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #252f44;
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: #3b4866;
}

/* ================= HEADER / NAVBAR (SEAART SEAMLESS) ================= */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--bg-main);
  border-bottom: none !important;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 16px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 10px var(--tc-cyan-glow));
  transition: var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px var(--tc-yellow-glow));
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 15px var(--tc-orange-glow);
}

.logo-icon i {
  width: 20px;
  height: 20px;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  background: linear-gradient(135deg, #ffffff 0%, var(--tc-yellow) 45%, var(--tc-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* Search Bar (Sharp Kotak Lancip & Seamless Dark) */
.search-wrapper {
  flex: 1;
  max-width: 560px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--tc-cyan);
  pointer-events: none;
}

.search-wrapper input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 42px;
  background: var(--tc-black-input);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 !important;
  color: var(--tc-white);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-wrapper input:focus {
  border-color: var(--tc-cyan);
  background: #1d1e26;
  box-shadow: 0 0 12px var(--tc-cyan-glow);
}

.clear-search-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-search-btn i {
  width: 16px;
  height: 16px;
}

/* Search Dropdown with Popular Hashtags */
.search-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--tc-black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  padding: 14px 16px;
  z-index: 300;
  backdrop-filter: blur(14px);
  animation: fadeInDown 0.18s ease;
}

.search-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dropdown-section-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tc-yellow);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-section-title i {
  width: 15px;
  height: 15px;
  color: var(--tc-orange);
}

.dropdown-section-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.dropdown-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.dropdown-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #181920;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 !important;
  padding: 6px 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropdown-tag-chip:hover {
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--tc-cyan);
  transform: translateY(-1px);
}

.dropdown-tag-chip .d-tag-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tc-cyan);
}

.dropdown-tag-chip .d-tag-count {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--tc-yellow);
  background: rgba(255, 230, 0, 0.12);
  padding: 1px 6px;
  border-radius: 0 !important;
}

.dropdown-no-tags {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 8px 0;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Token Badge */
.token-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 230, 0, 0.1);
  border: 1px solid rgba(255, 230, 0, 0.3);
  border-radius: 0 !important;
  padding: 5px 10px 5px 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.token-badge:hover {
  background: rgba(255, 230, 0, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 0 12px var(--tc-yellow-glow);
}

.token-coin {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: var(--tc-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
}

.token-coin i {
  width: 14px;
  height: 14px;
}

.token-amount {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tc-yellow);
}

.token-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--tc-cream);
}

.token-topup-mini {
  width: 18px;
  height: 18px;
  border-radius: 0;
  background: var(--tc-orange);
  color: #000;
  border: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 2px;
}

/* Notification Button & Dropdown */
.notif-wrapper {
  position: relative;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.icon-btn:hover {
  color: var(--text-main);
  background: var(--bg-surface-elevated);
}

.icon-btn i {
  width: 18px;
  height: 18px;
}

.notif-dot {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
}

.notif-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 320px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 150;
  animation: fadeInDown 0.2s ease;
}

.notif-dropdown.show {
  display: flex;
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.notif-header h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

.badge-new {
  font-size: 0.68rem;
  background: rgba(99, 102, 241, 0.2);
  color: var(--accent-purple);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.notif-item {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-fast);
}

.notif-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.notif-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-purple { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.bg-cyan { background: rgba(6, 182, 212, 0.2); color: #22d3ee; }

.notif-content {
  flex: 1;
}

.notif-title {
  font-size: 0.78rem;
  color: var(--text-main);
  line-height: 1.3;
}

.notif-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-top: 2px;
}

.notif-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* User Pill in Header */
.user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 4px 12px 4px 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.user-pill:hover {
  background: var(--bg-surface-elevated);
  border-color: rgba(255, 255, 255, 0.15);
}

.user-avatar-mini {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name-mini {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

/* ================= TAB PANES LOGIC ================= */
.tab-pane {
  display: none;
  animation: fadeIn 0.25s ease-out;
}

.tab-pane.active {
  display: block;
}

/* ================= 1. TAB HOME (COMMUNITY MASONRY FEED) ================= */
/* ================= 1. TAB HOME (COMMUNITY MASONRY FEED) ================= */
.filter-bar-container {
  max-width: 1600px;
  margin: 16px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.tool-filter-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-controls-right {
  display: flex;
  align-items: center;
  position: relative;
}

.filter-dropdown-wrapper {
  position: relative;
}

.btn-filter-trigger {
  background: var(--tc-black-card);
  border: none !important;
  color: var(--text-main);
  padding: 7px 16px;
  border-radius: 0 !important;
  font-size: 0.84rem;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-filter-trigger:hover,
.btn-filter-trigger.open {
  background: #181920;
  color: #fff;
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.15);
}

.btn-filter-trigger i {
  width: 15px;
  height: 15px;
  color: var(--tc-cyan);
}

.btn-filter-trigger .chevron-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.btn-filter-trigger.open .chevron-icon {
  transform: rotate(180deg);
}

/* Filter Popup (Sharp Kotak Lancip) */
.filter-dropdown-popup {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 310px;
  background: var(--tc-black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  padding: 16px;
  z-index: 150;
  animation: fadeInDown 0.18s ease;
}

.filter-popup-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-popup-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tc-white);
}

.sort-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sort-pill {
  background: #181920;
  border: none !important;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 0 !important;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.sort-pill:hover {
  color: #fff;
  background: #20222a;
}

.sort-pill.active {
  background: var(--tc-cyan);
  color: #000;
  font-weight: 700;
  box-shadow: 0 2px 10px var(--tc-cyan-glow);
}

.sort-pill .check-icon {
  width: 13px;
  height: 13px;
}

.filter-popup-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-reset-selection {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.btn-reset-selection:hover {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--tc-cyan);
  color: var(--tc-cyan);
}

/* Tool Filter Button: Dola 30 Detik (Sharp Kotak Lancip & Seamless) */
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tc-black-card);
  border: none !important;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 0 !important;
  font-size: 0.84rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.filter-pill:hover {
  color: var(--text-main);
  background: #181920;
}

.filter-pill.active {
  background: var(--tc-yellow);
  color: #000;
  font-weight: 800;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--tc-yellow-glow);
}

.filter-pill i {
  width: 15px;
  height: 15px;
}

/* Feed Container & Masonry Grid */
.feed-container {
  max-width: 1600px;
  margin: 16px auto;
  padding: 0 20px;
}

.masonry-grid {
  columns: 5 280px;
  column-gap: 16px;
}

@media (max-width: 1200px) {
  .masonry-grid { columns: 4 250px; }
}
@media (max-width: 900px) {
  .masonry-grid { columns: 3 220px; }
}
@media (max-width: 640px) {
  .masonry-grid { columns: 2 160px; column-gap: 10px; }
}

/* Community Post Card (SeaArt Style - Seamless Canvas) */
.post-card {
  break-inside: avoid;
  margin-bottom: 16px;
  background: var(--tc-black-card);
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.24s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.post-media-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000000;
}

.post-media {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-card:hover .post-media {
  transform: scale(1.03);
}

/* Badges on Media */
.media-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge-model {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  color: var(--tc-white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-model.dola {
  border-color: rgba(255, 230, 0, 0.4);
  color: var(--tc-yellow);
}

.badge-duration {
  background: rgba(255, 122, 0, 0.3);
  color: var(--tc-orange);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 0 !important;
  border: 1px solid rgba(255, 122, 0, 0.4);
}

/* Quick Action Overlay on Card Hover */
.post-hover-actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition-fast);
  z-index: 3;
}

.post-card:hover .post-hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.quick-btn {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 0 !important;
  padding: 5px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.quick-btn:hover {
  background: #fff;
  color: #000;
}

.quick-btn.remix {
  background: var(--gradient-cta);
  border: none;
  color: #fff;
  box-shadow: 0 2px 10px var(--tc-orange-glow);
  border-radius: 0 !important;
}

.quick-btn.remix:hover {
  filter: brightness(1.15);
  transform: scale(1.05);
}

.quick-btn.liked {
  color: var(--tc-fuchsia);
  border-color: var(--tc-fuchsia);
}

.quick-btn.liked i {
  color: var(--tc-fuchsia);
  fill: var(--tc-fuchsia);
}

/* Post Meta (Footer) */
.post-info {
  padding: 10px 12px;
}

.post-prompt-snippet {
  font-size: 0.78rem;
  color: #cbd5e1;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.post-creator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-creator {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.post-creator-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.post-creator-name {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.post-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

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

.stat-item.liked i {
  color: var(--tc-fuchsia);
  fill: var(--tc-fuchsia);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.empty-state h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

/* ================= 2. TAB TOOLS (STUDIO AI & DOLA 30 DETIK) ================= */
.tools-container {
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 20px;
}

.studio-header {
  margin-bottom: 24px;
}

.studio-title {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, var(--tc-yellow) 50%, var(--tc-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.studio-subtitle {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* Tools Selector Cards */
.tools-grid-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.tool-card {
  background: var(--tc-black-card);
  border: none !important;
  border-radius: 0 !important;
  padding: 20px;
  position: relative;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tool-card:hover:not(.disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.tool-card.active {
  border: 2px solid var(--tc-yellow) !important;
  background: linear-gradient(180deg, rgba(255, 230, 0, 0.08) 0%, var(--tc-black-card) 100%);
  box-shadow: 0 0 25px var(--tc-yellow-glow);
}

.tool-card.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.tool-badge-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.badge-flag {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 0 !important;
}

.badge-flag.hot {
  background: var(--gradient-hot);
  color: #fff;
}

.badge-flag.duration {
  background: rgba(255, 230, 0, 0.15);
  color: var(--tc-yellow);
}

.badge-flag.coming-soon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.tool-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 0 !important;
  background: #181920;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--text-main);
}

.tool-icon-circle.dola-glow {
  background: linear-gradient(135deg, var(--tc-orange) 0%, var(--tc-yellow) 100%);
  color: #000;
  box-shadow: 0 0 18px var(--tc-orange-glow);
}

.tool-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.tool-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 16px;
}

.tool-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: none !important;
  padding-top: 12px;
  font-size: 0.78rem;
}

.cost-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--tc-yellow);
}

.cost-tag i {
  width: 14px;
  height: 14px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.status-indicator.ready {
  color: var(--tc-lime);
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tc-lime);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 230, 77, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(46, 230, 77, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 230, 77, 0); }
}

/* Single Tool Selector & Featured Card */
.tools-grid-selector.single-tool-grid {
  grid-template-columns: minmax(320px, 480px);
  justify-content: flex-start;
}

.tool-card-featured {
  border: 1.5px solid rgba(255, 230, 0, 0.35) !important;
  background: var(--tc-black-card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--tc-yellow-glow);
  cursor: pointer;
  border-radius: 0 !important;
}

.tool-card-featured:hover {
  transform: translateY(-3px);
  border-color: var(--tc-yellow) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 30px var(--tc-yellow-glow);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 0 !important;
}

.btn-back-tools {
  width: 36px;
  height: 36px;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.08);
  border: none !important;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 4px;
  transition: var(--transition-fast);
}

.btn-back-tools:hover {
  background: var(--tc-cyan);
  color: #000;
  box-shadow: 0 0 12px var(--tc-cyan-glow);
}

.btn-back-tools i {
  width: 18px;
  height: 18px;
}

.workspace-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Workspace Layout (SeaArt Seamless) */
.generator-workspace {
  margin-top: 10px;
  animation: fadeIn 0.25s ease-out;
}

.workspace-card {
  background: var(--tc-black-card);
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: none !important;
}

.workspace-header {
  padding: 16px 24px;
  background: #15161c;
  border-bottom: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.active-tool-banner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.active-tool-icon {
  width: 36px;
  height: 36px;
  border-radius: 0 !important;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.active-tool-banner h4 {
  font-size: 1rem;
  font-weight: 700;
}

.active-tool-meta {
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.workspace-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 520px;
}

@media (max-width: 960px) {
  .workspace-layout {
    grid-template-columns: 1fr;
  }
}

.workspace-form {
  padding: 24px;
  border-right: none !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 960px) {
  .workspace-form {
    border-right: none;
    border-bottom: none !important;
  }
}

/* Form Controls */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 6px;
}

label i {
  width: 15px;
  height: 15px;
  color: var(--tc-cyan);
}

.char-counter {
  font-size: 0.72rem;
  color: var(--text-muted);
}

textarea#promptInput {
  width: 100%;
  background: var(--tc-black-input);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 !important;
  padding: 14px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--tc-white);
  outline: none;
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
  transition: var(--transition-fast);
}

textarea#promptInput:focus {
  border-color: var(--tc-cyan);
  box-shadow: 0 0 12px var(--tc-cyan-glow);
}

.prompt-suggestions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.suggestion-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.tag-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-family: inherit;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tag-chip:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--accent-cyan);
  color: #22d3ee;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Ratio Selector */
.ratio-selector {
  display: flex;
  gap: 8px;
}

.ratio-card {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ratio-card input {
  display: none;
}

.ratio-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.ratio-card.active {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
}

.ratio-box {
  display: block;
  border: 1.5px solid var(--text-secondary);
  border-radius: 3px;
}

.ratio-box.r-16-9 { width: 26px; height: 16px; }
.ratio-box.r-9-16 { width: 16px; height: 26px; }
.ratio-box.r-1-1  { width: 20px; height: 20px; }

.ratio-card.active .ratio-box {
  border-color: var(--accent-cyan);
}

.ratio-title {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.ratio-card.active .ratio-title {
  color: #22d3ee;
}

/* Duration Box */
.duration-locked-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.duration-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
}

.duration-badge-large i {
  width: 14px;
  height: 14px;
}

.input-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Dropzone Upload */
.dropzone-box {
  border: 1.5px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.015);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropzone-box:hover {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.03);
}

.upload-icon {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.dropzone-text {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.dropzone-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

#dropzonePreview {
  position: relative;
  max-width: 200px;
  margin: 0 auto;
}

#dropzonePreview img {
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
}

.btn-remove-img {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ef4444;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Privacy Toggle */
.privacy-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.privacy-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #334155;
  transition: .3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
}

input:checked + .slider {
  background: var(--gradient-brand);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.privacy-desc b {
  display: block;
  font-size: 0.84rem;
  color: var(--text-main);
}

.privacy-desc span {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Generate Action Bar */
.generate-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: none !important;
  gap: 16px;
}

.balance-status {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.balance-status b {
  color: var(--tc-yellow);
}

.cost-notice {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 0 !important;
  transition: var(--transition-fast);
}

.btn-large {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-primary-glow {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 20px var(--tc-orange-glow);
}

.btn-primary-glow:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--tc-fuchsia-glow);
}

.btn-secondary {
  background: #181920;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  padding: 8px 16px;
  font-size: 0.84rem;
  border-radius: 0 !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary-sm {
  background: #181920;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  padding: 6px 14px;
  font-size: 0.78rem;
  border-radius: 0 !important;
}

.btn-secondary-sm:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost-sm {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.btn-ghost-sm:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

/* Right Output Column */
.workspace-output {
  padding: 24px;
  background: rgba(10, 13, 20, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.output-preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.output-header {
  padding: 12px 18px;
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.output-header h4 {
  font-size: 0.88rem;
  font-weight: 700;
}

.output-badge {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
}

.output-display {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Idle State */
.output-idle {
  text-align: center;
  max-width: 300px;
}

.idle-art {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.idle-icon {
  width: 26px;
  height: 26px;
}

.output-idle h5 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.output-idle p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Processing State */
.output-processing {
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.ai-loader-ring {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border: 3px solid rgba(6, 182, 212, 0.15);
  border-top-color: var(--accent-cyan);
  border-right-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.output-processing h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.output-processing p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-bar-fill {
  height: 100%;
  width: 15%;
  background: var(--gradient-brand);
  border-radius: var(--radius-pill);
  transition: width 0.3s ease;
}

.progress-percent {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Ready State */
.output-ready {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.rendered-video-tag {
  width: 100%;
  max-height: 280px;
  border-radius: var(--radius-md);
  background: #000;
}

.rendered-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.rendered-actions button {
  flex: 1;
}

.btn-primary-sm {
  background: var(--gradient-brand);
  color: #fff;
  padding: 8px 14px;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
}

/* Recent Strip */
.recent-generations h5 {
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.recent-cards {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.recent-empty {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.recent-mini-thumb {
  width: 80px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.recent-mini-thumb:hover {
  border-color: var(--accent-cyan);
  transform: scale(1.05);
}

/* ================= 3. TAB PROFILE ================= */
.profile-container {
  max-width: 1400px;
  margin: 16px auto;
  padding: 0 20px;
}

.profile-card-header {
  background: var(--tc-black-card);
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: none !important;
  margin-bottom: 24px;
}

.profile-banner {
  height: 160px;
  background: linear-gradient(135deg, #181920 0%, #111216 50%, #000000 100%);
  position: relative;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.2) 0%, transparent 60%);
}

.profile-info-row {
  padding: 0 28px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-top: -50px;
}

@media (max-width: 768px) {
  .profile-info-row {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -40px;
    padding: 0 18px 18px;
  }
}

.profile-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.profile-avatar-large {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--tc-black-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.avatar-edit-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tc-cyan);
  border: 2px solid var(--tc-black-card);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.avatar-edit-badge i {
  width: 14px;
  height: 14px;
}

.profile-names {
  flex: 1;
}

.name-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-display-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--tc-white);
}

.creator-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: var(--tc-cyan);
  padding: 3px 8px;
  border-radius: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.profile-username {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.profile-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 6px;
  max-width: 600px;
}

.profile-stats-row {
  display: flex;
  border-top: none !important;
  background: #111216;
}

.stat-box {
  flex: 1;
  padding: 14px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-box:last-child {
  border-right: none;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, var(--tc-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Wallet Card */
.wallet-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .wallet-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.wallet-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wallet-icon-big {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wallet-icon-big i {
  width: 28px;
  height: 28px;
}

.wallet-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.wallet-balance-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.balance-digits {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fbbf24;
}

.balance-unit {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fcd34d;
}

.wallet-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.wallet-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mutation Box */
.mutation-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 24px;
  animation: fadeIn 0.2s ease;
}

.mutation-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.mutation-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-elevated);
}

.mutation-item .mut-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.mutation-item.minus .mut-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.mutation-item.plus .mut-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.mut-details {
  flex: 1;
}

.mut-details b {
  font-size: 0.82rem;
  display: block;
}

.mut-details span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mut-amount {
  font-size: 0.9rem;
  font-weight: 800;
}

.mutation-item.minus .mut-amount { color: #f87171; }
.mutation-item.plus .mut-amount { color: #34d399; }

/* Profile Works Tabs */
.profile-tabs-wrapper {
  margin-top: 10px;
}

.profile-tabs-header {
  display: flex;
  gap: 10px;
  border-bottom: none !important;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.prof-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.prof-tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.prof-tab-btn.active {
  color: var(--tc-yellow);
  background: rgba(255, 230, 0, 0.12);
  box-shadow: none;
}

.prof-tab-btn i {
  width: 16px;
  height: 16px;
}

/* ================= DESKTOP LEFT SIDEBAR (SEAART STYLE - SEAMLESS) ================= */
.desktop-sidebar {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--bg-main);
  border-right: none !important;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  z-index: 90;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.sidebar-item {
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
  position: relative;
}

.sidebar-item:hover {
  color: var(--tc-white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.sidebar-item.active {
  color: var(--tc-cyan);
  background: rgba(0, 210, 255, 0.08);
  box-shadow: none;
}

.sidebar-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--gradient-brand);
  box-shadow: 0 0 10px var(--tc-cyan);
}

.sidebar-icon-wrap {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-icon-wrap i {
  width: 22px;
  height: 22px;
}

.sidebar-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Responsive Viewports: Desktop vs Mobile Nav */
@media (min-width: 769px) {
  .desktop-sidebar {
    display: flex;
  }
  .app-main {
    margin-left: var(--sidebar-width);
  }
  .bottom-nav {
    display: none !important;
  }
  body.dark-theme {
    padding-bottom: 24px;
  }
  .floating-support-btn {
    bottom: 24px;
  }
}

@media (max-width: 768px) {
  .desktop-sidebar {
    display: none !important;
  }
  .app-main {
    margin-left: 0;
  }
  .bottom-nav {
    display: flex;
  }
  body.dark-theme {
    padding-bottom: calc(var(--bottom-nav-height) + 20px);
  }
  .floating-support-btn {
    bottom: calc(var(--bottom-nav-height) + 16px);
  }
}

/* ================= BOTTOM NAVIGATION BAR (MOBILE - SEAMLESS) ================= */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-height);
  background: var(--bg-main);
  border-top: none !important;
  z-index: 99;
}

.nav-container {
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
}

.nav-item {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 0 !important;
  transition: var(--transition-fast);
  font-family: inherit;
}

.nav-icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-item:hover {
  color: var(--text-secondary);
}

.nav-item.active {
  color: var(--accent-cyan);
}

/* Center Tool Nav Highlight Button */
.nav-center-item {
  position: relative;
  top: -14px;
}

.nav-center-glow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gradient-brand);
  padding: 3px;
  box-shadow: 0 0 22px rgba(6, 182, 212, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-center-item:hover .nav-center-glow,
.nav-center-item.active .nav-center-glow {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.8);
}

.nav-center-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav-center-icon i {
  width: 22px;
  height: 22px;
  color: var(--accent-cyan);
}

.nav-center-item.active .nav-center-icon {
  background: var(--gradient-brand);
}

.nav-center-item.active .nav-center-icon i {
  color: #fff;
}

.nav-center-item .nav-label {
  margin-top: 2px;
}

/* ================= FLOATING SUPPORT BUTTON & CHAT ================= */
.floating-support-btn {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 16px);
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 95;
  transition: var(--transition-fast);
}

.floating-support-btn:hover {
  transform: scale(1.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
}

.support-tooltip {
  position: absolute;
  right: 56px;
  background: var(--bg-surface-elevated);
  color: #cbd5e1;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-fast);
  border: 1px solid var(--border-subtle);
}

.floating-support-btn:hover .support-tooltip {
  opacity: 1;
}

.support-chat-window {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 20px);
  right: 20px;
  width: 340px;
  height: 440px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  z-index: 120;
  overflow: hidden;
  animation: fadeInUp 0.25s ease;
}

.chat-header {
  padding: 12px 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.online-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.chat-header-title h5 {
  font-size: 0.88rem;
  font-weight: 700;
}

.chat-header-title span {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}

.chat-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  line-height: 1.4;
}

.chat-msg.bot {
  align-self: flex-start;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--accent-purple);
  color: #fff;
}

.chat-time {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.chat-footer {
  padding: 10px 12px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 8px;
}

.chat-footer input {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.8rem;
  outline: none;
}

.btn-send-chat {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-send-chat i {
  width: 14px;
  height: 14px;
}

/* ================= MODAL & LIGHTBOX ================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-lightbox {
  width: 100%;
  max-width: 1100px;
  height: 85vh;
}

.modal-close-corner {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close-corner:hover {
  background: #fff;
  color: #000;
}

.lightbox-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  height: 100%;
}

@media (max-width: 860px) {
  .modal-lightbox {
    height: 92vh;
  }
  .lightbox-layout {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
}

/* Lightbox Left (Media) */
.lightbox-media-box {
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-aspect-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-video {
  max-width: 100%;
  max-height: 100%;
  outline: none;
}

.media-floating-actions {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(10, 13, 20, 0.75);
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.media-act-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.media-act-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.media-act-btn.liked {
  color: #ef4444;
}

.media-act-btn.liked i {
  fill: #ef4444;
}

/* Lightbox Right (Sidebar Info) */
.lightbox-info-sidebar {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  background: var(--bg-surface);
}

.modal-creator-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
}

.creator-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.creator-meta {
  flex: 1;
}

.creator-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.creator-meta span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.btn-secondary-xs {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  cursor: pointer;
}

/* REMIX Callout Box */
.remix-callout-card {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.remix-text h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #22d3ee;
  display: flex;
  align-items: center;
  gap: 6px;
}

.remix-text p {
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.btn-remix-glow {
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.4);
}

.btn-remix-glow:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
}

/* Modal Prompt Box */
.modal-prompt-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.prompt-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.box-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.btn-copy-prompt {
  background: none;
  border: none;
  color: var(--accent-cyan);
  font-size: 0.74rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.modal-prompt-text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #cbd5e1;
}

/* Modal Specs Grid */
.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.spec-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f1f5f9;
}

/* Comments Section */
.modal-comments-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.comments-header h5 {
  font-size: 0.84rem;
  font-weight: 700;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 150px;
  overflow-y: auto;
}

.comment-row {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
}

.comment-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  background: var(--bg-surface-elevated);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  flex: 1;
}

.comment-author {
  font-weight: 700;
  color: #38bdf8;
  display: block;
  font-size: 0.72rem;
}

.comment-text {
  color: #cbd5e1;
}

.comment-input-row {
  display: flex;
  gap: 8px;
}

.comment-input-row input {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.8rem;
  outline: none;
}

.btn-send-comment {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-brand);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ================= TOP UP MODAL ================= */
.modal-card {
  width: 100%;
  max-width: 620px;
  padding: 28px;
}

.modal-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.modal-title-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.modal-card-header p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.token-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .token-packages-grid {
    grid-template-columns: 1fr;
  }
}

.pkg-card {
  background: var(--bg-surface-elevated);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.pkg-card.selected {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

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

.pkg-title {
  font-size: 0.8rem;
  font-weight: 700;
}

.pkg-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.pkg-badge.hot {
  background: var(--gradient-hot);
  color: #fff;
}

.pkg-tokens {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbbf24;
}

.pkg-tokens span {
  font-size: 0.8rem;
  font-weight: 600;
}

.pkg-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.pkg-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
}

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

.summary-total {
  display: flex;
  flex-direction: column;
}

.summary-total span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.total-tag {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fbbf24;
}

/* ================= TOAST NOTIFICATION ================= */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--tc-black-card);
  border: 1px solid var(--tc-cyan);
  box-shadow: 0 0 20px var(--tc-cyan-glow);
  padding: 12px 20px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  z-index: 300;
  transform: translateY(-80px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========================================================
   3. TAB KOMUNITAS (TOPIK POPULER, TOP KREATOR, TOP AFFILIATOR)
   ======================================================== */
.community-page-container {
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 20px;
}

.comm-header {
  margin-bottom: 24px;
}

.comm-title-wrap {
  margin-bottom: 18px;
}

.comm-title {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comm-subtitle {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* Sub-Nav Pills (SeaArt Seamless) */
.comm-subnav-pills {
  display: flex;
  gap: 10px;
  border-bottom: none !important;
  padding-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.comm-subnav-pills::-webkit-scrollbar {
  display: none;
}

.comm-subnav-btn {
  background: var(--tc-black-card);
  border: none !important;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 0 !important;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.comm-subnav-btn:hover {
  color: var(--text-main);
  background: #181920;
}

.comm-subnav-btn.active {
  background: var(--tc-cyan);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--tc-cyan-glow);
}

.comm-subnav-btn i {
  width: 16px;
  height: 16px;
}

/* Topics Single Column Layout */
.topics-single-col {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

/* SeaArt Composer Card (Sharp Kotak Lancip & Seamless) */
.seaart-composer-card {
  background: var(--tc-black-card);
  border: none !important;
  border-radius: 0 !important;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: none !important;
  transition: background var(--transition-fast);
}

.seaart-composer-card:focus-within {
  background: #16171e;
}

.seaart-composer-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seaart-avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.seaart-title-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--tc-white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
}

.seaart-title-input::placeholder {
  color: var(--text-muted);
}

.seaart-char-count {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
  user-select: none;
}

.seaart-composer-body {
  margin-top: 10px;
}

.seaart-content-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--tc-white);
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.5;
  resize: vertical;
  min-height: 60px;
}

.seaart-content-textarea::placeholder {
  color: var(--text-muted);
}

/* Image Attachment Preview with Locked Aspect Ratios & Toolbar */
.composer-image-preview-wrap {
  position: relative;
  margin: 12px 0 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
  padding: 12px;
  border-radius: 0 !important;
}

.preview-img-box {
  background: #000;
  overflow: hidden;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 10px;
}

.preview-img-box.ratio-16-9 {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 16 / 9;
  max-height: 202px;
}

.preview-img-box.ratio-1-1 {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  max-height: 260px;
}

.preview-img-box.ratio-9-16 {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 9 / 16;
  max-height: 320px;
}

.preview-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-ratio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ratio-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ratio-label i {
  width: 14px;
  height: 14px;
  color: var(--tc-cyan);
}

.ratio-btn-group {
  display: flex;
  gap: 6px;
}

.btn-ratio-pill {
  background: #181920;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: inherit;
  padding: 4px 12px;
  border-radius: 0 !important;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-ratio-pill:hover,
.btn-ratio-pill.active {
  background: var(--tc-yellow);
  border-color: var(--tc-yellow);
  color: #000;
}

.btn-remove-preview-img {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-remove-preview-img:hover {
  background: #ef4444;
  color: #fff;
}

.btn-remove-preview-img i {
  width: 13px;
  height: 13px;
}

/* Hashtag Picker Strip (Sharp Kotak Lancip) */
.composer-tags-strip {
  background: #14151b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 !important;
  padding: 8px 12px;
  margin: 10px 0;
  animation: fadeIn 0.18s ease;
}

.tags-strip-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.strip-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.strip-label i {
  width: 13px;
  height: 13px;
  color: var(--tc-cyan);
}

.strip-tag-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-strip-tag {
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  color: var(--tc-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  padding: 3px 10px;
  border-radius: 0 !important;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-strip-tag:hover {
  background: var(--tc-cyan);
  color: #000;
}

/* SeaArt Composer Bottom Actions */
.seaart-composer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: none !important;
}

.composer-left-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.composer-tool-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 0 !important;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.composer-tool-btn:hover {
  color: var(--tc-cyan);
  background: rgba(0, 210, 255, 0.12);
}

.composer-tool-btn.photo-btn:hover {
  color: var(--tc-lime);
  background: rgba(46, 230, 77, 0.12);
}

.composer-tool-btn i {
  width: 20px;
  height: 20px;
}

.tool-hash-char {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

/* Post Button (Toucanus Brand Gradient when ready) */
.seaart-post-btn {
  background: #1e2028;
  border: none !important;
  color: #5e6977;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seaart-post-btn.ready,
.seaart-post-btn.active,
.seaart-post-btn:hover {
  background: linear-gradient(135deg, var(--tc-orange) 0%, var(--tc-fuchsia) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--tc-fuchsia-glow);
}

/* Active Tag Banner (Sharp Kotak Lancip) */
.active-tag-banner {
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--tc-cyan);
  border-radius: 0 !important;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  animation: fadeIn 0.2s ease;
}

.banner-tag-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #cbd5e1;
}

.banner-tag-info b {
  color: var(--tc-cyan);
}

.btn-clear-tag {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: inherit;
}

.btn-clear-tag:hover {
  color: #ef4444;
}

/* Community Posts Feed (Tanya Jawab Komunitas - Seamless SeaArt) */
.community-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-post-card {
  background: var(--tc-black-card);
  border: none !important;
  border-radius: 0 !important;
  padding: 20px;
  box-shadow: none !important;
  transition: background 0.2s ease;
}

.community-post-card:hover {
  background: #16171e;
}

.post-card-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.author-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.author-names h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tc-white);
}

.author-names span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.post-time-badge {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px;
  border-radius: 0 !important;
}

.post-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--tc-white);
  margin-bottom: 6px;
}

.post-card-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.post-tag-item {
  color: var(--tc-cyan);
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  margin-right: 4px;
  transition: var(--transition-fast);
  border-radius: 0 !important;
}

.post-tag-item:hover {
  color: var(--tc-yellow);
  text-decoration: underline;
}

/* Post Media Frame with Locked Aspect Ratios (1:1, 16:9, 9:16) - Pure Photo, No Video */
.post-media-frame {
  position: relative;
  background: #000000;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
  margin: 10px 0 14px 0;
  display: block;
}

/* Rasio 16:9 Landscape Widescreen (Ukuran Terkunci) */
.post-media-frame.ratio-16-9 {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  max-height: 270px;
}

/* Rasio 1:1 Square (Ukuran Terkunci) */
.post-media-frame.ratio-1-1 {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  max-height: 320px;
}

/* Rasio 9:16 Portrait Mobile (Ukuran Terkunci) */
.post-media-frame.ratio-9-16 {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 9 / 16;
  max-height: 390px;
}

.post-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

.media-ratio-badge {
  display: none !important;
}

.post-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: none !important;
  padding-top: 12px;
}

.post-action-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.post-action-btn:hover {
  color: var(--tc-white);
}

.post-action-btn.liked {
  color: var(--tc-fuchsia);
}

.post-action-btn.liked i {
  fill: var(--tc-fuchsia);
  color: var(--tc-fuchsia);
}

/* ========================================================
   POST COMMENTS & BALAS KOMEN (THREADED)
   ======================================================== */
.post-comments-container {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  animation: fadeIn 0.2s ease;
}

.new-comment-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.comment-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-input-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reply-target-notice {
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 0 !important;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--tc-cyan);
}

.reply-target-text {
  font-weight: 700;
}

.btn-cancel-reply {
  background: none;
  border: none;
  color: #f87171;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.btn-cancel-reply i {
  width: 12px;
  height: 12px;
}

.btn-cancel-reply:hover {
  color: #ef4444;
}

.comment-input-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-input-field {
  flex: 1;
  height: 36px;
  background: var(--tc-black-input);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 !important;
  padding: 0 12px;
  color: var(--tc-white);
  font-family: inherit;
  font-size: 0.84rem;
  outline: none;
  transition: var(--transition-fast);
}

.comment-input-field:focus {
  border-color: var(--tc-cyan);
  box-shadow: 0 0 10px var(--tc-cyan-glow);
}

.btn-send-comment {
  height: 36px;
  padding: 0 16px;
  background: var(--tc-cyan);
  color: #000;
  border: none;
  border-radius: 0 !important;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-send-comment:hover {
  background: var(--tc-yellow);
  box-shadow: 0 0 12px var(--tc-yellow-glow);
}

.btn-send-comment i {
  width: 15px;
  height: 15px;
}

.comments-thread-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comment-item {
  background: #111216;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 14px;
}

.comment-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.comment-avatar-mini {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.comment-author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tc-white);
}

.comment-author-handle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.comment-time {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.comment-text-body {
  font-size: 0.84rem;
  color: #e2e8f0;
  line-height: 1.45;
  margin-bottom: 8px;
}

.comment-subactions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comm-subaction-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.comm-subaction-btn:hover {
  color: var(--tc-white);
}

.comm-subaction-btn.liked {
  color: var(--tc-fuchsia);
}

.comm-subaction-btn.liked i {
  fill: var(--tc-fuchsia);
  color: var(--tc-fuchsia);
}

.comm-subaction-btn.reply-btn {
  color: var(--tc-yellow);
  font-weight: 700;
}

.comm-subaction-btn.reply-btn:hover {
  color: #fff;
  text-decoration: underline;
}

.comm-subaction-btn i {
  width: 13px;
  height: 13px;
}

.replies-count-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.replies-count-label i {
  width: 12px;
  height: 12px;
}

/* Comment Replies List (Threaded) */
.comment-replies-wrap {
  margin-top: 10px;
  margin-left: 18px;
  padding-left: 12px;
  border-left: 2px solid rgba(0, 210, 255, 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reply-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 10px;
  border-radius: 0 !important;
}

.reply-to-tag {
  color: var(--tc-cyan);
  font-weight: 700;
  margin-right: 4px;
}

.empty-thread-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 12px;
}

@media (max-width: 480px) {
  .token-label {
    display: none;
  }
}

/* Leaderboard container */

/* ================= TOP KREATOR PODIUM & LIST ================= */
.leaderboard-container {
  max-width: 900px;
  margin: 0 auto;
}

.leaderboard-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.lb-title-icon {
  width: 44px;
  height: 44px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-title-icon.gold {
  background: rgba(255, 230, 0, 0.18);
  color: var(--tc-yellow);
}

.lb-title-icon.cyan {
  background: rgba(0, 210, 255, 0.18);
  color: var(--tc-cyan);
}

.leaderboard-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--tc-white);
}

.leaderboard-header p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Podium */
.creators-podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 28px;
}

@media (max-width: 650px) {
  .creators-podium {
    grid-template-columns: 1fr;
  }
}

.podium-card {
  background: var(--tc-black-card);
  border: none !important;
  border-radius: 0 !important;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podium-card.rank-1 {
  border: 1.5px solid var(--tc-yellow) !important;
  background: linear-gradient(180deg, rgba(255, 230, 0, 0.12) 0%, var(--tc-black-card) 100%);
  transform: translateY(-10px);
  box-shadow: 0 0 30px var(--tc-yellow-glow);
}

.podium-card.rank-2 {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.podium-card.rank-3 {
  border: 1px solid var(--tc-dark-orange) !important;
}

.podium-crown {
  width: 32px;
  height: 32px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -14px;
  font-weight: 800;
  font-size: 0.9rem;
}

.podium-card.rank-1 .podium-crown { background: var(--tc-yellow); color: #000; box-shadow: 0 0 12px var(--tc-yellow-glow); }
.podium-card.rank-2 .podium-crown { background: var(--tc-silver); color: #000; }
.podium-card.rank-3 .podium-crown { background: var(--tc-dark-orange); color: #fff; }

.podium-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.podium-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tc-white);
}

.podium-handle {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.podium-stats {
  display: flex;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* Ranked List (SeaArt Seamless) */
.creators-ranked-list,
.affiliates-ranked-list {
  background: var(--tc-black-card);
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.rank-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-fast);
}

.rank-row-item:last-child {
  border-bottom: none;
}

.rank-row-item:hover {
  background: #16171e;
}

.rank-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rank-badge-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--tc-yellow);
  width: 24px;
  text-align: center;
}

.rank-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.rank-names h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tc-white);
}

.rank-names span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.rank-stats-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rank-stat-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f1f5f9;
}

.rank-stat-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}

/* ================= TOP AFFILIATOR ================= */
.affiliate-banner-card {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 42, 133, 0.15) 100%);
  border: 1.5px solid rgba(255, 122, 0, 0.35);
  border-radius: 0 !important;
  padding: 28px;
  box-shadow: 0 0 30px var(--tc-orange-glow);
}

.badge-affiliate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 122, 0, 0.2);
  color: var(--tc-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 0 !important;
  margin-bottom: 12px;
}

.banner-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.banner-content p {
  font-size: 0.85rem;
  color: #cbd5e1;
  max-width: 650px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.referral-box-inline {
  display: flex;
  gap: 10px;
  max-width: 480px;
}

.referral-box-inline input {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  color: #38bdf8;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  outline: none;
}

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
