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

:root {
  --fl-bg: #0c1118;
  --fl-surface: #151c27;
  --fl-surface-2: #1a2332;
  --fl-text: #eef3fb;
  --fl-muted: #8b9bb5;
  --fl-accent: #f5b942;
  --fl-accent-2: #3ecf8e;
  --fl-danger: #f87171;
  --fl-border: rgba(255, 255, 255, 0.08);
  --fl-font: 'Manrope', system-ui, sans-serif;
  --fl-radius: 22px;
  --fl-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

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

html.land-fuel body {
  font-family: var(--fl-font);
  background: var(--fl-bg);
  color: var(--fl-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

html.land-fuel .fl-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

html.land-fuel .fl-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(245, 185, 66, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 40%, rgba(62, 207, 142, 0.08), transparent 50%),
    var(--fl-bg);
}

html.land-fuel .fl-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

html.land-fuel .fl-glow--1 {
  width: 280px;
  height: 280px;
  top: 12%;
  right: -40px;
  background: rgba(245, 185, 66, 0.18);
}

html.land-fuel .fl-glow--2 {
  width: 220px;
  height: 220px;
  bottom: 8%;
  left: -30px;
  background: rgba(62, 207, 142, 0.12);
}

html.land-fuel .fl-header,
html.land-fuel .fl-shell { position: relative; z-index: 1; }

html.land-fuel .fl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

html.land-fuel .fl-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fl-text);
  font-weight: 800;
  font-size: 1.15rem;
}

html.land-fuel .fl-logo-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5b942, #e09520);
  color: #1a1200;
  display: grid;
  place-items: center;
}

html.land-fuel .fl-header-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

html.land-fuel .fl-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--fl-surface-2);
  border: 1px solid var(--fl-border);
  color: var(--fl-muted);
}

html.land-fuel .fl-tag--live {
  color: var(--fl-accent-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

html.land-fuel .fl-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fl-accent-2);
  animation: fl-pulse 1.8s infinite;
}

@keyframes fl-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

html.land-fuel .fl-shell {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 20px 32px;
  width: 100%;
}

@media (max-width: 900px) {
  html.land-fuel .fl-shell { grid-template-columns: 1fr; }
  html.land-fuel .fl-promo { order: 2; }
}

html.land-fuel .fl-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fl-accent);
  margin-bottom: 10px;
}

html.land-fuel .fl-headline {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 12px;
}

html.land-fuel .fl-headline span { color: var(--fl-accent-2); }

html.land-fuel .fl-sub {
  color: var(--fl-muted);
  line-height: 1.55;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

html.land-fuel .fl-facts { list-style: none; margin-bottom: 20px; }

html.land-fuel .fl-facts li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--fl-muted);
  line-height: 1.45;
}

html.land-fuel .fl-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fl-accent);
}

html.land-fuel .fl-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

html.land-fuel .fl-metric strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}

html.land-fuel .fl-metric span { font-size: 0.78rem; color: var(--fl-muted); }

html.land-fuel .fl-metric-div {
  width: 1px;
  height: 36px;
  background: var(--fl-border);
}

html.land-fuel .fl-map-preview {
  position: relative;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--fl-border);
  background: #0f1620;
}

html.land-fuel .fl-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

html.land-fuel .fl-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
}

html.land-fuel .fl-pin--ok { background: var(--fl-accent-2); }
html.land-fuel .fl-pin--lim { background: var(--fl-accent); }
html.land-fuel .fl-pin--no { background: var(--fl-danger); }

html.land-fuel .fl-card {
  background: var(--fl-surface);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  box-shadow: var(--fl-shadow);
  padding: 22px;
}

html.land-fuel .fl-progress { margin-bottom: 20px; }

html.land-fuel .fl-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

html.land-fuel .fl-progress-fill {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--fl-accent), var(--fl-accent-2));
  transition: width 0.35s ease;
}

html.land-fuel .fl-steps { display: flex; gap: 8px; flex-wrap: wrap; }

html.land-fuel .fl-step {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fl-muted);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

html.land-fuel .fl-step.is-active { color: #1a1200; background: var(--fl-accent); }
html.land-fuel .fl-step.is-done { color: var(--fl-accent-2); background: rgba(62,207,142,0.12); }

html.land-fuel .fl-pane { display: none; }
html.land-fuel .fl-pane.is-visible { display: block; }

html.land-fuel .fl-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }

html.land-fuel .fl-hint {
  color: var(--fl-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

html.land-fuel .fl-lbl { display: block; margin-bottom: 16px; }

html.land-fuel .fl-lbl-txt {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fl-muted);
  margin-bottom: 8px;
}

html.land-fuel .fl-fuel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 480px) {
  html.land-fuel .fl-fuel-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

html.land-fuel .fl-fuel-btn {
  border: 1px solid var(--fl-border);
  background: var(--fl-surface-2);
  color: var(--fl-text);
  border-radius: 14px;
  padding: 12px 8px;
  cursor: pointer;
}

html.land-fuel .fl-fuel-btn span { display: block; font-weight: 800; font-size: 1rem; }
html.land-fuel .fl-fuel-btn small { color: var(--fl-muted); font-size: 0.72rem; }
html.land-fuel .fl-fuel-btn.is-on { border-color: var(--fl-accent); background: rgba(245,185,66,0.12); }

html.land-fuel .fl-inp {
  width: 100%;
  border: 1px solid var(--fl-border);
  background: var(--fl-surface-2);
  color: var(--fl-text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

html.land-fuel .fl-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--fl-muted);
  margin-bottom: 18px;
  cursor: pointer;
  user-select: none;
}

html.land-fuel .fl-check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.land-fuel .fl-check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 7px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: var(--fl-surface-2);
  position: relative;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

html.land-fuel .fl-check-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid transparent;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0.4);
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

html.land-fuel .fl-check-input:checked + .fl-check-box {
  border-color: var(--fl-accent-2);
  background: rgba(62, 207, 142, 0.18);
  box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.12);
}

html.land-fuel .fl-check-input:checked + .fl-check-box::after {
  border-color: var(--fl-accent-2);
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

html.land-fuel .fl-check-input:focus-visible + .fl-check-box {
  outline: 2px solid var(--fl-accent);
  outline-offset: 2px;
}

html.land-fuel .fl-check-txt {
  line-height: 1.45;
  padding-top: 2px;
}

html.land-fuel .fl-check:hover .fl-check-box {
  border-color: rgba(245, 185, 66, 0.45);
}

html.land-fuel .fl-btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 15px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  color: #1a1200;
  background: linear-gradient(135deg, #f5c84a, #e8a820);
}

html.land-fuel .fl-btn:disabled { opacity: 0.45; cursor: not-allowed; }

html.land-fuel .fl-micro {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--fl-muted);
  text-align: center;
}

html.land-fuel .fl-loader {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 28px 0;
}

html.land-fuel .fl-loader.hidden { display: none; }

html.land-fuel .fl-loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fl-accent);
  animation: fl-bounce 1.2s infinite ease-in-out;
}

html.land-fuel .fl-loader span:nth-child(2) { animation-delay: 0.15s; }
html.land-fuel .fl-loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes fl-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

html.land-fuel .fl-station-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

html.land-fuel .fl-station {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--fl-border);
  background: var(--fl-surface-2);
}

html.land-fuel .fl-station strong { display: block; font-size: 0.92rem; }
html.land-fuel .fl-station span { display: block; font-size: 0.78rem; color: var(--fl-muted); margin: 2px 0 4px; }
html.land-fuel .fl-station em { font-style: normal; font-size: 0.8rem; font-weight: 600; }
html.land-fuel .fl-station--ok em { color: var(--fl-accent-2); }
html.land-fuel .fl-station--no em { color: var(--fl-danger); }

html.land-fuel .fl-result {
  text-align: center;
  padding: 12px 8px 20px;
}

html.land-fuel .fl-result-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fl-accent-2);
  margin-bottom: 12px;
}

html.land-fuel .fl-result-count {
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}

html.land-fuel .fl-result-sub {
  font-size: 0.9rem;
  color: var(--fl-muted);
  margin-bottom: 14px;
}

html.land-fuel .fl-result-note {
  font-size: 0.8rem;
  color: var(--fl-muted);
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fl-border);
  margin-bottom: 16px;
}

html.land-fuel .fl-btn--register {
  margin-top: 4px;
}

html.land-fuel .fl-found-badge {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fl-accent-2);
  margin: -6px 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(62, 207, 142, 0.1);
  border: 1px solid rgba(62, 207, 142, 0.25);
  text-align: center;
}

html.land-fuel .hidden { display: none !important; }

html.land-fuel .fl-secure-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fl-muted);
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(62, 207, 142, 0.08);
}

html.land-fuel .fl-phone-wrap { display: flex; gap: 8px; margin-bottom: 12px; }

html.land-fuel .fl-cc-btn {
  flex-shrink: 0;
  border: 1px solid var(--fl-border);
  background: var(--fl-surface-2);
  color: var(--fl-text);
  border-radius: 14px;
  padding: 0 12px;
  font: inherit;
  cursor: pointer;
}

html.land-fuel .fl-legal { margin-top: 14px; font-size: 0.75rem; color: var(--fl-muted); text-align: center; }
html.land-fuel .fl-legal a { color: var(--fl-accent); }

html.land-fuel .fl-link,
html.land-fuel .fl-back {
  background: none;
  border: none;
  color: var(--fl-accent);
  font: inherit;
  cursor: pointer;
  margin-top: 12px;
}

html.land-fuel .fl-timer { font-size: 0.85rem; color: var(--fl-muted); margin-top: 10px; }

html.land-fuel .fl-success { text-align: center; padding: 24px 0; }

html.land-fuel .fl-success-badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(62, 207, 142, 0.15);
  border: 2px solid var(--fl-accent-2);
}

html.land-fuel .view { display: none; }
html.land-fuel .view.active { display: block; }

html.land-fuel .error-msg {
  color: var(--fl-danger);
  font-size: 0.85rem;
  margin-bottom: 10px;
  min-height: 1.2em;
}

html.land-fuel .country-wrap { position: relative; }

html.land-fuel .country-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  min-width: 220px;
  max-height: 240px;
  overflow: auto;
  background: var(--fl-surface);
  border: 1px solid var(--fl-border);
  border-radius: 12px;
  margin-top: 4px;
}

html.land-fuel .country-drop.open { display: block; }

html.land-fuel .country-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--fl-text);
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

html.land-fuel .country-opt:hover,
html.land-fuel .country-opt.active { background: rgba(255,255,255,0.06); }

html.land-fuel .country-opt .c-cd { margin-left: auto; color: var(--fl-muted); font-size: 0.85rem; }

html.land-fuel .otp-grid { display: flex; gap: 8px; justify-content: center; margin: 16px 0; }

html.land-fuel .otp-grid input {
  width: 44px;
  height: 52px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid var(--fl-border);
  background: var(--fl-surface-2);
  color: var(--fl-text);
}
