/* Wettenlive — wettenlive1.de — Sportwetten-Übersicht (hybrid, sport-lastig) */
:root {
  --amber: #f7ad1e;
  --amber2: #ffd500;
  --dark: #272728;
  --dark2: #1a1a1b;
  --light: #f6f6f6;
  --ink: #010101;
  --line: rgba(246, 246, 246, 0.12);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wtl-wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
body.nav-open { overflow: hidden; }

/* Header */
.wtl-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--dark);
  border-bottom: 1px solid var(--line);
}
.wtl-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 20px; max-width: 1180px; margin: 0 auto; min-height: 64px;
}
.wtl-logo { display: inline-flex; align-items: center; gap: 0.4em; text-decoration: none; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.wtl-logo-w { color: var(--light); }
.wtl-logo-l { color: var(--amber); font-style: italic; }
.wtl-logo-dot {
  width: 0.5em; height: 0.5em; border-radius: 50%; background: var(--amber2);
  animation: wtlPulse 1.8s ease-out infinite;
}
@keyframes wtlPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 213, 0, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(255, 213, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 213, 0, 0); }
}
.wtl-nav-desktop { display: none; }
.wtl-nav-desktop ul { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.wtl-nav-desktop a { text-decoration: none; font-size: 0.95rem; font-weight: 600; color: var(--light); opacity: 0.85; }
.wtl-nav-desktop a:hover { opacity: 1; color: var(--amber); }
.wtl-header-actions { display: flex; align-items: center; gap: 10px; }
.wtl-cta {
  display: inline-block; background: var(--amber); color: var(--ink); font-weight: 800;
  padding: 10px 18px; border-radius: 999px; text-decoration: none; font-size: 0.92rem;
  white-space: nowrap;
}
.wtl-cta:hover { background: var(--amber2); }
.wtl-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 42px; height: 38px; background: transparent; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; padding: 0 9px;
}
.wtl-burger span { display: block; height: 2px; background: var(--light); border-radius: 2px; }

.wtl-mobile-nav {
  display: none; background: var(--dark2); border-bottom: 1px solid var(--line);
  padding: 10px 20px 18px;
}
.wtl-mobile-nav.is-open { display: block; }
.wtl-mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.wtl-mobile-nav a {
  display: block; padding: 13px 4px; text-decoration: none; color: var(--light);
  font-weight: 600; border-bottom: 1px solid var(--line); font-size: 1rem;
}
.wtl-mobile-nav .wtl-cta { margin-top: 14px; text-align: center; }

@media (min-width: 861px) {
  .wtl-nav-desktop { display: block; }
  .wtl-burger, .wtl-mobile-nav { display: none !important; }
}
@media (max-width: 400px) {
  .wtl-header-inner { padding-left: 14px; padding-right: 14px; gap: 8px; }
  .wtl-logo { font-size: 1.25rem; }
  .wtl-cta { padding: 8px 13px; font-size: 0.82rem; }
}

/* Hero — full-bleed stadium photo */
.wtl-hero {
  position: relative; min-height: 420px; display: flex; align-items: flex-end;
  background: var(--dark) center/cover no-repeat;
  overflow: hidden;
}
.wtl-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wtl-hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(1,1,1,0.15) 0%, rgba(1,1,1,0.55) 55%, rgba(1,1,1,0.92) 100%);
}
.wtl-hero-body { position: relative; z-index: 2; padding: 60px 20px 40px; max-width: 1180px; margin: 0 auto; width: 100%; }
.wtl-live-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(1,1,1,0.55);
  border: 1px solid rgba(255,213,0,0.5); color: var(--amber2); font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.wtl-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b; animation: wtlPulse 1.4s ease-out infinite; }
.wtl-hero-title { font-size: clamp(1.7rem, 4.5vw, 2.7rem); font-weight: 800; margin: 0 0 12px; max-width: 640px; line-height: 1.15; }
.wtl-hero-title b { color: var(--amber); }
.wtl-hero-sub { font-size: 1.05rem; opacity: 0.9; max-width: 560px; margin: 0 0 26px; }
.wtl-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.wtl-cta-ghost {
  display: inline-block; padding: 10px 18px; border-radius: 999px; text-decoration: none;
  font-weight: 700; color: var(--light); border: 1px solid rgba(246,246,246,0.4); font-size: 0.92rem;
}

/* Odds ticker */
.wtl-ticker-sec { background: var(--dark2); padding: 26px 0; border-bottom: 1px solid var(--line); }
.wtl-ticker-label { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--amber2); }
.wtl-ticker-row { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.wtl-match {
  flex: 0 0 auto; min-width: 240px; background: var(--dark); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px;
}
.wtl-match-league { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--amber); opacity: 0.9; margin-bottom: 8px; display: block; }
.wtl-match-teams { display: flex; justify-content: space-between; gap: 10px; font-weight: 700; font-size: 0.94rem; margin-bottom: 10px; min-width: 0; }
.wtl-match-teams span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wtl-odds-row { display: flex; gap: 8px; }
.wtl-odd { flex: 1; text-align: center; background: rgba(247,173,30,0.08); border: 1px solid rgba(247,173,30,0.25); border-radius: 6px; padding: 6px 4px; }
.wtl-odd-label { display: block; font-size: 0.65rem; opacity: 0.7; margin-bottom: 2px; }
.wtl-odd-val { font-variant-numeric: tabular-nums; font-weight: 800; color: var(--amber2); }

/* Casino teaser band */
.wtl-teaser { padding: 46px 0; border-bottom: 1px solid var(--line); }
.wtl-teaser-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.wtl-eyebrow { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); font-weight: 800; margin: 0; }
.wtl-teaser-title { font-size: 1.3rem; font-weight: 800; margin: 4px 0 0; }
.wtl-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.wtl-teaser-card { background: var(--dark); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--light); }
.wtl-teaser-card img { width: 100%; height: 120px; object-fit: cover; object-position: top; }
.wtl-teaser-card p { padding: 10px 12px; margin: 0; font-weight: 700; font-size: 0.88rem; }

/* Bonus band */
.wtl-bonus-band {
  padding: 40px 0; background: linear-gradient(120deg, rgba(247,173,30,0.14), rgba(255,213,0,0.05));
  border-bottom: 1px solid var(--line);
}
.wtl-bonus-flex { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.wtl-bonus-amt { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: var(--amber2); margin: 0; }
.wtl-bonus-note { margin: 6px 0 0; opacity: 0.85; font-size: 0.92rem; max-width: 480px; }

/* Feature row */
.wtl-features { padding: 46px 0; }
.wtl-feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.wtl-feat { background: var(--dark); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; min-width: 0; }
.wtl-feat-ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(247,173,30,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--amber); font-weight: 800; }
.wtl-feat p.wtl-feat-title { font-weight: 700; margin: 0 0 6px; }
.wtl-feat p.wtl-feat-desc { margin: 0; font-size: 0.88rem; opacity: 0.8; }

/* Breadcrumbs (internal pages) */
.wtl-breadcrumbs { padding: 16px 0 0; }
.wtl-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; font-size: 0.82rem; opacity: 0.75; }
.wtl-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: 0.5; }
.wtl-breadcrumbs a { text-decoration: none; }

/* Sub-page hero (no photo) */
.wtl-subhero {
  padding: 34px 0 30px; background: radial-gradient(circle at 15% 20%, rgba(247,173,30,0.16), transparent 55%), var(--dark2);
  border-bottom: 1px solid var(--line); margin-top: 10px;
}
.wtl-subhero-title { font-size: clamp(1.3rem, 3.4vw, 1.9rem); font-weight: 800; margin: 6px 0 0; max-width: 700px; }

/* Article / SEO block */
.wtl-article { padding: 40px 0 60px; max-width: 800px; margin: 0 auto; }
.wtl-article h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); line-height: 1.2; margin: 0 0 18px; }
.wtl-article h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.wtl-article h3 { font-size: 1.05rem; margin: 0; }
.wtl-article p { margin: 0 0 16px; opacity: 0.92; }
.wtl-article a { color: var(--amber2); text-decoration: underline; }

.wtl-table-wrap { overflow-x: auto; margin: 18px 0; border: 1px solid var(--line); border-radius: 8px; }
.wtl-article table { width: 100%; border-collapse: collapse; table-layout: fixed; min-width: 420px; }
.wtl-article td { padding: 10px 12px; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; font-size: 0.92rem; }
@media (max-width: 560px) {
  .wtl-article td { padding: 7px 9px; font-size: 0.82rem; }
}

.wtl-faq-item { border-bottom: 1px solid var(--line); }
.wtl-faq-q { cursor: pointer; padding: 14px 26px 14px 0; position: relative; margin: 0 !important; }
.wtl-faq-q::after { content: "+"; position: absolute; right: 4px; top: 12px; font-size: 1.3rem; color: var(--amber); }
.wtl-faq-q.is-open::after { content: "\2212"; }
.wtl-faq-a-collapsed { display: none; }
.wtl-faq-a-open { display: block; padding-bottom: 6px; }
.wtl-faq-a p { margin: 0 0 12px; }

/* Footer */
.wtl-footer { background: var(--dark2); border-top: 1px solid var(--line); padding: 46px 0 26px; margin-top: 20px; }
.wtl-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, 1fr); gap: 30px; margin-bottom: 30px; }
.wtl-footer-col p.wtl-footer-h { font-weight: 800; margin: 0 0 12px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--amber); }
.wtl-footer-col ul { list-style: none; margin: 0; padding: 0; }
.wtl-footer-col li { margin-bottom: 9px; }
.wtl-footer-col a { text-decoration: none; opacity: 0.85; font-size: 0.92rem; }
.wtl-footer-col a:hover { opacity: 1; }
.wtl-footer-desc { font-size: 0.88rem; opacity: 0.75; max-width: 320px; margin: 10px 0 0; }
.wtl-footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; font-size: 0.78rem; opacity: 0.65; }
.wtl-footer-bottom p { margin: 0 0 8px; }
.wtl-footer-rg { color: var(--amber2); opacity: 0.9; }

@media (min-width: 700px) {
  .wtl-footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
@media (max-width: 699px) {
  .wtl-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* fix: мобильный воздух */
@media (max-width:760px){article.wtl-article{padding-left:18px;padding-right:18px}}

nav.wtl-breadcrumbs.wtl-wrap{padding-left:18px;padding-right:18px}
section.wtl-subhero div.wtl-wrap,div.wtl-wrap{padding-left:18px;padding-right:18px}
