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

:root {
  --v-bg: #080b10;
  --v-bg-2: #0d1117;
  --v-card: #0f1520;
  --v-card-2: #141c28;
  --v-border: rgba(255,255,255,0.07);
  --v-border-hover: rgba(34,197,94,0.25);
  --v-green: #22c55e;
  --v-green-dim: #16a34a;
  --v-green-bright: #4ade80;
  --v-green-glow: rgba(34,197,94,0.18);
  --v-white: #f8fafc;
  --v-muted: #64748b;
  --v-muted-2: #94a3b8;
  --navbar-h: 60px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--v-bg);
  color: var(--v-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes orbFloat {
  0%, 100% { transform: translateX(-50%) translateY(0px) scale(1); }
  50% { transform: translateX(-50%) translateY(-24px) scale(1.04); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-18px) scale(1.06); }
}

@keyframes gridScroll {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(34,197,94,0.15); }
  50% { border-color: rgba(34,197,94,0.4); }
}

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

@keyframes fpsBarGrow {
  from { height: 0; }
  to { height: var(--target-h); }
}

@keyframes hitPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
  animation: gridScroll 20s linear infinite;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: rgba(8,11,16,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--v-border);
  transition: background 0.4s, border-color 0.4s;
}

.navbar.scrolled {
  background: rgba(8,11,16,0.88);
  border-color: rgba(255,255,255,0.1);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.navbar-logo:hover { opacity: 0.8; }

.navbar-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.navbar-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--v-white);
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-link {
  padding: 7px 14px;
  color: var(--v-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}
.navbar-link:hover { color: var(--v-white); background: rgba(255,255,255,0.05); }
.navbar-link.active { color: var(--v-white); }

.navbar-cta {
  padding: 7px 18px;
  background: var(--v-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 16px rgba(34,197,94,0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
}
.navbar-cta:hover {
  background: var(--v-green-bright);
  box-shadow: 0 0 24px rgba(34,197,94,0.45);
  transform: translateY(-1px);
}
.navbar-cta:active { transform: scale(0.97); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--v-green);
  color: #fff;
  box-shadow: 0 0 20px rgba(34,197,94,0.3);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  background: var(--v-green-bright);
  box-shadow: 0 0 32px rgba(34,197,94,0.5);
  transform: translateY(-2px);
}
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--v-muted-2);
  border: 1px solid var(--v-border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
  color: var(--v-white);
  transform: translateY(-1px);
}

.btn-lg { padding: 15px 36px; font-size: 15.5px; border-radius: 12px; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 24px 100px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.22) 0%, transparent 65%);
  top: -80px; left: 50%;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 65%);
  bottom: 40px; right: 8%;
  animation: orbFloat2 13s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 65%);
  top: 30%; left: 5%;
  animation: orbFloat2 16s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 999px;
  animation: fadeIn 0.6s 0.1s both;
}
.hero-badge-tag {
  background: var(--v-green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 999px;
}
.hero-badge-text {
  font-size: 12.5px;
  color: var(--v-muted-2);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3.8rem, 11vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--v-white);
  animation: fadeUp 0.8s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--v-green) 0%, var(--v-green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--v-muted);
  max-width: 440px;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.25s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.35s cubic-bezier(0.16,1,0.3,1) both;
}

.home-features {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.home-features-header {
  text-align: center;
  margin-bottom: 56px;
}

.home-features-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--v-white);
  margin-bottom: 12px;
}

.home-features-sub {
  font-size: 1rem;
  color: var(--v-muted);
  max-width: 400px;
  margin: 0 auto;
}

.home-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.bento-0 { grid-column: span 5; }
.bento-1 { grid-column: span 4; }
.bento-2 { grid-column: span 3; }
.bento-3 { grid-column: span 3; }
.bento-4 { grid-column: span 4; }
.bento-5 { grid-column: span 5; }

.home-bento-card {
  position: relative;
  background: var(--v-card);
  border: 1px solid var(--v-border);
  border-radius: 14px;
  padding: 28px 24px 24px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}
.home-bento-card:hover {
  border-color: rgba(34,197,94,0.2);
  transform: translateY(-3px);
}

.home-bento-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.home-bento-card:hover .home-bento-glow { opacity: 1; }

.home-bento-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-green);
}

.home-bento-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--v-white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: auto;
}

.home-bento-desc {
  font-size: 0.825rem;
  color: var(--v-muted);
  line-height: 1.6;
}

.cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--v-white);
}

.cta-sub {
  font-size: 1rem;
  color: var(--v-muted);
  margin-bottom: 8px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-green);
  margin-bottom: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

.inner-hero {
  position: relative;
  text-align: center;
  padding: 96px 24px 72px;
  overflow: hidden;
}

.inner-hero-orb {
  position: absolute;
  width: 600px; height: 280px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.14) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  filter: blur(70px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

.inner-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--v-white);
  margin-bottom: 16px;
  line-height: 1.0;
}

.inner-subtitle {
  font-size: 1.05rem;
  color: var(--v-muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-wrap {
  padding-top: var(--navbar-h);
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.fp-tabbar {
  position: sticky;
  top: var(--navbar-h);
  z-index: 100;
  display: flex;
  gap: 4px;
  padding: 12px 40px;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  max-width: 1160px;
  margin: 0 auto;
}

.fp-tabbar.stuck {
  background: rgba(8,11,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--v-border);
  max-width: 100%;
  padding: 12px 40px;
}

.fp-tab {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: none;
  color: var(--v-muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  font-family: inherit;
}
.fp-tab:hover {
  color: var(--v-white);
  background: rgba(255,255,255,0.05);
}
.fp-tab.active {
  color: var(--v-white);
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.2);
}

.fp-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 40px 120px;
  animation: tabSlideIn 0.45s cubic-bezier(0.16,1,0.3,1) both;
}

.fp-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.fp-showcase-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fp-showcase-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--v-white);
  line-height: 1.0;
}

.fp-showcase-sub {
  font-size: 1rem;
  color: var(--v-muted);
  line-height: 1.75;
  max-width: 400px;
}

.fp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.fp-pill {
  padding: 5px 14px;
  background: var(--v-card);
  border: 1px solid var(--v-border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--v-muted-2);
  letter-spacing: -0.01em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.fp-pill:hover {
  border-color: rgba(34,197,94,0.3);
  color: var(--v-green-bright);
  background: rgba(34,197,94,0.06);
}

.fp-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.12);
  background: var(--v-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.fp-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(34,197,94,0.06) 0%, transparent 70%);
}
.fp-img-placeholder-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.fp-img-icon { color: var(--v-muted); opacity: 0.5; }
.fp-img-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--v-muted);
}
.fp-img-slot {
  font-size: 11px;
  color: var(--v-muted);
  opacity: 0.6;
  font-family: 'Courier New', monospace;
}

.fp-perf-panel {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  border: 1px solid var(--v-border);
  background: linear-gradient(135deg, #080c14 0%, #0a1018 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.fp-fps-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.fp-fps-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--v-green-bright);
  letter-spacing: -0.05em;
  line-height: 1;
}
.fp-fps-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--v-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fp-fps-graph {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  flex: 1;
}
.fp-fps-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(34,197,94,0.7), rgba(34,197,94,0.2));
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  animation: fpsBarGrow 1s cubic-bezier(0.16,1,0.3,1) both;
}

.fp-perf-stats {
  display: flex;
  gap: 20px;
}
.fp-perf-stat { display: flex; flex-direction: column; gap: 2px; }
.fp-hud-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-muted);
  display: block;
  margin-bottom: 2px;
}
.fp-perf-val { font-size: 0.9rem; font-weight: 700; color: var(--v-muted-2); }
.fp-perf-val-good { color: var(--v-green-bright); }

.beta-page {
  position: relative;
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}

.beta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.beta-orb-1 {
  width: 800px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.16) 0%, transparent 65%);
  top: -60px; left: 50%;
  animation: orbFloat 11s ease-in-out infinite;
}
.beta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 65%);
  bottom: 0; right: 5%;
  animation: orbFloat2 14s ease-in-out infinite;
}

.beta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 520px;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.beta-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--v-white);
  line-height: 0.95;
}

.beta-subtitle {
  font-size: 1rem;
  color: var(--v-muted);
  line-height: 1.75;
  max-width: 400px;
}

.beta-card {
  background: var(--v-card);
  border: 1px solid var(--v-border);
  border-radius: 14px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  animation: borderGlow 4s ease-in-out infinite;
}

.beta-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--v-white);
  letter-spacing: -0.02em;
}

.beta-card-desc {
  font-size: 0.875rem;
  color: var(--v-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.not-found-page {
  position: relative;
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.not-found-orb {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 65%);
  top: 0; left: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.not-found-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.not-found-num {
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--v-green) 0%, var(--v-green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.not-found-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--v-white);
  letter-spacing: -0.02em;
}

.not-found-sub {
  font-size: 1rem;
  color: var(--v-muted);
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .bento-0, .bento-1, .bento-2,
  .bento-3, .bento-4, .bento-5 { grid-column: span 6; }
  .fp-showcase { grid-template-columns: 1fr; gap: 40px; }
  .fp-content { padding: 48px 24px 80px; }
  .fp-tabbar, .fp-tabbar.stuck { padding: 10px 24px; }
}

@media (max-width: 640px) {
  .navbar { padding: 0 18px; }
  .navbar-links { display: none; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .bento-0, .bento-1, .bento-2,
  .bento-3, .bento-4, .bento-5 { grid-column: span 12; }
  .fp-tabbar { gap: 2px; padding: 8px 16px; }
  .fp-tab { padding: 6px 12px; font-size: 12.5px; }
}
