:root {
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-border-strong: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  --glass-shadow-sm: 0 4px 16px 0 rgba(0, 0, 0, 0.18);
  --primary: #60a5fa;
  --primary-light: #93c5fd;
  --primary-dark: #3b82f6;
  --accent: #c084fc;
  --accent-2: #38bdf8;
  --text: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --radius: 20px;
  --radius-sm: 14px;
  --max-width: 1280px;
  --sidebar-width: 320px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 35%, #312e81 70%, #0f172a 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(96, 165, 250, 0.22) 0%, transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(192, 132, 252, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(56, 189, 248, 0.18) 0%, transparent 35%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(147, 197, 253, 0.5);
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  background: var(--glass-bg-hover);
  color: var(--text);
  text-shadow: none;
}

.header-search {
  display: flex;
  gap: 10px;
}

.header-search input,
.hero-search input,
input[type="text"],
input[type="email"],
textarea,
select {
  padding: 12px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.header-search input::placeholder,
.hero-search input::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

.header-search input:focus,
.hero-search input:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
  background: var(--glass-bg-hover);
}

.header-search button,
.hero-search button,
.btn,
button[type="submit"] {
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
  transition: all 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover,
.btn:hover,
button[type="submit"]:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(59, 130, 246, 0.5);
}

.btn-primary {
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
  transition: all 0.2s ease;
}

.btn-secondary {
  padding: 12px 22px;
  background: var(--glass-bg);
  color: var(--text);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  box-shadow: var(--glass-shadow-sm);
}

.btn--success {
  background: linear-gradient(135deg, var(--success), #059669);
  box-shadow: 0 4px 15px rgba(52, 211, 153, 0.35);
}

.btn--danger {
  background: linear-gradient(135deg, var(--danger), #dc2626);
  box-shadow: 0 4px 15px rgba(248, 113, 113, 0.35);
}

.inline-form {
  display: inline-block;
  margin-right: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.page-link {
  padding: 10px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
}

.page-link:hover {
  background: var(--glass-bg-hover);
  color: #fff;
}

.page-info {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 12px;
  margin-bottom: 0;
}

.hero {
  padding: 64px 20px 48px;
  text-align: center;
}

.hero--small,
.hero--compact {
  padding: 40px 20px 32px;
}

.hero--small h1,
.hero--compact h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #fff, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
}

.search-error {
  color: var(--danger);
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-top: 16px;
}

.hero-search {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-search input {
  min-width: 300px;
  font-size: 1.05rem;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  gap: 28px;
  padding-top: 24px;
  padding-bottom: 56px;
  align-items: start;
}

.page-grid--three {
  grid-template-columns: 160px minmax(0, 1fr) var(--sidebar-width);
}

.left-ad-column {
  position: sticky;
  top: 96px;
  width: 160px;
}

.main-column {
  min-width: 0;
}

.sidebar-column {
  width: var(--sidebar-width);
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 28px;
  margin-bottom: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card h2 {
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.card--small {
  padding: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.legal-content {
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-content h2,
.legal-content h3 {
  color: var(--text);
  margin-top: 24px;
}

.legal-meta {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
}

.field-error {
  display: block;
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 6px;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.form-group--checkbox label {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.phone-list,
.guide-list,
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phone-list li,
.guide-list li,
.link-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phone-list li:last-child,
.guide-list li:last-child,
.link-list li:last-child {
  border-bottom: none;
}

.phone-list a,
.guide-list a {
  font-weight: 500;
}

.meta {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.ad-slot {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--glass-shadow-sm);
}

.ad-slot__content {
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ad-slot__content:empty::before {
  content: 'Reklam yükleniyor…';
  color: var(--text-dim);
  font-size: 0.8rem;
  padding: 12px;
}

.ad-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-dim);
  padding: 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
}

.ad-slot--header_leaderboard {
  width: 728px;
  max-width: 100%;
  margin: 24px auto;
}

.ad-slot--sidebar_tall {
  width: 160px;
  margin-left: auto;
  margin-right: auto;
}

.ad-slot--sidebar_box,
.ad-slot--incontent_1,
.ad-slot--incontent_2 {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.ad-slot--mobile_sticky {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  margin: 0;
  z-index: 200;
  display: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ad-close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.smartlink-cta {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 12px;
  box-shadow: 0 4px 15px rgba(192, 132, 252, 0.35);
}

.smartlink-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(192, 132, 252, 0.5);
  color: #fff;
}

.phone-card {
  text-align: center;
  padding: 36px 28px;
}

.phone-card .label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  border: 1px solid var(--glass-border-strong);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: var(--glass-bg);
}

.phone-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 10px;
  background: linear-gradient(90deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phone-meta {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.phone-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.stat-pill {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-box {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(56, 189, 248, 0.12));
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 22px 0;
  color: var(--text-muted);
}

.content-section h2 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--text);
}

.content-section p {
  color: var(--text-muted);
}

.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 14px;
}

.comment-header,
.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.comment-meta time {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-left: auto;
}

.comment-author {
  font-weight: 700;
  color: var(--text);
}

.comment-date {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.comment-category {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.2);
  color: var(--primary-light);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.comment-text {
  color: var(--text-muted);
  margin: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.alert {
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
}

.alert--success {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
  color: #d1fae5;
}

.alert--warning {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.3);
  color: #fef3c7;
}

.alert--danger {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.3);
  color: #fee2e2;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.risk-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.risk-badge--high {
  background: rgba(248, 113, 113, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.risk-badge--medium {
  background: rgba(251, 191, 36, 0.2);
  color: #fde047;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.risk-badge--low {
  background: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.risk-badge--unknown {
  background: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--text-dim);
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-card h2 {
  font-size: 1.1rem;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.guide-card h2 a {
  color: var(--text);
}

.guide-card h2 a:hover {
  color: var(--primary-light);
}

.guide-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.guide-content {
  color: var(--text-muted);
  line-height: 1.8;
}

.guide-content h2,
.guide-content h3 {
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 12px;
}

.guide-content p {
  margin-bottom: 16px;
}

.guide-content ul,
.guide-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.guide-content li {
  margin-bottom: 8px;
}

.site-footer {
  margin-top: auto;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--glass-border);
  padding: 28px 20px;
  text-align: center;
  color: var(--text-dim);
}

.site-footer nav {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border-strong);
  padding: 20px 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.consent-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consent-banner__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.consent-banner__content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.consent-banner__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.consent-banner__details[hidden] {
  display: none !important;
}

.consent-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  cursor: pointer;
}

.consent-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.consent-option input:disabled {
  opacity: 0.6;
}

.consent-banner .btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.consent-banner .btn:hover {
  transform: translateY(-1px);
}

.consent-banner .btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.consent-banner .btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border-strong);
}

.consent-banner .btn--ghost {
  background: transparent;
  color: var(--text-dim);
  text-decoration: underline;
}

.consent-banner[hidden] {
  display: none !important;
}

.moderation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.moderation-table th,
.moderation-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.moderation-table th {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 1280px) {
  .page-grid--three {
    grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  }

  .left-ad-column {
    display: none;
  }
}

@media (max-width: 1024px) {
  .page-grid,
  .page-grid--three {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    width: 100%;
    display: none;
  }

  .ad-slot--header_leaderboard {
    display: none;
  }

  .ad-slot--mobile_sticky {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    font-size: 1.15rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding: 4px;
  }

  .main-nav a {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .header-search {
    flex: 1;
    justify-content: flex-end;
  }

  .header-search input {
    min-width: 120px;
    width: 100%;
  }

  .hero {
    padding: 40px 16px 32px;
  }

  .hero-search input {
    min-width: 240px;
    width: 100%;
  }

  .card {
    padding: 20px;
  }
}
