/* =========================================================================
   DramaHub API Hub V4.0 — Ultra-Clean & Neo-Cinematic Design System
   Refined, Uncluttered, Breathable, 100% Fluid & Mobile-Responsive
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Prompt:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

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

:root {
  /* Colors */
  --bg-ink: #070709;
  --bg-card: #10121a;
  --bg-card-hover: #141722;
  --bg-input: #090a0f;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(244, 63, 94, 0.35);

  /* Accents */
  --rose: #f43f5e;
  --rose-light: rgba(244, 63, 94, 0.12);
  --rose-gradient: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #a855f7 100%);
  --cyan: #63d7ff;
  --emerald: #10b981;
  --emerald-light: rgba(16, 185, 129, 0.15);

  /* Text Colors */
  --text-main: #f8fafc;
  --text-sub: #94a3b8;
  --text-muted: #64748b;

  /* Typography */
  --font-main: 'Manrope', 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', SFMono-Regular, Consolas, monospace;

  /* Dimensions */
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px rgba(244, 63, 94, 0.25);
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-main);
  background-color: var(--bg-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.modern-hub-body {
  min-height: 100vh;
  background-color: var(--bg-ink);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(244, 63, 94, 0.08), transparent 30rem),
    radial-gradient(circle at 85% 75%, rgba(168, 85, 247, 0.08), transparent 32rem),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px, 32px 32px;
  background-attachment: fixed;
  padding-top: 68px;
  overflow-x: hidden;
}

::selection {
  background: var(--rose);
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================================================================
   1. NAVBAR (Clean Frosted Glass)
   ========================================================================= */
.hub-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(7, 7, 9, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.hub-nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hub-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hub-brand-logo {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--rose-gradient);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
  transition: transform 0.2s ease;
}

.hub-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hub-nav-brand:hover .hub-brand-logo {
  transform: scale(1.05);
}

.hub-brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.hub-brand-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hub-brand-title .accent {
  color: var(--rose);
}

.hub-brand-title .version-tag {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  background: var(--rose-light);
  color: #fda4af;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(244, 63, 94, 0.25);
}

.hub-brand-sub {
  font-size: 10.5px;
  color: var(--text-muted);
}

.hub-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hub-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.hub-nav-link:hover {
  background: var(--rose-light);
  color: #ffffff;
  border-color: rgba(244, 63, 94, 0.3);
}

.hub-nav-link.btn-admin {
  background: var(--rose-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.3);
}

.hub-nav-link.btn-admin:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(244, 63, 94, 0.45);
}

.hub-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-sub);
  padding: 6px 12px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.hub-mobile-toggle:hover {
  color: #ffffff;
  border-color: var(--rose);
}

/* Mobile Slide-Down Drawer */
.hub-mobile-drawer {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(7, 7, 9, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 16px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  animation: fadeUp 0.2s ease;
}

.hub-mobile-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.hub-mobile-item:hover, .hub-mobile-item:active {
  background: var(--rose-light);
  color: #ffffff;
  border-color: rgba(244, 63, 94, 0.3);
}

.hub-mobile-item.admin {
  background: var(--rose-gradient);
  color: #ffffff;
  border: none;
}

/* =========================================================================
   2. MAIN LAYOUT & HERO SECTION
   ========================================================================= */
.hub-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.hub-hero {
  text-align: center;
  margin-bottom: 36px;
}

.hub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--rose-light);
  border: 1px solid rgba(244, 63, 94, 0.25);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  color: #fda4af;
  margin-bottom: 18px;
}

.dot-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 8px rgba(244, 63, 94, 0.8);
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

.hub-hero-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}

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

.hub-hero-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 28px;
}

/* Quick Metrics Pills */
.hub-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.hub-stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: var(--transition);
}

.hub-stat-item:hover {
  border-color: rgba(244, 63, 94, 0.3);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.stat-val {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =========================================================================
   3. NEO-CARDS & KEY TESTER WIDGET
   ========================================================================= */
.hub-section {
  margin-bottom: 36px;
}

.neo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.test-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.test-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-chip {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--rose-light);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: var(--rose);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.card-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.card-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.badge-status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-family: var(--font-mono);
  font-weight: 700;
  background: var(--emerald-light);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
}

.test-input-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.input-wrap {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.clean-input {
  width: 100%;
  height: 44px;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0 14px 0 40px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
  outline: none;
  transition: var(--transition);
}

.clean-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}

.clean-input::placeholder {
  color: var(--text-muted);
  font-family: var(--font-main);
}

.btn-verify {
  height: 44px;
  padding: 0 22px;
  background: var(--rose-gradient);
  border: none;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
  flex-shrink: 0;
  will-change: transform, box-shadow;
}

.btn-verify:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(244, 63, 94, 0.5);
}

.btn-verify:active {
  transform: translateY(0) scale(0.98);
}

/* Metrics Result Box */
.metrics-result-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.2s ease;
}

.result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.result-key-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.key-code {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--cyan);
  background: rgba(99, 215, 255, 0.1);
  border: 1px solid rgba(99, 215, 255, 0.25);
  padding: 2px 8px;
  border-radius: 6px;
}

.result-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-active {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--emerald-light);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.pill-latency {
  font-size: 11.5px;
  color: var(--text-muted);
}

.pill-latency strong {
  color: var(--cyan);
}

.progress-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-track {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--rose-gradient);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.progress-labels b {
  color: #ffffff;
}

/* =========================================================================
   4. CLEAN PLATFORM TOOLBAR (Search + Scrollable Chips)
   ========================================================================= */
.clean-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.clean-search-wrap {
  position: relative;
  flex: 0 1 400px;
  min-width: 260px;
  width: 100%;
}

.search-svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.clean-search-input {
  width: 100%;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 0 14px 0 40px;
  font-size: 13px;
  color: #ffffff;
  outline: none;
  transition: var(--transition);
}

.clean-search-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}

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

.clean-filter-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 0;
  max-width: 100%;
}

.clean-filter-chips::-webkit-scrollbar {
  display: none;
}

.chip {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.chip:hover {
  color: #ffffff;
  border-color: var(--border-hover);
}

.chip.active {
  background: var(--rose-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(244, 63, 94, 0.35);
}

/* =========================================================================
   5. 3-COLUMN PLATFORM CARDS GRID (Clean Neo-Cards)
   ========================================================================= */
.clean-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.platform-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.platform-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(244, 63, 94, 0.12);
}

.card-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-logo {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.platform-meta {
  min-width: 0;
  flex: 1;
}

.platform-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-name {
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-tag {
  font-size: 9.5px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 1px 6px;
  border-radius: 4px;
}

.platform-tagline {
  font-size: 11px;
  font-weight: 600;
  color: #fda4af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.platform-desc {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.platform-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-top: 4px;
}

.feat-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-sub);
}

.feat-badge.online {
  background: var(--emerald-light);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dot-green {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
}

.card-action {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.btn-doc-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.platform-card:hover .btn-doc-link {
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
}

.btn-doc-link svg {
  transition: transform 0.2s ease;
}

.platform-card:hover .btn-doc-link svg {
  transform: translateX(3px);
}

/* =========================================================================
   6. FOOTER (Clean & Minimal)
   ========================================================================= */
.hub-footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(7, 7, 9, 0.95);
  backdrop-filter: blur(16px);
  padding: 30px 20px;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-logo {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--rose);
}

/* =========================================================================
   7. RESPONSIVE BREAKPOINTS (Fluidity from 320px to 4K)
   ========================================================================= */
@media (max-width: 1100px) {
  .clean-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hub-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hub-nav-links {
    display: none;
  }
  .hub-mobile-toggle {
    display: flex;
  }
  .hub-main-container {
    padding: 20px 14px 48px;
  }
  .hub-hero {
    margin-bottom: 24px;
  }
  .hub-hero-title {
    font-size: 26px;
  }
  .hub-hero-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .hub-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hub-stat-item {
    padding: 10px 12px;
    gap: 8px;
  }
  .stat-val {
    font-size: 13px;
  }
  .clean-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .clean-search-wrap {
    flex: 1;
    min-width: 100%;
  }
  .clean-platform-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .test-card {
    padding: 18px 16px;
  }
  .test-input-row {
    flex-direction: column;
  }
  .btn-verify {
    width: 100%;
    justify-content: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hub-hero-badge {
    font-size: 10.5px;
    padding: 4px 10px;
  }
  .hub-stats-row {
    grid-template-columns: 1fr;
  }
  .hub-brand-sub {
    display: none;
  }
}

@media (min-width: 1600px) {
  .hub-nav-container, .hub-main-container, .footer-container {
    max-width: 1400px;
  }
  .clean-platform-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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