/* ════════════════════════════════════════════════════════════
   KesinLink - Ana Stil Dosyası
   Tasarım dili: profil-final-v2.html'den çıkarılmış
   ════════════════════════════════════════════════════════════ */

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

:root {
  --dp:   #4a4e69;
  --pu:   #6d597a;
  --bx:   #723d46;
  --or:   #e76f51;
  --dpu:  #502f4c;
  --pb:   #005f73;
  --lpg:  #9a8c98;
  --mpu:  #70587c;

  --bg0:  #f8f8f6;
  --bg1:  #fafafa;
  --bg2:  #f5f3f0;

  --dp10: rgba(74,78,105,0.10);
  --dp08: rgba(74,78,105,0.08);
  --dp05: rgba(74,78,105,0.05);
  --pb08: rgba(0,95,115,0.08);
  --pb12: rgba(0,95,115,0.12);
  --bx08: rgba(114,61,70,0.08);
  --or08: rgba(231,111,81,0.08);
  --or12: rgba(231,111,81,0.12);
  --or15: rgba(231,111,81,0.15);

  --shadow-sm: 0 2px 8px rgba(74,78,105,0.10);
  --shadow-md: 0 6px 24px rgba(74,78,105,0.13);
  --shadow-lg: 0 16px 48px rgba(74,78,105,0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg0);
  color: var(--dp);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* sticky-ad alanı için */
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,248,246,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dp10);
  padding: 14px 0;
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.header .logo {
  flex-shrink: 0; display: inline-flex; align-items: center;
}
.header .logo img {
  height: 28px; width: auto; display: block;
}

/* Desktop nav */
.header .nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 13px;
  flex: 1; justify-content: flex-end;
}
.header .nav-links > a,
.header .nav-links > .nav-dropdown > .nav-trigger {
  color: var(--dp); font-weight: 600;
  transition: color 0.2s;
  cursor: pointer;
  background: none; border: none;
  font-family: inherit; font-size: 13px;
  padding: 6px 0;
  display: flex; align-items: center; gap: 6px;
}
.header .nav-links > a:hover,
.header .nav-links > .nav-dropdown > .nav-trigger:hover { color: var(--or); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-trigger svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-dropdown.open .nav-trigger svg { transform: rotate(180deg); }

.nav-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 280px;
  background: #ffffff;
  border: 1px solid var(--dp10);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 60;
}
.nav-dropdown.open .nav-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--dp);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-menu a:hover { background: var(--or08); color: var(--or); }
.nav-menu a.featured { color: var(--or); font-weight: 700; }
.nav-menu .menu-divider {
  height: 1px;
  background: var(--dp08);
  margin: 6px 8px;
}

/* Gift Box (sol header butonu) */
.gift-box {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or), #d4603e);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(231, 111, 81, 0.32);
  transition: transform 0.18s, box-shadow 0.2s;
  position: relative;
}
.gift-box:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.42);
}
.gift-box svg { width: 18px; height: 18px; }
.gift-box::after {
  content: ""; position: absolute;
  top: 4px; right: 4px;
  width: 8px; height: 8px;
  background: #5fcc7f; border-radius: 50%;
  border: 2px solid #ffffff;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.15); }
}

/* Gift Modal */
.gift-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(74, 78, 105, 0.55);
  backdrop-filter: blur(6px);
  z-index: 300;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.gift-modal-overlay.show {
  opacity: 1; visibility: visible;
}
.gift-modal {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.25s;
  position: relative;
}
.gift-modal-overlay.show .gift-modal { transform: scale(1); }

.gift-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--bg0); border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--lpg);
  transition: background 0.15s;
}
.gift-modal-close:hover {
  background: var(--dp08); color: var(--dp);
}
.gift-modal-close svg { width: 14px; height: 14px; }

.gift-modal-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--dp08);
}
.gift-modal-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or), #d4603e);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.gift-modal-icon svg { width: 22px; height: 22px; }
.gift-modal-title {
  font-size: 18px; font-weight: 800;
  color: var(--dp); letter-spacing: -0.3px;
}
.gift-modal-sub {
  font-size: 12px; color: var(--lpg);
  margin-top: 2px;
}
.gift-modal-body {
  font-size: 14px; line-height: 1.65;
  color: var(--dp);
}
.gift-modal-body p { margin-bottom: 12px; }
.gift-modal-body p:last-child { margin-bottom: 0; }
.gift-modal-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  background: var(--or); color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(231, 111, 81, 0.28);
  transition: all 0.18s;
}
.gift-modal-cta:hover {
  transform: translateY(-1px);
  background: #d4603e;
  color: #ffffff;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  width: 38px; height: 38px;
  background: var(--bg0);
  border: 1px solid var(--dp10);
  border-radius: 8px;
  align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-toggle svg { width: 18px; height: 18px; color: var(--dp); }

/* Mobile sidebar */
.mobile-sidebar {
  position: fixed; top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(74, 78, 105, 0.15);
  transition: right 0.3s ease;
  z-index: 200;
  overflow-y: auto;
  padding: 24px 20px;
}
.mobile-sidebar.open { right: 0; }

.mobile-sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(74, 78, 105, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 199;
}
.mobile-sidebar-overlay.show { opacity: 1; visibility: visible; }

.mobile-sidebar-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dp08);
  margin-bottom: 16px;
}
.mobile-sidebar-head .label {
  font-size: 11px; font-weight: 700;
  color: var(--lpg);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.mobile-close {
  background: none; border: none;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--lpg);
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-close:hover { background: var(--bg0); }
.mobile-close svg { width: 16px; height: 16px; }

.mobile-sidebar nav { display: flex; flex-direction: column; }
.mobile-sidebar nav > a,
.mobile-sidebar .mobile-group-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 4px;
  font-size: 14px; font-weight: 600;
  color: var(--dp);
  text-decoration: none;
  border-bottom: 1px solid var(--dp08);
  cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  width: 100%; text-align: left;
  font-family: inherit;
}
.mobile-sidebar nav > a.featured { color: var(--or); }
.mobile-sidebar nav > a:hover { color: var(--or); }
.mobile-sidebar .mobile-divider {
  height: 1px;
  background: var(--dp10);
  margin: 8px 0;
}
.mobile-sidebar .mobile-group-trigger svg {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.mobile-sidebar .mobile-group.open .mobile-group-trigger svg {
  transform: rotate(180deg);
}
.mobile-sidebar .mobile-group-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-sidebar .mobile-group.open .mobile-group-content {
  max-height: 600px;
}
.mobile-sidebar .mobile-group-content a {
  display: block;
  padding: 10px 16px;
  font-size: 13px; font-weight: 500;
  color: #5a5e78;
  border-bottom: 1px solid var(--dp05);
}
.mobile-sidebar .mobile-group-content a:last-child {
  border-bottom: 1px solid var(--dp08);
}
.mobile-sidebar .mobile-group-content a:hover { color: var(--or); }
.mobile-sidebar .mobile-group-content a.featured { color: var(--or); font-weight: 700; }

/* ══════════════════════════════════════════════
   MEGA HERO (profil sayfası)
══════════════════════════════════════════════ */
.mega-hero {
  background: linear-gradient(135deg, var(--dp) 0%, var(--dpu) 100%);
  color: #ffffff; padding: 56px 0 64px;
  position: relative; overflow: hidden;
}
.mega-hero::before {
  content: ""; position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.18), transparent 70%);
  pointer-events: none;
}
.mega-hero::after {
  content: ""; position: absolute;
  bottom: -40%; left: -10%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 95, 115, 0.10), transparent 70%);
  pointer-events: none;
}
.mega-hero-inner {
  max-width: 900px; margin: 0 auto; padding: 0 32px;
  text-align: center; position: relative; z-index: 1;
}

.mh-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  width: 260px; height: 68px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.mh-logo img { max-height: 40px; max-width: 100%; object-fit: contain; }
.mh-logo.no-logo {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.6px;
}

.mh-name {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -1.2px;
  margin-bottom: 10px;
}

.mh-url {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 14px; border-radius: 100px;
  font-size: 13px; opacity: 0.95;
  margin-bottom: 22px;
  font-weight: 500;
}
.mh-url::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%; background: #5fcc7f;
  flex-shrink: 0;
}
.mh-url strong { color: var(--or); font-weight: 700; }

.mh-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 95, 115, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 1.4px;
}
.mh-status::before {
  content: ""; width: 7px; height: 7px;
  background: #5fcc7f; border-radius: 50%;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.mh-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--or); color: #ffffff;
  padding: 16px 38px;
  border-radius: var(--radius-md);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 24px rgba(231, 111, 81, 0.36);
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  position: relative; overflow: hidden;
}
.mh-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.16) 60%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.mh-cta:hover::after { transform: translateX(100%); }
.mh-cta:hover {
  background: #d4603e;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(231, 111, 81, 0.45);
}

.mh-meta {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.mh-meta strong { color: #5fcc7f; }

.mh-warning {
  margin-top: 32px;
  background: rgba(231, 111, 81, 0.14);
  border: 1px solid rgba(231, 111, 81, 0.4);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 14px; line-height: 1.5;
  color: #ffffff; font-weight: 600;
  text-align: center;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  backdrop-filter: blur(4px);
}
.mh-warning .icon {
  display: inline-block;
  width: 20px; height: 20px;
  background: var(--or); color: #ffffff;
  border-radius: 50%;
  text-align: center; line-height: 20px;
  font-size: 13px; font-weight: 800;
  margin-right: 8px;
  vertical-align: text-top;
}
.mh-warning .warn-highlight { color: #ffd9c8; font-weight: 800; }
.mh-warning .warn-underline {
  text-decoration: underline;
  text-decoration-color: var(--or);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.mh-warning-action {
  margin-top: 14px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  text-align: center;
}
.mh-warning-action a {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--dpu);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 700;
  transition: all 0.18s;
  box-shadow: var(--shadow-sm);
}
.mh-warning-action a:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.mh-warning-action a::after { content: "→"; font-size: 15px; }

/* ══════════════════════════════════════════════
   HOME HERO (ana sayfa)
══════════════════════════════════════════════ */
.home-hero {
  background: linear-gradient(135deg, var(--dp) 0%, var(--dpu) 100%);
  color: #ffffff;
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.home-hero::before {
  content: ""; position: absolute;
  top: -40%; right: -10%;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.18), transparent 70%);
  pointer-events: none;
}
.home-hero::after {
  content: ""; position: absolute;
  bottom: -50%; left: -10%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 95, 115, 0.12), transparent 70%);
  pointer-events: none;
}
.home-hero-inner {
  max-width: 880px; margin: 0 auto; padding: 0 32px;
  text-align: center; position: relative; z-index: 1;
}
.home-hero h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.home-hero p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 28px;
}
.home-hero .cta-row {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.home-hero .cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--or); color: #ffffff;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 24px rgba(231, 111, 81, 0.36);
  transition: all 0.2s;
}
.home-hero .cta-primary:hover {
  background: #d4603e;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(231, 111, 81, 0.45);
}
.home-hero .cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
.home-hero .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   BODY
══════════════════════════════════════════════ */
.body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px;
  background: var(--bg0);
}

.section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--dp);
  transition: box-shadow 0.2s;
}
.section:hover { box-shadow: var(--shadow-md); }

.section.color-pb { border-top-color: var(--pb); }
.section.color-or { border-top-color: var(--or); }
.section.color-pu { border-top-color: var(--pu); }
.section.color-bx { border-top-color: var(--bx); }
.section.color-dpu { border-top-color: var(--dpu); }
.section.color-mpu { border-top-color: var(--mpu); }
.section.color-lpg { border-top-color: var(--lpg); }

.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dp08);
  flex-wrap: wrap; gap: 8px;
}
.section-head h2 {
  font-size: 18px; font-weight: 800;
  color: var(--dp);
  letter-spacing: -0.3px;
  display: flex; align-items: center; gap: 10px;
}
.section-head h2::before {
  content: ""; width: 14px; height: 3px;
  background: var(--or); border-radius: 2px;
  flex-shrink: 0;
}
.section-head .meta {
  font-size: 10px; color: var(--lpg);
  font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.4px;
}
.section-head .more-link {
  font-size: 12px; color: var(--or);
  font-weight: 700;
  transition: color 0.2s;
}
.section-head .more-link:hover { color: var(--bx); }

/* About / Tanıtım */
.about-text {
  font-size: 15px; line-height: 1.7;
  color: var(--dp);
}
.about-text p { margin-bottom: 12px; }
.about-text p:last-child { margin-bottom: 0; }

/* Info Rows */
.info-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.info-row {
  background: var(--bg0);
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 20px;
  position: relative; overflow: hidden;
  display: flex; justify-content: space-between; align-items: center;
  border: none;
  font-size: 14px;
}
.info-row::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 0 2px 2px 0;
}
.info-row:nth-child(6n+1)::before { background: var(--pb); }
.info-row:nth-child(6n+2)::before { background: var(--pu); }
.info-row:nth-child(6n+3)::before { background: var(--bx); }
.info-row:nth-child(6n+4)::before { background: var(--or); }
.info-row:nth-child(6n+5)::before { background: var(--dp); }
.info-row:nth-child(6n)::before { background: var(--mpu); }

.info-row .k {
  font-size: 11px;
  color: var(--lpg); font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.info-row .v {
  color: var(--dp); font-weight: 700;
  font-size: 14px;
  text-align: right;
  letter-spacing: -0.2px;
}
.info-row .v.empty {
  color: var(--lpg); font-weight: 400;
  font-style: italic; font-size: 12px;
}

/* Payment Grid */
.pay-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.pay-col h4 {
  font-size: 12px; font-weight: 700;
  color: var(--dp); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--dp08);
}
.pay-col h4::before {
  content: ""; width: 12px; height: 12px;
  border-radius: 3px;
}
.pay-col.deposit h4::before { background: var(--pb); }
.pay-col.withdraw h4::before { background: var(--or); }

.pay-tag-list { display: flex; flex-wrap: wrap; gap: 5px; }
.pay-chip {
  background: var(--bg0);
  border: 1px solid var(--dp08);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600;
  color: var(--dp);
  transition: all 0.15s;
}
.pay-chip:hover {
  background: var(--bg2);
  border-color: var(--dp10);
}

/* FAQ */
.faq-list .faq-item {
  border-bottom: 1px solid var(--dp08);
}
.faq-list .faq-item:last-child { border-bottom: none; }

.faq-list .faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 18px 4px;
  font-size: 15px; font-weight: 700;
  color: var(--dp);
  letter-spacing: -0.2px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}
.faq-list .faq-q:hover { color: var(--or); }
.faq-list .faq-q-text { flex: 1; }
.faq-list .faq-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--or08);
  color: var(--or);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px; font-weight: 400; line-height: 1;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}
.faq-list .faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--or);
  color: #ffffff;
}
.faq-list .faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; line-height: 1.7;
  color: #5a5e78;
  transition: max-height 0.4s cubic-bezier(.22,1,.36,1), padding 0.3s;
  padding: 0 4px;
}
.faq-list .faq-item.open .faq-a {
  max-height: 800px;
  padding: 0 4px 18px;
}

/* Bottom CTA */
.bottom-cta {
  background: linear-gradient(135deg, var(--dp) 0%, var(--dpu) 100%);
  color: #ffffff; padding: 48px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 28px;
  position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: ""; position: absolute;
  left: -80px; bottom: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(231, 111, 81, 0.20);
  pointer-events: none;
  filter: blur(60px);
}
.bottom-cta::after {
  content: ""; position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.bottom-cta > * { position: relative; z-index: 1; }
.bottom-cta h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.bottom-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
}
.bottom-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--or); color: #ffffff;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 24px rgba(231, 111, 81, 0.4);
  transition: all 0.2s;
}
.bottom-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(231, 111, 81, 0.5);
}

/* Report */
.report-link {
  text-align: center; margin: 24px 0;
  font-size: 13px; color: var(--lpg);
}
.report-link a {
  color: var(--dp); font-weight: 600;
  border-bottom: 1px dashed var(--lpg);
  padding-bottom: 1px;
}
.report-link a:hover { color: var(--bx); border-bottom-color: var(--bx); }

/* Breadcrumb (UI) */
.breadcrumb-ui {
  font-size: 12px;
  color: var(--lpg);
  margin-bottom: 16px;
  display: flex; gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb-ui a {
  color: var(--dp);
  font-weight: 600;
  transition: color 0.2s;
}
.breadcrumb-ui a:hover { color: var(--or); }
.breadcrumb-ui .current {
  color: var(--lpg);
  font-weight: 500;
}
.breadcrumb-ui span[aria-hidden] {
  color: var(--lpg);
  opacity: 0.5;
}

/* Page timestamps */
.page-timestamps {
  text-align: center;
  font-size: 11px;
  color: var(--lpg);
  margin-top: 12px;
  letter-spacing: 0.3px;
}
.page-timestamps time {
  font-weight: 600;
  color: var(--dp);
}

/* dl info-rows uyumu */
dl.info-rows { margin: 0; }
dl.info-rows dt { display: contents; }
dl.info-rows dd { margin: 0; display: contents; }

/* ══════════════════════════════════════════════
   SITE CARDS (ana sayfa, listeler)
══════════════════════════════════════════════ */
.site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.site-card {
  background: #ffffff;
  border: 1px solid var(--dp08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.2s;
  position: relative;
}
.site-card:hover {
  border-color: var(--or);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.site-card .sc-head {
  display: flex; align-items: center; gap: 12px;
}
.site-card .sc-logo {
  width: 56px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg0);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  color: var(--dp);
  flex-shrink: 0;
  border: 1px solid var(--dp08);
  overflow: hidden;
}
.site-card .sc-logo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.site-card .sc-title {
  flex: 1; min-width: 0;
}
.site-card .sc-title .name {
  font-size: 16px; font-weight: 700;
  color: var(--dp); letter-spacing: -0.2px;
  line-height: 1.2;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.site-card .sc-title .domain {
  font-size: 12px; color: var(--lpg);
  margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.site-card .sc-meta {
  display: flex; gap: 6px; flex-wrap: wrap;
  font-size: 11px;
}
.site-card .sc-tag {
  background: var(--bg0);
  border: 1px solid var(--dp08);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--lpg);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.site-card .sc-tag.featured {
  background: var(--or08);
  border-color: var(--or);
  color: var(--or);
}
.site-card .sc-tag.cat-casino {
  background: var(--pb08);
  border-color: var(--pb);
  color: var(--pb);
}
.site-card .sc-tag.cat-bahis {
  background: var(--bx08);
  border-color: var(--bx);
  color: var(--bx);
}

.site-card .sc-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--dp);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  transition: background 0.2s;
}
.site-card .sc-cta:hover { background: var(--or); }

/* Empty state */
.empty-state {
  background: #ffffff;
  border: 1px dashed var(--dp10);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  color: var(--lpg);
}
.empty-state .ic { font-size: 32px; opacity: 0.4; margin-bottom: 8px; }
.empty-state .msg { font-size: 14px; }

/* ══════════════════════════════════════════════
   LIST PAGE (tum-siteler vs.)
══════════════════════════════════════════════ */
.page-head {
  background: linear-gradient(135deg, var(--dp) 0%, var(--dpu) 100%);
  color: #fff;
  padding: 42px 0 36px;
  text-align: center;
}
.page-head-inner {
  max-width: 800px; margin: 0 auto; padding: 0 24px;
}
.page-head h1 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}
.page-head p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 28px; flex-wrap: wrap;
}
.pagination a, .pagination span {
  background: #fff;
  border: 1px solid var(--dp10);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  color: var(--dp);
  transition: all 0.15s;
}
.pagination a:hover {
  background: var(--or);
  color: #fff;
  border-color: var(--or);
}
.pagination .current {
  background: var(--dp);
  color: #fff;
  border-color: var(--dp);
}
.pagination .disabled {
  color: var(--lpg);
  background: var(--bg0);
  cursor: not-allowed;
}

/* Tabs (tavsiye sayfası filtresi) */
.tabs {
  display: flex; gap: 6px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--dp08);
}
.tabs a {
  padding: 11px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--lpg);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.15s;
}
.tabs a:hover { color: var(--dp); }
.tabs a.active {
  color: var(--or);
  border-bottom-color: var(--or);
}

/* ══════════════════════════════════════════════
   FORMS (bildir vs.)
══════════════════════════════════════════════ */
.form-card {
  max-width: 560px;
  margin: 40px auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--or);
}
.form-card h2 {
  font-size: 22px; font-weight: 800;
  color: var(--dp);
  margin-bottom: 6px; letter-spacing: -0.4px;
}
.form-card .desc {
  color: var(--lpg);
  font-size: 13px;
  margin-bottom: 22px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 600; font-size: 13px;
  color: var(--dp);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--dp10);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px;
  color: var(--dp);
  background: var(--bg0);
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--or);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }
.field .help { font-size: 12px; color: var(--lpg); margin-top: 4px; }

.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-group label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--bg0);
  border: 1px solid var(--dp08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500; font-size: 14px;
  margin-bottom: 0;
  transition: all 0.15s;
}
.radio-group label:hover { border-color: var(--dp10); }
.radio-group input[type=radio]:checked + span { color: var(--or); font-weight: 700; }
.radio-group input[type=radio] { accent-color: var(--or); }

.btn {
  background: var(--or); color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.btn:hover { background: #d4603e; }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 18px;
  border-left: 3px solid;
}
.alert-success {
  background: #eafbe7;
  border-color: #2e8540;
  color: #1d5025;
}
.alert-error {
  background: #fdecea;
  border-color: #c0392b;
  color: #7a2519;
}

/* ══════════════════════════════════════════════
   404
══════════════════════════════════════════════ */
.not-found {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.not-found .code {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--or), var(--bx));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -4px;
  line-height: 1;
}
.not-found h1 {
  font-size: 24px;
  color: var(--dp);
  margin-top: 12px;
  margin-bottom: 8px;
}
.not-found p {
  font-size: 14px;
  color: var(--lpg);
  margin-bottom: 24px;
  max-width: 480px;
}
.not-found .actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--dp);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-brand h4 {
  color: #ffffff; font-weight: 800; font-size: 17px;
  margin-bottom: 12px; letter-spacing: -0.4px;
}
.footer-brand p {
  font-size: 13px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}
.footer h5 {
  color: #ffffff;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer li { padding: 4px 0; }
.footer li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: color 0.2s;
}
.footer li a:hover { color: var(--or); }

.footer-bottom {
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
}
.footer-bottom .legal { display: flex; gap: 18px; }
.footer-bottom .legal a { color: rgba(255, 255, 255, 0.6); }

/* ══════════════════════════════════════════════
   MOBILE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .mh-name { font-size: 30px; }
  .mh-cta { font-size: 14px; padding: 14px 28px; }
  .info-rows { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .header .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}
@media (max-width: 600px) {
  .body { padding: 32px 16px; }
  .section { padding: 22px; }
  .mega-hero { padding: 40px 0 48px; }
  .mega-hero-inner { padding: 0 20px; }
  .mh-name { font-size: 24px; }
  .mh-warning { font-size: 12px; padding: 14px 18px; }
  .mh-logo { width: 220px; height: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 20px; }
  .home-hero { padding: 48px 0 40px; }
  .form-card { margin: 20px 16px; padding: 24px 20px; }
}
