:root {
  --bg-dark: #0b0f19;
  --bg-panel: #111827;
  --primary-cyan: #00f3ff;
  --accent-orange: #f59e0b;
  --text-main: #f1f5f9;
  --text-dim: #94a3b8;
  --border-light: rgba(255, 255, 255, 0.05);
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.5px; color: #fff; }
p { color: var(--text-dim); margin-bottom: 16px; font-size: 0.95rem; }
a { color: inherit; }
strong { color: var(--text-main); font-weight: 600; }

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#000; color:#fff; padding:10px 14px;
  z-index:99999; border:1px solid var(--primary-cyan);
}
.skip-link:focus{ left:10px; }

.scanlines {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background:
    linear-gradient(rgba(18,16,16,0) 50%, rgba(0,0,0,0.1) 50%),
    linear-gradient(90deg, rgba(255,0,0,0.03), rgba(0,255,0,0.01), rgba(0,0,255,0.03));
  background-size: 100% 3px, 3px 100%;
  pointer-events: none;
  z-index: 9999;
}

header {
  position: fixed; top: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 5%;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.logo { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: 0.2px; }
.logo span { color: var(--primary-cyan); }

nav ul { display:flex; list-style:none; gap:30px; flex-wrap: wrap; }
nav a { text-decoration:none; color:var(--text-main); font-size:0.85rem; font-weight:600; transition:0.3s; }
nav a:hover { color: var(--primary-cyan); }

main section { padding: 100px 5%; border-bottom: 1px solid var(--border-light); }

.tech-border {
  border: 1px solid var(--primary-cyan);
  padding: 14px 28px;
  display: inline-block;
  color: var(--primary-cyan);
  text-decoration: none;
  font-family: 'Roboto Mono';
  transition: 0.3s;
  position: relative;
  font-weight: bold;
  background: rgba(0, 243, 255, 0.05);
}
.tech-border:hover {
  background: rgba(0, 243, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
  color: #fff;
}

.section-header { margin-bottom: 35px; max-width: 980px; }
.section-tag {
  font-family: 'Roboto Mono';
  color: var(--accent-orange);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
  letter-spacing: 2px;
}
.section-title { font-size: 2.4rem; margin-bottom: 18px; line-height: 1.2; }
.section-desc { font-size: 1.05rem; max-width: 820px; color: var(--text-dim); }

.policy-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  padding: 40px;
  max-width: 980px;
}
.policy-wrap h2 { font-size: 1.2rem; margin: 26px 0 10px; color: #fff; }
.policy-wrap ul { margin: 10px 0 0 18px; color: var(--text-dim); }
.policy-wrap li { margin-bottom: 10px; }

.kvkk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 10px 0 6px;
}
.kvkk-box {
  border-left: 2px solid var(--border-light);
  padding-left: 14px;
}
.kvkk-box:hover { border-left-color: var(--primary-cyan); }

footer {
  background: #05070a;
  padding: 90px 5%;
  border-top: 1px solid var(--border-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}
.contact-info p {
  margin-bottom: 15px;
  font-family: 'Roboto Mono';
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  color: var(--text-dim);
}
.contact-info i { width: 35px; color: var(--primary-cyan); font-size: 1.2rem; }
.contact-info a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
.contact-info a:hover { color: var(--primary-cyan); border-bottom-color: rgba(0,243,255,0.5); }

.footer-links a{
  font-family:'Roboto Mono';
  font-size:0.85rem;
  color: var(--text-dim);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.2);
  margin-right:12px;
}
.footer-links a:hover{ color:#fff; border-bottom-color: rgba(255,255,255,0.5); }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr; }
  .kvkk-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  header { flex-direction: column; gap: 12px; }
  main section { padding: 70px 5%; }
  .section-title { font-size: 2rem; }
  .policy-wrap { padding: 26px; }
}
