/* Tüketici şikayet sitesi — koyu tema, uyarı vurgusu */
:root {
  --bg-deep: #0a0b0f;
  --bg-card: #12141c;
  --bg-elevated: #181b26;
  --text: #e8eaef;
  --text-muted: #9aa3b2;
  --accent: #e11d2e;
  --accent-hover: #ff3344;
  --accent-dim: rgba(225, 29, 46, 0.15);
  --gold: #c9a227;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-pill: 999px;
  --font-display: "Bebas Neue", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 720px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(225, 29, 46, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(201, 162, 39, 0.06), transparent);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent), #8b1018);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.brand__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 2.5rem 1.25rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(225, 29, 46, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: var(--max);
  margin: 0 auto 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

/* Layout */
main {
  padding: 0 1.25rem 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.section {
  margin-bottom: 2.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.section h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.section p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.section p strong {
  color: var(--text);
}

.section--primary-issue {
  border: 1px solid rgba(225, 29, 46, 0.38);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 0.9rem;
  background: linear-gradient(160deg, rgba(225, 29, 46, 0.14), rgba(18, 20, 28, 0.9));
}

.section--license {
  border: 1px solid rgba(225, 29, 46, 0.32);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 0.9rem;
  background: linear-gradient(160deg, rgba(225, 29, 46, 0.1), rgba(18, 20, 28, 0.85));
}

.section--license h2 {
  border-bottom-color: #ff4f5e;
}

.section--ossebet {
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 0.9rem;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.06), rgba(18, 20, 28, 0.82));
}

.section--ossebet h2 {
  border-bottom-color: rgba(201, 162, 39, 0.75);
}

.financial-summary {
  border-color: rgba(225, 29, 46, 0.42);
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.18), rgba(18, 20, 28, 0.88));
}

.license-points {
  margin: 0.4rem 0 0.25rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.license-points li {
  margin-bottom: 0.45rem;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--border);
  margin-left: 0.5rem;
  padding-left: 1.25rem;
}

.timeline li {
  position: relative;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1.25rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg-deep);
}

.timeline time {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

/* Callout */
.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin: 1.5rem 0;
}

.callout--warn {
  border-color: rgba(225, 29, 46, 0.35);
  background: linear-gradient(135deg, var(--accent-dim), var(--bg-card));
}

.callout h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* List checks */
.checklist {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.checklist li {
  margin-bottom: 0.5rem;
}

.incident-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.evidence-card--wide img {
  aspect-ratio: 4 / 5;
}

/* Evidence gallery */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.evidence-card {
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.evidence-card img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.evidence-card figcaption {
  padding: 0.8rem 0.9rem 0.95rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.mask {
  position: absolute;
  border-radius: 8px;
  backdrop-filter: blur(7px);
  background: rgba(10, 11, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mask--email-a {
  top: 18%;
  left: 7%;
  width: 87%;
  height: 6.5%;
}

.mask--email-b {
  top: 26%;
  left: 7%;
  width: 87%;
  height: 7%;
}

.mask--email-c {
  top: 20%;
  left: 7%;
  width: 87%;
  height: 8%;
}

.mask--chat-a {
  top: 39%;
  left: 7%;
  width: 38%;
  height: 5%;
}

.mask--chat-b {
  top: 38%;
  left: 7%;
  width: 38%;
  height: 5%;
}

.mask--mail3-a {
  top: 21%;
  left: 7%;
  width: 86%;
  height: 8%;
}

/* Footer */
.site-footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0 0 0.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer--rich {
  text-align: left;
  padding-top: 2.5rem;
}

.footer-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.footer-grid section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.footer-grid h2 {
  font-size: 0.95rem;
  margin: 0 0 0.55rem;
  color: var(--text);
}

.footer-grid p {
  margin: 0;
  font-size: 0.86rem;
  max-width: none;
}

.footer-links {
  margin: 0;
  padding-left: 1.1rem;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a[href*="#lisans"] {
  font-weight: 700;
}

.footer-links a[href*="#ossebet"] {
  font-weight: 600;
  color: var(--text-muted);
}

.footer-bottom {
  margin-top: 1.2rem !important;
  text-align: center;
  max-width: 760px !important;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 2rem 1.25rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.page-hero .lead {
  color: var(--text-muted);
  margin: 0;
}

/* Mobile nav */
@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(10, 11, 15, 0.97);
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-top: 1px solid var(--border);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .incident-proof-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav {
    transition: none;
  }
}
