:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #111111;
  --panel-soft: #171717;
  --line: rgba(255, 255, 255, 0.1);
  --muted: #9aa7bc;
  --soft: #bdd0ea;
  --ink: #f8fbff;
  --violet: #6f63ff;
  --pink: #f05bb8;
  --green: #2ee77d;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(88, 101, 242, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.86) 480px),
    #050505;
  background-attachment: fixed;
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

.promo-bar {
  position: relative;
  z-index: 3;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  background:
    linear-gradient(55deg, transparent 0 7%, rgba(255, 255, 255, 0.09) 7.2%, transparent 13%),
    linear-gradient(55deg, transparent 62%, rgba(255, 255, 255, 0.08) 62.3%, transparent 70%),
    linear-gradient(90deg, #5747bd 0%, #6b58d2 50%, #604ec5 100%);
  color: #f7f6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.page {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 52px;
}

.topbar {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  justify-self: start;
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.28));
}

.brand-accent {
  color: #a99cff;
}

.brand-beta {
  min-height: 19px;
  display: inline-grid;
  place-items: center;
  padding: 0 7px;
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 5px;
  background: rgba(104, 71, 220, 0.24);
  color: #c9c0ff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.nav-links {
  justify-self: center;
  gap: 26px;
  color: #b8c0ce;
  font-size: 14px;
  font-weight: 700;
}

.legal-hero {
  padding: 34px 0 48px;
  text-align: center;
}

.kvkk-hero {
  padding: 34px 0 48px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(111, 99, 255, 0.32);
  border-radius: 999px;
  background: rgba(111, 99, 255, 0.1);
  color: #9ea5ff;
  font-size: 14px;
  font-weight: 700;
}

.legal-badge svg {
  width: 16px;
  height: 16px;
}

.kvkk-hero .legal-badge {
  min-height: 40px;
  padding: 0 18px;
  border-color: rgba(120, 115, 255, 0.34);
  background: rgba(23, 23, 55, 0.72);
  color: #8c98ff;
  font-size: 15px;
  font-weight: 650;
  box-shadow: 0 0 0 1px rgba(120, 115, 255, 0.08) inset;
}

.kvkk-hero h1 {
  margin-top: 26px;
  font-size: clamp(44px, 7vw, 64px);
  line-height: 0.98;
  font-weight: 900;
  color: #ffffff;
}

.kvkk-hero .legal-subtitle {
  margin-top: 16px;
  color: #b7c6db;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 450;
}

.kvkk-hero .updated {
  margin-top: 12px;
  color: #7f8ba2;
  font-size: 14px;
  font-weight: 450;
}

h1 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 56px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.legal-subtitle,
.updated {
  color: #9fb0c8;
}

.legal-subtitle {
  margin: 14px 0 0;
  font-size: 17px;
}

.updated {
  margin: 12px 0 0;
  font-size: 14px;
}

.notice {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  margin-bottom: 32px;
  padding: 24px;
  border: 1px solid rgba(46, 231, 125, 0.35);
  border-radius: 14px;
  background: rgba(3, 45, 22, 0.72);
}

.notice-icon,
.section-number,
.mini-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
}

.notice-icon {
  width: 48px;
  height: 48px;
  background: rgba(46, 231, 125, 0.16);
  color: var(--green);
}

.notice h2,
.section h2,
.contact-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.notice h2 {
  color: var(--green);
  font-size: 20px;
}

.notice p,
.section p,
.contact-card p,
.note-box p {
  margin: 12px 0 0;
  color: #eaf1ff;
  font-size: 16px;
  line-height: 1.65;
}

.notice strong,
.section strong {
  color: #ffffff;
}

.legal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.86);
}

.section {
  padding: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section:last-child {
  border-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.section-number {
  width: 40px;
  height: 40px;
  background: rgba(111, 99, 255, 0.22);
  color: #a7adff;
  font-size: 17px;
  font-weight: 900;
}

.data-box,
.soft-box,
.contact-card,
.note-box {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.data-box {
  margin-top: 18px;
  padding: 20px 24px;
}

.data-list,
.check-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-list li {
  position: relative;
  padding: 0 0 18px 28px;
}

.data-list li:last-child {
  padding-bottom: 0;
}

.data-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.data-list strong,
.soft-box strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.data-list span,
.soft-box span {
  display: block;
  margin-top: 6px;
  color: #a9bdd7;
  line-height: 1.5;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  color: #edf4ff;
  line-height: 1.5;
}

.check {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green);
  color: #04110a;
  font-size: 12px;
  font-weight: 900;
}

.security-grid,
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.soft-box {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.mini-icon {
  width: 40px;
  height: 40px;
  background: rgba(240, 91, 184, 0.2);
  color: #ff7ccc;
  font-weight: 900;
}

.bullet-list li {
  position: relative;
  margin-top: 14px;
  padding-left: 24px;
  color: #f0f6ff;
  line-height: 1.55;
}

.contact-card {
  margin-top: 22px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(240, 91, 184, 0.12), rgba(111, 99, 255, 0.08)),
    rgba(25, 14, 21, 0.86);
}

.primary-link {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #6257ff, #5a55f5);
  color: #ffffff;
  font-weight: 850;
}

.note-box {
  margin-top: 32px;
  padding: 18px 22px;
  border-color: rgba(111, 99, 255, 0.25);
  background: rgba(10, 10, 24, 0.86);
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  padding: 32px 0 0;
  color: #a9bdd7;
  font-size: 14px;
}

.legal-footer a:hover {
  color: #ffffff;
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-links {
    display: none;
  }

  .notice,
  .security-grid,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 24px 18px;
  }
}

body.kvkk-page {
  background: #050505;
  color: #ffffff;
}

body.kvkk-page::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.86));
}

.report-button {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 24px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(19, 19, 19, 0.9);
  color: #f4f7fc;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.report-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(167, 139, 250, 0.34);
  border-radius: 12px;
  background: rgba(109, 59, 231, 0.18);
  color: #a78bfa;
}

.report-icon svg {
  width: 19px;
  height: 19px;
}

.kvkk-shell {
  width: min(904px, 100%);
  margin: 0 auto;
  padding: 8px 0 28px;
}

.kvkk-hero-block {
  padding: 58px 0 42px;
  text-align: center;
}

.kvkk-hero-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(111, 99, 255, 0.38);
  border-radius: 999px;
  background: rgba(20, 20, 46, 0.92);
  color: #8f98ff;
  font-size: 14px;
  font-weight: 650;
}

.kvkk-hero-badge svg {
  width: 16px;
  height: 16px;
}

.kvkk-hero-block h1 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.kvkk-hero-block p {
  margin: 16px 0 0;
  color: #b7c6db;
  font-size: 16px;
  line-height: 1.35;
}

.kvkk-hero-block > span:last-child {
  display: block;
  margin-top: 10px;
  color: #71809b;
  font-size: 14px;
}

.kvkk-notice {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 138px;
  padding: 28px 24px;
  border: 1px solid rgba(30, 177, 90, 0.65);
  border-radius: 15px;
  background: rgba(0, 35, 16, 0.74);
}

.kvkk-notice-icon {
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(20, 153, 76, 0.38);
  color: #2ee77d;
}

.kvkk-notice-icon svg {
  width: 24px;
  height: 24px;
}

.kvkk-notice h1 {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: #2ee77d;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.kvkk-notice h1 span {
  font-size: 17px;
}

.kvkk-notice p {
  margin: 10px 0 0;
  color: #f4f8ff;
  font-size: 16px;
  line-height: 1.62;
}

.kvkk-notice strong,
.kvkk-section strong {
  color: #ffffff;
  font-weight: 700;
}

.kvkk-card {
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px 15px 0 0;
  background: #090909;
}

.kvkk-section {
  padding: 32px 32px 31px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.kvkk-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 21px;
}

.kvkk-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #1b1a46;
  color: #8690ff;
  font-size: 17px;
  font-weight: 700;
}

.kvkk-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.kvkk-section p {
  margin: 0;
  color: #edf4ff;
  font-size: 16px;
  line-height: 1.64;
}

.kvkk-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.kvkk-soft-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 7px;
  background: #171717;
  color: #f5f8ff;
  font-size: 14px;
  font-weight: 500;
}

.kvkk-check {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #8fa0ff;
  color: #11133a;
  font-size: 11px;
  font-weight: 800;
}

.kvkk-data-list {
  display: grid;
  gap: 16px;
}

.kvkk-data-item {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 10px;
  background: #171717;
}

.kvkk-data-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
}

.kvkk-data-icon svg {
  width: 20px;
  height: 20px;
}

.kvkk-data-icon.blue {
  background: rgba(95, 102, 214, 0.32);
  color: #8794ff;
}

.kvkk-data-icon.purple {
  background: rgba(139, 69, 177, 0.34);
  color: #b077e8;
}

.kvkk-data-icon.pink {
  background: rgba(184, 52, 117, 0.34);
  color: #e05caa;
}

.kvkk-data-icon.green {
  background: rgba(39, 152, 89, 0.28);
  color: #42e084;
}

.kvkk-data-item strong,
.kvkk-transfer-card strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

.kvkk-data-item div span,
.kvkk-transfer-card span {
  display: block;
  margin-top: 6px;
  color: #adc3dd;
  font-size: 14px;
  line-height: 1.45;
}

.kvkk-bullet-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.kvkk-bullet-list li {
  position: relative;
  padding-left: 22px;
  color: #f1f6ff;
  font-size: 16px;
  line-height: 1.45;
}

.kvkk-bullet-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8794ff;
}

.kvkk-transfer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.kvkk-transfer-card {
  min-height: 80px;
  padding: 18px 16px;
  border-radius: 9px;
  background: #171717;
}

.kvkk-contact-section {
  background:
    linear-gradient(115deg, rgba(37, 36, 83, 0.42), rgba(31, 17, 42, 0.62)),
    #11101a;
}

.kvkk-contact-button {
  width: fit-content;
  min-width: 325px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 26px;
  padding: 0 24px;
  border-radius: 11px;
  background: #5865f2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.kvkk-contact-button svg {
  width: 22px;
  height: 22px;
}

.kvkk-contact-button span {
  margin-left: 6px;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.kvkk-note {
  margin-top: 32px;
  padding: 24px 48px;
  border: 1px solid rgba(90, 93, 187, 0.38);
  border-radius: 9px;
  background: #05060d;
}

.kvkk-note p {
  margin: 0;
  color: #b9cde5;
  font-size: 14px;
  line-height: 1.55;
}

.kvkk-note strong {
  color: #ffffff;
}

.kvkk-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 32px;
  color: #9db8d4;
  font-size: 14px;
}

.kvkk-footer span {
  color: #536177;
}

.kvkk-footer a:hover {
  color: #ffffff;
}

.legal-link-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 32px 0 0;
}

.legal-link-footer a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(111, 99, 255, 0.2);
  border-radius: 999px;
  background: rgba(15, 15, 24, 0.74);
  color: #a9bdd7;
  font-size: 13px;
  font-weight: 500;
}

.legal-link-footer a:hover {
  border-color: rgba(143, 152, 255, 0.42);
  color: #ffffff;
  background: rgba(25, 25, 44, 0.86);
}

.legal-link-footer svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #8f98ff;
}

.side-ad {
  position: absolute;
  top: 208px;
  z-index: 2;
  width: 160px;
  height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.62);
  overflow: hidden;
}

.side-ad.left {
  left: max(24px, calc((100vw - 980px) / 2 - 240px));
}

.side-ad.right {
  right: max(24px, calc((100vw - 980px) / 2 - 240px));
}

.side-ad-unit {
  display: inline-block;
  width: 160px;
  height: 600px;
}

.side-ad::before {
  content: "Reklam";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #596273;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.side-ad .adsbygoogle {
  position: relative;
  z-index: 1;
}

.side-ad .adsbygoogle[data-ad-status="filled"] {
  background: transparent;
}

.side-ad .adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}

@media (max-width: 1360px) {
  .side-ad {
    display: none;
  }
}

@media (max-width: 760px) {
  .kvkk-shell {
    width: 100%;
    padding: 8px 10px 28px;
  }

  .kvkk-notice,
  .kvkk-purpose-grid,
  .kvkk-transfer-grid {
    grid-template-columns: 1fr;
  }

  .kvkk-notice {
    padding: 22px 18px;
  }

  .kvkk-section {
    padding: 26px 18px;
  }

  .kvkk-hero-block {
    padding: 40px 0 30px;
  }

  .kvkk-heading {
    align-items: flex-start;
  }

  .kvkk-contact-button {
    width: 100%;
    min-width: 0;
  }

  .kvkk-note {
    padding: 20px 18px;
  }

  .kvkk-footer {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .legal-link-footer {
    justify-content: flex-start;
  }

  .report-button {
    right: 18px;
    bottom: 18px;
    min-height: 54px;
    padding: 0 18px 0 14px;
    border-radius: 15px;
    font-size: 14px;
  }
}
