/* 1xbetyukleaze.com — mobile-first, no JS */

:root {
  --ink: #14263a;
  --ink-soft: #43566c;
  --bg: #f4f6f9;
  --panel: #ffffff;
  --navy: #14538f;
  --navy-deep: #0d3a66;
  --navy-dark: #092b4d;
  --accent: #2f9e4f;
  --accent-dark: #237a3c;
  --line: #d8e0ea;
  --warn-bg: #fdf6e7;
  --warn-line: #e8d8ae;
  --radius: 10px;
  --space: clamp(1rem, 2.5vw, 1.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.wrap {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding-left: var(--space);
  padding-right: var(--space);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-deep);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 20;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
}

/* Header */
.site-header {
  background: var(--navy-dark);
  color: #fff;
  border-bottom: 3px solid var(--accent);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.site-mark {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mark-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}
.top-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
}
.top-nav a {
  display: inline-block;
  color: #dbe7f3;
  text-decoration: none;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  min-height: 44px;
  line-height: 1.9;
}
.top-nav a:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%, #1a6ab3 100%);
  color: #fff;
  padding: clamp(1.75rem, 5vw, 3.25rem) 0;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #c8d9ea;
}
.age-badge {
  display: inline-block;
  border: 2px solid #ffca3a;
  color: #ffca3a;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  font-size: 0.85rem;
}
.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 4.5vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 44rem;
}
.hero-answer {
  margin: 0 0 1.25rem;
  font-size: clamp(1.02rem, 2.2vw, 1.15rem);
  max-width: 46rem;
  color: #eaf2fa;
}
.hero-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 46rem;
}
.hero-points li {
  padding: 0.5rem 0.75rem 0.5rem 2.1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  position: relative;
  font-size: 0.97rem;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.95rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}
.btn-solid {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.hero-notice {
  margin: 0;
  font-size: 0.88rem;
  color: #bcd2e5;
  max-width: 46rem;
}
.hero-notice a { color: #ffe08a; }

/* Content sections */
.content {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.content section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.8rem);
  margin: 0 0 1.25rem;
  scroll-margin-top: 1rem;
}
.content h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.25;
  color: var(--navy-deep);
}
.content h3 {
  margin: 1.1rem 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.content p { margin: 0 0 0.9rem; }
.content p:last-child { margin-bottom: 0; }
.content ul { margin: 0 0 0.9rem; padding-left: 1.25rem; }
.content ul li { margin-bottom: 0.4rem; }
.content a { color: var(--navy); }
.content a:hover { color: var(--navy-deep); }

/* Steps: bet-slip style ticket list */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.steps > li {
  counter-increment: step;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 0.8rem 1rem 0.8rem 3.2rem;
  position: relative;
  background: #fbfcfe;
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps > li h3 { margin: 0 0 0.3rem; font-size: 1rem; }
.steps > li p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }
.steps-compact > li { padding-top: 0.65rem; padding-bottom: 0.65rem; }

/* Tables */
.table-scroll { overflow-x: auto; }
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 34rem;
  font-size: 0.95rem;
}
caption {
  caption-side: top;
  text-align: left;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-bottom: 0.5rem;
}
th, td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  text-align: left;
  vertical-align: top;
}
thead th {
  background: var(--navy-deep);
  color: #fff;
}
tbody th[scope="row"] {
  background: #eef3f8;
  font-weight: 700;
}

/* FAQ */
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  background: #fbfcfe;
}
details:last-child { margin-bottom: 0; }
summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.8rem 1rem;
  list-style-position: inside;
  min-height: 44px;
}
summary:hover { color: var(--navy-deep); }
details[open] summary { border-bottom: 1px solid var(--line); }
details p {
  padding: 0.75rem 1rem;
  margin: 0;
  color: var(--ink-soft);
}

/* Sections with warning tone */
#partnyor, #mesuliyyet {
  background: var(--warn-bg);
  border-color: var(--warn-line);
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #c8d9ea;
  padding: 1.5rem 0 2rem;
  font-size: 0.9rem;
}
.site-footer p { margin: 0 0 0.6rem; }
.site-footer strong { color: #ffca3a; }
.site-footer a { color: #ffe08a; }

/* Focus visibility */
a:focus-visible,
summary:focus-visible,
.btn:focus-visible {
  outline: 3px solid #ffca3a;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Wider screens */
@media (min-width: 46rem) {
  .header-inner { justify-content: space-between; }
  .hero-points {
    grid-template-columns: 1fr 1fr;
  }
}
