@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Roboto+Condensed:wght@400;500;700&family=Bebas+Neue&display=swap');

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

:root {
  --bg: #191a1e;          /* oklch(0.10) ≈ #191a1e */
  --bg2: #202127;         /* oklch(0.13) */
  --bg3: #26272e;         /* oklch(0.18) */
  --red: #C0392B;
  --red-hover: #E74C3C;
  --green: #2ECC71;
  --border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.05);
  --text: rgba(255,255,255,0.92);
  --text-muted: rgba(255,255,255,0.60);
  --text-dim: rgba(255,255,255,0.40);
  --text-faint: rgba(255,255,255,0.20);
  --text-ghost: rgba(255,255,255,0.10);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto Condensed', sans-serif;
  overflow-x: hidden;
}

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

.display-font {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ── Buttons ── */
.rust-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: #C0392B;
  border: 1px solid rgba(192,57,43,0.6);
  box-shadow: 0 0 0 1px rgba(192,57,43,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.rust-btn-primary:hover {
  background: #E74C3C;
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  transform: translateY(-1px);
}

.rust-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.rust-btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

/* ── Online dot ── */
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2ECC71;
  border-radius: 50%;
  box-shadow: 0 0 6px #2ECC71;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.offline-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #C0392B;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ── Server card ── */
.server-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid #C0392B;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.server-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(192,57,43,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* ── Stat badge ── */
.stat-badge {
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  color: #E74C3C;
  padding: 4px 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
}

/* ── Info row ── */
.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.info-row .icon {
  width: 16px;
  height: 16px;
  color: #C0392B;
  flex-shrink: 0;
}

.info-row .lbl {
  color: var(--text-dim);
  font-size: 0.875rem;
  width: 96px;
}

.info-row .val {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ── Section divider ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,57,43,0.5), transparent);
  margin-top: 16px;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up { animation: fadeInUp 0.7s ease forwards; }
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-8px) translateX(-50%); }
}

/* ── Progress bar ── */
.progress-bar {
  width: 128px;
  height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}

.progress-bar-fill {
  height: 100%;
  background: #C0392B;
  border-radius: 999px;
  transition: width 0.5s ease;
}

/* ── NAVBAR ── */
nav.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(25,26,30,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

nav.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

nav.navbar .logo img {
  height: 112px;
  width: auto;
  object-fit: contain;
}

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

@media (min-width: 768px) {
  nav.navbar .nav-links { display: flex; }
}

nav.navbar .nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}

nav.navbar .nav-links a:hover { color: #fff; }

nav.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-badge-nav {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
  background: rgba(255,255,255,0.05);
}

@media (min-width: 768px) {
  .player-badge-nav { display: flex; }
}

.player-badge-nav .count {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}

/* ── HERO ── */
section.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.hero-bg .overlay-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60), rgba(0,0,0,0.20) 50%, var(--bg));
}

.hero-bg .overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(25,26,30,0.80), transparent 50%, rgba(25,26,30,0.80));
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

@media (min-width: 1024px) {
  .hero-flex {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text { text-align: left; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}

.hero-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.80);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(72px, 12vw, 144px);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(192,57,43,0.4);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 40px;
  max-width: 576px;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.ip-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
}

.ip-bar .wifi-icon {
  width: 16px;
  height: 16px;
  color: #C0392B;
}

.ip-bar code {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.70);
  font-family: monospace;
}

/* ── Hero right card ── */
.hero-card-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
}

.hero-server-card {
  border-radius: 2px;
  padding: 24px;
  text-align: center;
}

.hero-server-card .card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.30);
  margin-bottom: 16px;
  font-weight: 700;
}

.player-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.player-counter .status-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-counter .status-text-online {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2ECC71;
}

.player-counter .status-text-offline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C0392B;
}

.player-counter .count-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.player-counter .count-num {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 2.5rem;
  color: #fff;
}

.player-counter .count-max {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.30);
}

.player-counter .count-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.40);
}

.player-counter .rank-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.20);
  margin-top: 4px;
}

.map-thumb-wrap {
  margin-top: 20px;
}

.map-thumb-inner {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.map-thumb-inner img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.80;
  display: block;
}

.map-thumb-inner .map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.60), transparent);
}

.map-thumb-inner .map-link {
  position: absolute;
  bottom: 8px; right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}

.map-thumb-inner .map-link:hover { color: #fff; }

.map-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.20);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.30);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator svg {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
}

/* ── WIPE SECTION ── */
section.wipe-section {
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.wipe-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (min-width: 768px) {
  .wipe-inner { flex-direction: row; }
}

.wipe-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C0392B;
  font-weight: 700;
  margin-bottom: 4px;
}

.wipe-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
}

.wipe-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.40);
  margin-top: 4px;
}

.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cd-item {
  text-align: center;
}

.cd-box {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  color: #fff;
  letter-spacing: 0.08em;
}

.cd-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #C0392B;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.wipe-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.40);
}

.wipe-badge svg {
  width: 20px;
  height: 20px;
  color: #C0392B;
}

/* ── SERVERS SECTION ── */
section.servers-section {
  padding: 96px 0;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C0392B;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
}

.servers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .servers-grid { grid-template-columns: 1fr 1fr; }
}

.server-item {
  border-radius: 2px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.server-item .bg-gif {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  z-index: 0;
}

.server-item .bg-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server-item .content {
  position: relative;
  z-index: 10;
}

.server-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.server-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.server-status-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.server-status-text.online { color: #2ECC71; }
.server-status-text.offline { color: #C0392B; }
.server-status-text.soon { color: #F1C40F; }

.server-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
}

.server-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.40);
  margin-top: 4px;
}

.players-highlight {
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.players-highlight .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.players-highlight .left svg {
  width: 16px;
  height: 16px;
  color: #C0392B;
}

.players-highlight .left span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
}

.players-highlight .right {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.players-highlight .right .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.08em;
}

.players-highlight .right .max {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.30);
}

.stats-list {
  margin-bottom: 24px;
}

/* ── COMING SOON overlay ── */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.coming-soon-box {
  background: rgba(25,26,30,0.90);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 12px 24px;
  border-radius: 2px;
  text-align: center;
}

.coming-soon-box .cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.1em;
}

.coming-soon-box .cs-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.blur-content { filter: blur(2px); }

/* ── FEATURES SECTION ── */
section.features-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(192,57,43,0.40); }

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(192,57,43,0.30);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: #C0392B;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Rajdhani', sans-serif;
}

.feature-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.6;
}

/* ── COMMUNITY SECTION ── */
section.community-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.10;
}

.community-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.community-content {
  position: relative;
  z-index: 10;
  max-width: 672px;
  margin: 0 auto;
  text-align: center;
}

.community-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.75rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.community-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 32px;
  line-height: 1.7;
}

.community-vip {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.20);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 24px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-skull {
  width: 24px;
  height: 24px;
  background: #C0392B;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-skull svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.1em;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.20);
  text-align: center;
}

.footer-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.30);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.footer-link:hover { color: rgba(255,255,255,0.60); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #1a1a1a;
  border: 1px solid rgba(34,197,94,0.4);
  color: #2ECC71;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
}

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