@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;700;800;900&display=swap');

:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.22);
  --line-gold: rgba(234, 179, 8, 0.45);
  --text: #f8fafc;
  --muted: #c4d0e0;
  --gold: #eab308;
  --gold-light: #fef08a;
  --crimson: #e11d48;
  --crimson-hover: #be123c;
  --shadow: 0 22px 48px -30px rgba(2, 6, 23, 0.88);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(225, 29, 72, 0.15), rgba(225, 29, 72, 0) 42%),
    radial-gradient(circle at 88% 100%, rgba(234, 179, 8, 0.12), rgba(234, 179, 8, 0) 44%),
    linear-gradient(180deg, #020617 0%, #0b1220 56%, #111827 100%);
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 8%, rgba(225, 29, 72, 0.12), transparent 36%),
    radial-gradient(circle at 84% 92%, rgba(234, 179, 8, 0.1), transparent 40%);
}

::selection {
  background: var(--gold);
  color: #1e293b;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.86);
  border-bottom: 1px solid rgba(234, 179, 8, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px -24px rgba(2, 6, 23, 0.9);
}

.topbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(234, 179, 8, 0.36);
  box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.16);
  background: #0b1220;
}

.brand strong {
  color: var(--gold);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #d1dae8;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.64);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  border-color: rgba(234, 179, 8, 0.52);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  box-shadow: 0 10px 24px -16px rgba(234, 179, 8, 0.5);
}

main {
  padding: 34px 0 64px;
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(20, 32, 51, 0.9), rgba(8, 14, 24, 0.92)),
    var(--bg-card-strong);
  padding: 22px;
  box-shadow: var(--shadow);
  animation: rise-in 0.45s ease both;
}

.hero {
  border-color: rgba(234, 179, 8, 0.24);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(234, 179, 8, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(225, 29, 72, 0.14), transparent 30%),
    linear-gradient(160deg, rgba(19, 31, 51, 0.96), rgba(8, 14, 24, 0.94));
}

.panel {
  margin-top: 14px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -12% -42% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.16), transparent 72%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.hero-copy p {
  max-width: 68ch;
}

.hero-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.kpi-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 14px;
  min-height: 112px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(7, 12, 20, 0.92)),
    rgba(15, 23, 42, 0.88);
  box-shadow: 0 18px 34px -26px rgba(2, 6, 23, 0.9);
}

.kpi-card span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-light);
}

.kpi-card strong {
  display: block;
  margin-top: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.18rem;
  line-height: 1.16;
  color: #f8fbff;
}

.kpi-card p {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #d4e0f2;
}

.intent-panel,
.split-panel {
  position: relative;
  overflow: hidden;
}

.intent-panel::before,
.split-panel::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.12), transparent 72%);
  pointer-events: none;
}

.intent-grid,
.split-grid {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.intent-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.intent-card,
.surface-card {
  display: block;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 15px;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(20, 32, 51, 0.92), rgba(10, 16, 28, 0.96)),
    rgba(15, 23, 42, 0.84);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.intent-card:hover,
.surface-card:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 179, 8, 0.48);
  box-shadow: 0 18px 32px -22px rgba(234, 179, 8, 0.34);
}

.eyebrow-mini {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(234, 179, 8, 0.12);
  color: var(--gold-light);
}

.intent-card strong,
.surface-card strong {
  display: block;
  margin-top: 10px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.28;
  color: #f8fbff;
}

.intent-card p,
.surface-card p {
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.58;
  color: #c7d5e8;
}

.content-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.content-checklist li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #d7e2f1;
  line-height: 1.56;
}

.content-checklist li::before {
  content: '';
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #facc15, #e11d48);
  box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.08);
}

.note-strip {
  margin-top: 14px;
  border: 1px solid rgba(234, 179, 8, 0.22);
  border-radius: 14px;
  padding: 13px 14px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.08), rgba(15, 23, 42, 0.82));
}

.note-strip strong {
  color: #fff7c2;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  margin: 0;
  color: #f8fbff;
}

h1 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: clamp(1.66rem, 2.8vw, 2.6rem);
  line-height: 1.12;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.15vw, 1.55rem);
}

h3 {
  font-size: 1.02rem;
}

p {
  margin: 0;
  line-height: 1.62;
  color: var(--muted);
}

.muted {
  color: #a8b4c7;
}

.meta-row,
.link-grid,
.topic-actions,
.cta-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip,
.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(15, 23, 42, 0.7);
  color: #dce7f8;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.chip:hover,
.outline-link:hover {
  border-color: rgba(234, 179, 8, 0.62);
  color: var(--gold-light);
  background: rgba(234, 179, 8, 0.12);
}

.btn,
.cta-list,
.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 11px;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn,
.danger-btn {
  border: 1px solid rgba(225, 29, 72, 0.62);
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-hover) 100%);
  color: #ffffff;
}

.btn:hover,
.danger-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -14px rgba(225, 29, 72, 0.65);
}

.cta-list {
  border: 1px solid rgba(234, 179, 8, 0.66) !important;
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
  color: #1b1300 !important;
}

.cta-list:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -14px rgba(234, 179, 8, 0.68) !important;
}

.card-grid,
.topic-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.site-card,
.topic-card,
.info-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 32, 51, 0.92), rgba(10, 16, 28, 0.96));
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-card:hover,
.topic-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 179, 8, 0.48);
  box-shadow: 0 16px 30px -20px rgba(234, 179, 8, 0.35);
}

.img-wrap,
.grid-img {
  display: block;
  background: #101a2d;
  min-height: 112px;
}

.site-card img,
.topic-card img,
.grid-img img,
.img-wrap img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  display: block;
  background: #101a2d;
}

.card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-body h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  color: #f4f7ff;
}

.card-body p {
  margin: 0;
  color: #aebbd0;
  font-size: 0.8rem;
}

.blog-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.blog-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 13px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(20, 32, 51, 0.92), rgba(10, 16, 28, 0.96));
}

.blog-card a {
  color: #fef08a;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.list li {
  margin: 7px 0;
  color: #c4d0e0;
  line-height: 1.56;
}

.footer {
  margin-top: 26px;
  border-top: 1px solid rgba(234, 179, 8, 0.12);
  padding: 24px 0 34px;
  color: #d2dcec;
  font-size: 0.84rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(225, 29, 72, 0.18), rgba(225, 29, 72, 0) 34%),
    linear-gradient(180deg, #0b1220, #020617);
}

.footer a {
  color: #f8fbff;
  text-decoration: none;
}

.footer a:hover {
  color: #fef08a;
  text-decoration: underline;
}

.legal-note {
  margin: 8px 0 0;
  line-height: 1.6;
}

.legal-footer .container {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.62);
  padding: 14px 16px;
}

.legal-footer p {
  margin: 0;
  line-height: 1.64;
  color: #e6eefb;
}

.legal-footer p + p {
  margin-top: 8px;
}

.quick-bonus-panel h2 {
  margin-bottom: 8px;
}

.quick-bonus-panel p {
  color: #c4d0e0;
}

.quick-bonus-panel .chip {
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(234, 179, 8, 0.34);
}

.quick-bonus-panel .chip:hover {
  background: rgba(234, 179, 8, 0.18);
}

/* Top legal warning (injected by assets/site-protect.js) */
.legal-gateway-banner {
  margin: 16px auto 0;
  width: min(1200px, 94vw);
  border: 1px solid rgba(225, 29, 72, 0.45);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.55), rgba(15, 23, 42, 0.92));
  box-shadow: 0 16px 34px -24px rgba(225, 29, 72, 0.6);
  padding: 14px 16px;
}

.legal-gateway-banner h2 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fda4af;
}

.legal-gateway-banner p {
  margin: 0;
  font-size: 0.82rem;
  color: #f3f4f6;
}

/* Global overrides for pages with inline styles */
body .topic-card,
body .site-card,
body .info-card {
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  background: linear-gradient(180deg, rgba(20, 32, 51, 0.92), rgba(10, 16, 28, 0.96)) !important;
}

body .topic-card h3,
body .topic-card h3 a {
  color: #f4f7ff !important;
}

body .topic-card p,
body .card-body p {
  color: #aebbd0 !important;
}

body .outline-link,
body .chip {
  border-color: rgba(148, 163, 184, 0.26) !important;
  background: rgba(15, 23, 42, 0.76) !important;
  color: #dce7f8 !important;
}

body .outline-link:hover,
body .chip:hover {
  border-color: rgba(234, 179, 8, 0.58) !important;
  color: var(--gold-light) !important;
  background: rgba(234, 179, 8, 0.12) !important;
}

body .btn {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-hover)) !important;
  border-color: rgba(225, 29, 72, 0.62) !important;
  color: #fff !important;
}

body .cta-list {
  background: linear-gradient(135deg, #eab308, #ca8a04) !important;
  border-color: rgba(234, 179, 8, 0.66) !important;
  color: #1b1300 !important;
}

body .cta-list:hover {
  background: linear-gradient(135deg, #facc15, #ca8a04) !important;
  border-color: rgba(234, 179, 8, 0.82) !important;
  color: #1b1300 !important;
  box-shadow: 0 10px 24px -14px rgba(234, 179, 8, 0.68) !important;
}

body .danger-btn {
  background: linear-gradient(135deg, #e11d48, #be123c) !important;
  border-color: rgba(225, 29, 72, 0.7) !important;
  color: #ffffff !important;
}

/* Kill accidental capture by stale hotel links */
a[href="ucuz-otel-ve-tatil-fiyatlari.php"],
a[href="/ucuz-otel-ve-tatil-fiyatlari.php"],
a[href$="/ucuz-otel-ve-tatil-fiyatlari.php"] {
  pointer-events: none !important;
}

:focus-visible {
  outline: 3px solid rgba(234, 179, 8, 0.38);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .card-grid,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell,
  .split-grid,
  .intent-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: auto;
    padding: 12px 0;
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
    gap: 7px;
    padding-bottom: 2px;
  }

  .hero,
  .panel {
    padding: 16px;
    border-radius: 14px;
  }

  .card-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .btn,
  .cta-list,
  .danger-btn {
    width: 100%;
  }

  .legal-footer .container {
    padding: 12px;
  }

  .legal-gateway-banner {
    margin-top: 12px;
    padding: 12px;
  }
}


html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

p,
a,
li,
h1,
h2,
h3,
h4,
.chip,
.outline-link,
.nav-link,
.btn,
.cta-list,
.danger-btn {
  overflow-wrap: anywhere;
  word-break: break-word;
}
