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

:root {
  /* SÖTÉT PREMIUM PALETTA */
  --bg: #050505;
  --bg2: #0e0e0e;
  --bg3: #1a1a1a;
  --bg-card: #0e0e0e;
  --bg-hover: #161616;
  --bg-elevated: #1a1a1a;

  --green: #30d158;
  --green-soft: rgba(48, 209, 88, 0.1);
  --green-dim: rgba(48, 209, 88, 0.3);
  --green-mid: #00a651;
  --green-dark: #007a3d;

  --text: #ffffff;
  --text-2: #a1a1a6;
  --text-3: #86868b;
  --text-4: #555558;

  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.22);

  --gold: #e8a000;
  --gold-light: rgba(232, 160, 0, 0.12);
  --gold-dark: #c47d00;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
}
.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.page-wrap > nav { flex-shrink: 0; }
.page-wrap > footer { margin-top: auto; flex-shrink: 0; }

/* ========== NAV (sticky, blur) ========== */
nav {
  position: sticky; top: 0; z-index: 100;
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  align-items: center;
  padding: 0 32px; height: 64px;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 600; letter-spacing: -0.025em;
  color: var(--text); text-decoration: none;
}
.logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.logo-tld { color: var(--gold); }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; justify-content: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-2); padding: 8px 14px;
  border-radius: var(--radius); text-decoration: none;
  transition: color .2s var(--ease), background .2s var(--ease);
  white-space: nowrap; display: inline-block; text-align: center;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--text); background: var(--bg2); }
.nav-links a.active { color: var(--text); background: var(--bg2); font-weight: 600; }

.nav-more-wrap { position: relative; }
.nav-more-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  background: none; border: none; cursor: pointer;
  font-family: inherit; padding: 8px 14px;
  border-radius: var(--radius); transition: color .2s var(--ease), background .2s var(--ease);
  letter-spacing: -0.01em;
}
.nav-more-btn:hover { color: var(--text); background: var(--bg2); }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px; min-width: 180px; z-index: 200;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown.open { display: block; }
.nav-dropdown a {
  display: block; font-size: 13px; font-weight: 500; color: var(--text-2);
  text-decoration: none; padding: 9px 14px; border-radius: var(--radius-sm);
  transition: background .15s var(--ease), color .15s var(--ease);
  letter-spacing: -0.01em;
}
.nav-dropdown a:hover { background: var(--bg-hover); color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 8px; justify-content: flex-end; min-width: 280px; }
.nav-right .lang-toggle { order: 3; margin-left: 4px; }
.nav-right .btn-ghost { order: 1; }
.nav-right .btn-cta { order: 2; }

.lang-toggle {
  font-size: 11px; font-family: 'Geist Mono', monospace;
  padding: 6px 0; border: 1px solid var(--border-2);
  border-radius: 980px; background: transparent; cursor: pointer;
  color: var(--text-2); transition: all .2s var(--ease); font-weight: 500;
  width: 44px; min-width: 44px; max-width: 44px; text-align: center; flex-shrink: 0;
}
.lang-toggle:hover { color: var(--text); border-color: var(--border-strong); background: var(--bg2); }

.btn-ghost {
  font-size: 13px; color: var(--text-2); background: none;
  border: none; cursor: pointer; font-family: inherit;
  padding: 8px 12px; transition: color .2s var(--ease); font-weight: 500;
  letter-spacing: -0.01em;
  visibility: hidden; /* Alapból rejtve, JS mutatja amikor a Memberstack visszaadta a state-et */
}
.btn-ghost:hover { color: var(--text); }

.btn-cta {
  font-size: 13px; font-weight: 600; font-family: inherit;
  padding: 9px 18px; background: var(--text); color: var(--bg);
  border: none; border-radius: 980px; cursor: pointer;
  transition: all .2s var(--ease); letter-spacing: -0.01em; white-space: nowrap;
  visibility: hidden; /* Alapból rejtve, JS mutatja amikor a Memberstack visszaadta a state-et */
}
.btn-cta:hover { transform: translateY(-1px); opacity: 0.9; }
.btn-cta:active { transform: translateY(0); }

/* ========== HERO + Csillagos animáció ========== */
.hero {
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #1a2e1f 0%, #050505 50%);
  text-align: center;
}

/* Csillagok */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 18%, white, transparent),
    radial-gradient(1.5px 1.5px at 23% 35%, white, transparent),
    radial-gradient(2px 2px at 8% 55%, rgba(48,209,88,0.8), transparent),
    radial-gradient(1.5px 1.5px at 18% 75%, white, transparent),
    radial-gradient(2px 2px at 32% 12%, white, transparent),
    radial-gradient(1.5px 1.5px at 38% 88%, white, transparent),
    radial-gradient(2px 2px at 45% 28%, rgba(48,209,88,0.8), transparent),
    radial-gradient(1.5px 1.5px at 55% 65%, white, transparent),
    radial-gradient(2px 2px at 62% 18%, white, transparent),
    radial-gradient(1.5px 1.5px at 70% 82%, white, transparent),
    radial-gradient(2px 2px at 80% 25%, white, transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(48,209,88,0.8), transparent),
    radial-gradient(2px 2px at 92% 35%, white, transparent),
    radial-gradient(1.5px 1.5px at 95% 80%, white, transparent);
  pointer-events: none;
  animation: twinkleStars 4s ease-in-out infinite;
}

@keyframes twinkleStars {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

/* Lassan mozgó orb */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(48,209,88,0.25), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: slowOrb 12s ease-in-out infinite;
}

@keyframes slowOrb {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-45%, -55%) scale(1.15); opacity: 0.75; }
}

.hero > * { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-family: 'Geist Mono', monospace;
  color: var(--green); margin-bottom: 24px; letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green-soft);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--green-dim);
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px rgba(48,209,88,0.6);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

h1 {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 600;
  line-height: 1.04; letter-spacing: -0.045em; color: var(--text); margin-bottom: 24px;
}
h1 .muted { color: var(--text-3); font-weight: 400; }
h1 .green { color: var(--green); }
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, #50e090 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2); line-height: 1.55; max-width: 580px; margin: 0 auto 36px;
  letter-spacing: -0.01em;
}
.hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; justify-content: center; }

.btn-lg {
  font-size: 14px; font-weight: 600; font-family: inherit;
  padding: 12px 24px; background: var(--text); color: var(--bg);
  border: none; border-radius: 980px; cursor: pointer;
  letter-spacing: -0.01em; transition: all .2s var(--ease); white-space: nowrap;
}
.btn-lg:hover { transform: translateY(-1px); opacity: 0.9; }
.btn-lg:active { transform: translateY(0); }

.btn-lg-sec {
  font-size: 14px; font-family: inherit; font-weight: 500;
  padding: 12px 24px; background: transparent;
  border: 1px solid var(--border-2); color: var(--text);
  border-radius: 980px; cursor: pointer; transition: all .2s var(--ease); white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-lg-sec:hover { border-color: var(--border-strong); background: var(--bg2); }

.hero-note { font-size: 12px; color: var(--text-3); margin-top: 8px; }

/* ========== STATS ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 32px 60px;
}
.stat-cell {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .2s var(--ease);
}
.stat-cell:hover { background: var(--bg-hover); border-color: var(--border-2); transform: translateY(-2px); }
.stat-num {
  font-size: 36px; font-weight: 600; letter-spacing: -0.04em;
  color: var(--text); line-height: 1;
}
.stat-num span { color: var(--green); }
.stat-lbl {
  font-size: 12px; color: var(--text-3); margin-top: 10px;
  letter-spacing: -0.01em;
}

/* ========== SECTION ========== */
.section {
  padding: 60px 32px;
}
.section-label {
  font-size: 11px; font-family: 'Geist Mono', monospace;
  letter-spacing: 0.1em; color: var(--green); text-transform: uppercase;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
h2 {
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 600;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 12px; line-height: 1.15;
}
.section-sub {
  font-size: 15px; color: var(--text-2); margin-bottom: 32px; line-height: 1.6;
  max-width: 680px; letter-spacing: -0.01em;
}

/* ========== PICKS FEED ========== */
.picks-feed {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.feed-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: var(--bg2); border-bottom: 1px solid var(--border);
}
.feed-url { font-size: 11px; font-family: 'Geist Mono', monospace; color: var(--text-3); }
.feed-live {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  font-family: 'Geist Mono', monospace; color: var(--green);
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px rgba(48,209,88,0.6); animation: blink 2s ease-in-out infinite; flex-shrink: 0; }

.pick-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  gap: 12px; transition: background .15s var(--ease);
}
.pick-row:last-child { border-bottom: none; }
.pick-row:hover { background: var(--bg-hover); }
.pick-row.locked { opacity: .35; pointer-events: none; }
.pick-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.pick-sport {
  font-size: 10px; font-family: 'Geist Mono', monospace;
  color: var(--text-3); background: var(--bg2); padding: 4px 10px;
  border-radius: 6px; border: 1px solid var(--border); white-space: nowrap;
  flex-shrink: 0; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500;
}
.pick-match { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.pick-market { font-size: 12px; color: var(--text-3); margin-top: 2px; letter-spacing: -0.01em; }
.pick-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.pick-odd {
  font-size: 17px; font-weight: 700; font-family: 'Geist Mono', monospace;
  color: var(--text); min-width: 44px; text-align: right; letter-spacing: -0.02em;
}
.pick-edge {
  font-size: 11px; font-family: 'Geist Mono', monospace;
  color: var(--green); background: var(--green-soft);
  border: 1px solid var(--green-dim); padding: 4px 10px;
  border-radius: 20px; white-space: nowrap; font-weight: 500;
}
.pick-btn {
  font-size: 12px; font-weight: 500; padding: 7px 14px;
  border: 1px solid var(--border-2); border-radius: var(--radius);
  background: transparent; color: var(--text-2);
  cursor: pointer; transition: all .15s var(--ease); white-space: nowrap;
  letter-spacing: -0.01em;
}
.pick-btn:hover { border-color: var(--text); color: var(--text); background: var(--bg-hover); }
.lock-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; font-size: 12px; color: var(--text-3); background: var(--bg2);
  border-top: 1px solid var(--border); cursor: pointer;
  transition: color .15s var(--ease); text-decoration: none;
}
.lock-row:hover { color: var(--text); }

/* ========== CARD GRID ========== */
.card-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.card {
  padding: 28px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: all .2s var(--ease);
}
.card:hover { background: var(--bg-hover); border-color: var(--border-2); transform: translateY(-2px); }
.card-num {
  font-size: 11px; font-family: 'Geist Mono', monospace;
  color: var(--text-3); margin-bottom: 12px; letter-spacing: 0.04em;
}
.card-title {
  font-size: 17px; font-weight: 600; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.card-desc {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
  letter-spacing: -0.01em;
}

/* ========== PRICING ========== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.price-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; background: var(--bg-card);
  display: flex; flex-direction: column;
  transition: all .2s var(--ease);
}
.price-card:hover { background: var(--bg-hover); border-color: var(--border-2); }
.price-card.featured {
  border-color: var(--gold); background: var(--bg-elevated);
  position: relative;
}
.price-badge {
  font-size: 10px; font-family: 'Geist Mono', monospace;
  color: var(--gold); background: var(--gold-light);
  border: 1px solid rgba(232,160,0,0.3); padding: 4px 10px; border-radius: 20px;
  display: inline-block; margin-bottom: 16px;
  align-self: flex-start; letter-spacing: 0.04em; font-weight: 500;
}
.price-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 16px; letter-spacing: -0.01em; }
.price-amount {
  font-size: 48px; font-weight: 700; letter-spacing: -0.04em;
  color: var(--text); line-height: 1; margin-bottom: 4px;
}
.price-per { font-size: 12px; color: var(--text-3); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-2); line-height: 1.5;
  letter-spacing: -0.01em;
}
.price-check { color: var(--green); flex-shrink: 0; font-weight: 600; }
.price-btn {
  display: block; width: 100%; margin-top: 24px; padding: 11px;
  text-align: center; font-size: 13px; font-family: inherit; font-weight: 600;
  border-radius: 980px; cursor: pointer; transition: all .2s var(--ease);
  border: 1px solid var(--border-2); background: transparent;
  color: var(--text); letter-spacing: -0.01em;
}
.price-btn:hover { border-color: var(--text); background: var(--bg-hover); }
.price-btn.main {
  background: var(--text); color: var(--bg); border-color: var(--text);
}
.price-btn.main:hover { transform: translateY(-1px); opacity: 0.9; }

/* ========== TABLE ========== */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  text-align: left; font-size: 11px; font-family: 'Geist Mono', monospace;
  letter-spacing: 0.05em; color: var(--text-3); text-transform: uppercase;
  padding: 12px 20px; border-bottom: 1px solid var(--border); font-weight: 500;
  background: var(--bg2);
}
.data-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  color: var(--text-2); vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-hover); }

/* ========== FORM ========== */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label {
  font-size: 11px; font-family: 'Geist Mono', monospace; color: var(--text-2);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.form-input {
  padding: 12px 14px; border: 1px solid var(--border-2);
  border-radius: var(--radius); font-size: 14px;
  color: var(--text); background: var(--bg-card);
  transition: all .15s var(--ease); outline: none; font-family: inherit;
}
.form-input:focus { border-color: var(--text); box-shadow: 0 0 0 3px rgba(255,255,255,0.08); }
.form-textarea { min-height: 120px; resize: vertical; }

/* ========== BADGE ========== */
.badge {
  display: inline-block; font-size: 11px; font-family: 'Geist Mono', monospace;
  padding: 3px 10px; border-radius: 20px; font-weight: 500;
}
.badge-green { background: var(--green-soft); color: var(--green); border: 1px solid var(--green-dim); }
.badge-gray { background: var(--bg2); color: var(--text-2); border: 1px solid var(--border); }

/* ========== CODE ========== */
.code-block {
  background: var(--bg2); color: #f0f0f0;
  font-family: 'Geist Mono', monospace; font-size: 13px;
  padding: 24px 28px; border-radius: var(--radius-lg);
  overflow-x: auto; line-height: 1.7; margin: 18px 0;
  border: 1px solid var(--border);
}
.code-green { color: #4ade80; }
.code-blue { color: #60a5fa; }
.code-yellow { color: #fbbf24; }
.code-gray { color: #888880; }

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid var(--border); padding: 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  display: flex; align-items: center; gap: 7px; font-size: 14px;
  font-weight: 600; color: var(--text-2); text-decoration: none;
  letter-spacing: -0.02em;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: var(--text-3); text-decoration: none;
  transition: color .15s var(--ease); letter-spacing: -0.01em;
}
.footer-links a:hover { color: var(--text); }
.footer-note { font-size: 12px; color: var(--text-3); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s var(--ease) both; }
.fu1{animation-delay:.04s}.fu2{animation-delay:.1s}.fu3{animation-delay:.18s}.fu4{animation-delay:.26s}.fu5{animation-delay:.32s}

/* ========== HAMBURGER MENU (mobil) ========== */
.nav-hamburger {
  display: none;
  background: none; border: 1px solid var(--border-2);
  width: 40px; height: 40px;
  border-radius: var(--radius);
  cursor: pointer; color: var(--text);
  align-items: center; justify-content: center;
  transition: all .15s var(--ease);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--bg2); border-color: var(--border-strong); }
.nav-hamburger svg { display: block; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 70px 20px 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-size: 17px; font-weight: 500;
  color: var(--text);
  padding: 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .15s var(--ease);
  letter-spacing: -0.01em;
  border-left: 2px solid transparent;
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: var(--bg2);
  border-left-color: var(--green);
  color: var(--green);
}
.mobile-menu-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none; border: 1px solid var(--border-2);
  width: 40px; height: 40px;
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s var(--ease);
}
.mobile-menu-close:hover { background: var(--bg2); }
.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 8px;
}
.mobile-menu-section {
  font-size: 10px;
  font-family: 'Geist Mono', monospace;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px 8px;
}

/* Body lock amikor mobil menü nyitva */
body.menu-open { overflow: hidden; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  nav {
    padding: 0 16px; height: 56px;
    grid-template-columns: auto 1fr auto;
  }
  .nav-links { display: none; }
  .nav-more-wrap { display: none; }
  .nav-hamburger { display: flex; grid-column: 3; order: 99; }

  .nav-right { min-width: auto; gap: 8px; grid-column: 2; justify-self: end; }
  .nav-right .btn-ghost { display: none; } /* mobile menüben lesz */
  .nav-right .btn-cta {
    padding: 8px 14px; font-size: 12px;
    min-height: 36px;
  }
  .lang-toggle {
    width: 40px; min-width: 40px; max-width: 40px;
    height: 36px; padding: 0;
    font-size: 11px;
  }

  .hero { padding: 56px 20px 48px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .hero-actions .btn-lg, .hero-actions .btn-lg-sec {
    width: 100%; padding: 14px 24px; font-size: 15px; min-height: 48px;
  }

  .stats {
    grid-template-columns: 1fr; gap: 12px;
    padding: 0 20px 40px;
  }
  .stat-cell { padding: 20px 18px; }
  .stat-num { font-size: 28px; }

  .section { padding: 40px 20px; }
  .section-sub { font-size: 14px; margin-bottom: 24px; }
  .card-grid { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 22px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .price-card { padding: 24px 20px; }

  .pick-row { padding: 14px 16px; flex-wrap: wrap; gap: 10px; }
  .pick-left { gap: 10px; min-width: 0; }
  .pick-sport { font-size: 9px; padding: 3px 7px; }
  .pick-match { font-size: 13px; }
  .pick-right { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
  .pick-odd { font-size: 15px; min-width: 36px; }
  .pick-edge { font-size: 10px; padding: 3px 8px; }
  .pick-btn {
    font-size: 12px; padding: 8px 14px;
    min-height: 36px;
  }

  footer {
    flex-direction: column; text-align: center; padding: 24px 16px; gap: 16px;
  }
  .footer-links { justify-content: center; gap: 14px; }

  .data-table { font-size: 12px; }
  .data-table th, .data-table td { padding: 10px 14px; }

  /* Touch targets nagyobbak mobilon */
  button, .btn-cta, .btn-ghost, .btn-lg, .btn-lg-sec, .price-btn, .pick-btn {
    min-height: 40px;
  }

  /* Form input-ok jobbak mobilon */
  .form-input, input[type="text"], input[type="email"], input[type="password"], input[type="number"], select, textarea {
    font-size: 16px !important; /* iOS zoom megelőzése */
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  nav { padding: 0 12px; }
  .nav-logo { font-size: 16px; }
  .pick-right { gap: 8px; }
  .pick-edge { display: none; }

  .hero { padding: 40px 16px 36px; }
  .hero h1 { font-size: clamp(28px, 9vw, 40px); line-height: 1.05; }
  .hero-sub { font-size: 14px; }
  .hero-tag { font-size: 10px; padding: 5px 10px; }

  .section { padding: 32px 16px; }
  h2 { font-size: clamp(22px, 6vw, 28px); }

  .card { padding: 20px 18px; }
  .price-card { padding: 20px 18px; }

  .stats { padding: 0 16px 32px; }
  .stat-cell { padding: 18px 16px; }

  footer { padding: 20px 12px; }
  .footer-links { gap: 10px 16px; font-size: 12px; }
}

/* ========== PREMIUM REDESIGN — extra komponensek ========== */

/* Logo cloud */
.logo-cloud {
  padding: 60px 32px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-cloud-label {
  font-size: 11px;
  font-family: 'Geist Mono', monospace;
  color: var(--text-3);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.logo-cloud-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0.5;
  transition: opacity .3s var(--ease);
}
.logo-cloud:hover .logo-cloud-row { opacity: 0.85; }
.logo-item {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: -0.02em;
  transition: color .15s var(--ease);
}
.logo-item:hover { color: var(--text); }

/* Feature cards */
.card-feature {
  position: relative;
  padding: 32px;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-soft);
  border: 1px solid var(--green-dim);
  border-radius: var(--radius);
  color: var(--green);
  margin-bottom: 20px;
}
.card-feature .card-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 12px;
  color: var(--text-3);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
.card-feature .card-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-feature .card-desc {
  font-size: 14px;
  line-height: 1.65;
}

/* How it works */
.how-section { background: var(--bg2); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 12px;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all .2s var(--ease);
}
.how-step:hover { background: var(--bg-hover); border-color: var(--border-2); transform: translateY(-2px); }
.how-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  background: var(--green);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 0 20px rgba(48,209,88,0.3);
}
.how-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.how-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.how-connector {
  align-self: center;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

/* CTA banner */
.cta-banner {
  margin: 40px 32px 60px;
  padding: 72px 48px;
  background: radial-gradient(ellipse at center, #0e1a14 0%, #050505 70%);
  border: 1px solid var(--green-dim);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(48,209,88,0.18), transparent 40%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-title {
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-sub {
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.cta-btn {
  background: var(--green);
  color: var(--bg);
  font-size: 15px;
  padding: 14px 28px;
}
.cta-btn:hover { background: #50e090; }

@media (max-width: 900px) {
  .logo-cloud { padding: 40px 20px 28px; }
  .logo-cloud-row { gap: 24px; }
  .logo-item { font-size: 15px; }

  .card-feature { padding: 24px; }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .how-connector { display: none; }
  .how-step { padding: 24px; }

  .cta-banner {
    margin: 32px 20px 40px;
    padding: 48px 28px;
  }
  .cta-title { font-size: 28px; }
  .cta-sub { font-size: 14px; margin-bottom: 24px; }
}

/* ========== GLOBAL MOBILE SAFETY ========== */
@media (max-width: 700px) {
  /* Profil oldal grid mobilon 1 oszlopos */
  .profile-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  /* Meccs oldal grid mobilon 1 oszlopos */
  .meccs-grid, [class*="markets-grid"] { grid-template-columns: 1fr !important; }
  /* Profil hero padding kisebb */
  .profile-hero { padding: 32px 16px 20px !important; }
  /* Section padding 16px */
  body section.section { padding-left: 16px !important; padding-right: 16px !important; }
}

/* Globális: image-eket ne nyúljanak ki */
img { max-width: 100%; height: auto; }
/* Globális: textarea ne legyen szélesebb mint a parent */
textarea, input, select { max-width: 100%; box-sizing: border-box; }
/* Touch-friendly minden gombnál */
button, a[role="button"], .btn-cta, .btn-ghost { -webkit-tap-highlight-color: rgba(48,209,88,0.15); }

/* Mobilon ne legyen vízszintes scroll */
html, body { overflow-x: hidden; }

/* iOS Safari: viewport meta-tagre épülő input zoom megelőzése */
@supports (-webkit-touch-callout: none) {
  input, textarea, select { font-size: 16px !important; }
}
