/* ============================================================
   GTA6TURK — Ana Stil
   Estetik: Vice City neon (pembe/mor/teal) + derin dark +
   iOS tarzı yumuşak gradyan geçişler + premium cam (glass) hissi
   ============================================================ */

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

:root {
  /* Çekirdek renkler */
  --bg-0: #0a0512;          /* en derin arka plan */
  --bg-1: #120a1f;          /* panel arka */
  --bg-2: #1a0f2e;          /* yükseltilmiş yüzey */
  --bg-3: #241640;          /* hover yüzey */

  /* Vice City neon paleti */
  --neon-pink: #ff2e93;
  --neon-magenta: #ff4fd8;
  --neon-purple: #a855f7;
  --neon-blue: #4f8cff;
  --neon-cyan: #34e0ff;
  --neon-teal: #2ee6c0;
  --neon-yellow: #ffd23f;
  --neon-orange: #ff7a3d;

  /* Metin */
  --text-1: #f4ecff;        /* başlık */
  --text-2: #c5b8d9;        /* gövde */
  --text-3: #8a7ba3;        /* soluk */
  --text-4: #5d5175;        /* en soluk */

  /* Gradyanlar (iOS tarzı) */
  --grad-sunset: linear-gradient(135deg, #ff2e93 0%, #a855f7 50%, #4f8cff 100%);
  --grad-vice: linear-gradient(120deg, #ff4fd8 0%, #34e0ff 100%);
  --grad-night: linear-gradient(160deg, #1a0f2e 0%, #0a0512 100%);
  --grad-gold: linear-gradient(135deg, #ffd23f 0%, #ff7a3d 100%);
  --grad-glow: radial-gradient(circle at 50% 0%, rgba(255,46,147,0.18), transparent 60%);

  /* Cam yüzeyler */
  --glass-bg: rgba(26, 15, 46, 0.55);
  --glass-border: rgba(255, 79, 216, 0.14);
  --glass-blur: blur(20px) saturate(140%);

  /* Gölgeler */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-neon: 0 0 30px rgba(255,46,147,0.35);

  /* Ölçü */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1240px;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Atmosferik arka plan dokusu */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(255,46,147,0.10), transparent),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(52,224,255,0.08), transparent),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(168,85,247,0.06), transparent);
  pointer-events: none;
  z-index: 0;
}

/* İnce grain dokusu */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

h1,h2,h3,h4 { font-family: var(--font-display); color: var(--text-1); line-height: 1.15; font-weight: 700; }

/* Seçim rengi */
::selection { background: var(--neon-pink); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--neon-pink), var(--neon-purple)); border-radius: 10px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 5, 18, 0.72);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo .g6 {
  background: var(--grad-vice);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo .turk { color: var(--text-1); }
.logo-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--grad-sunset);
  color: #fff;
  margin-left: 6px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-2);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--text-1); background: var(--bg-2); }
.nav-links a.active {
  color: var(--text-1);
  background: linear-gradient(135deg, rgba(255,46,147,0.18), rgba(168,85,247,0.12));
}

.nav-cta {
  background: var(--grad-sunset);
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  box-shadow: 0 4px 20px rgba(255,46,147,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(255,46,147,0.45); }

.nav-toggle { display: none; background: none; border: none; color: var(--text-1); font-size: 1.6rem; cursor: pointer; }

/* ============================================================
   BUTONLAR (parlama efekti YOK — düz, premium)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--grad-sunset);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-1);
  backdrop-filter: var(--glass-blur);
}
.btn-ghost:hover { background: var(--bg-3); border-color: var(--neon-magenta); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slider {
  position: relative;
  height: 540px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,5,18,0.1) 0%, rgba(10,5,18,0.55) 60%, rgba(10,5,18,0.95) 100%);
}
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  z-index: 2;
}
.slide-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--grad-vice);
  color: #04121a;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.slide-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  max-width: 720px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.slide-caption { color: var(--text-2); margin-top: 10px; font-size: 1.05rem; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  right: 48px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--neon-magenta); width: 32px; border-radius: 6px; }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-bar {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}
.countdown-label { font-family: var(--font-display); font-weight: 700; color: var(--text-1); font-size: 1.1rem; }
.countdown-units { display: flex; gap: 18px; }
.cd-unit { text-align: center; min-width: 64px; }
.cd-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--grad-vice);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.cd-tag { font-size: 0.75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ============================================================
   SECTION
   ============================================================ */
.section { padding: 64px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title .accent {
  width: 6px; height: 32px;
  border-radius: 4px;
  background: var(--grad-sunset);
}
.section-link { color: var(--neon-magenta); font-weight: 600; font-size: 0.95rem; }
.section-link:hover { color: var(--neon-cyan); }

/* ============================================================
   POST GRID & CARDS
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--glass-border);
}
.card-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-2);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  background: rgba(10,5,18,0.6);
  border: 1px solid var(--glass-border);
}
.card-body { padding: 22px; }
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text-1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card:hover .card-title { color: var(--neon-magenta); }
.card-excerpt {
  font-size: 0.92rem;
  color: var(--text-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-4);
}
.card-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-4); }

/* Featured büyük kart */
.card-featured { grid-column: span 2; }
.card-featured .card-media { aspect-ratio: 21/10; }
.card-featured .card-title { font-size: 1.6rem; -webkit-line-clamp: 3; }

/* Breaking rozeti */
.breaking-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--neon-pink);
  color: #fff;
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px;
}
.breaking-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ============================================================
   LEAK TIMELINE (sızıntılar tarih bazlı)
   ============================================================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--neon-magenta), var(--neon-purple), transparent);
}
.tl-item { position: relative; margin-bottom: 28px; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -31px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-0);
  border: 3px solid var(--neon-magenta);
  box-shadow: 0 0 12px rgba(255,79,216,0.5);
}
.tl-card {
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all 0.3s;
}
.tl-card:hover { border-color: var(--glass-border); background: var(--bg-2); }
.tl-date { font-size: 0.8rem; color: var(--neon-magenta); font-weight: 600; margin-bottom: 6px; }
.tl-title { font-size: 1.1rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.reliability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 80px;
  background: var(--grad-night);
  border-top: 1px solid var(--glass-border);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: var(--text-1); margin-bottom: 18px; font-size: 1rem; }
.footer-col a { display: block; color: var(--text-3); padding: 5px 0; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--neon-magenta); }
.footer-about p { color: var(--text-3); font-size: 0.92rem; margin: 14px 0; max-width: 320px; }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-4);
  font-size: 0.85rem;
}
.discord-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #5865F2, #7c3aed);
  color: #fff;
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================================
   PROGRESS BAR (üst sayfa yükleme çizgisi)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--grad-vice);
  z-index: 200;
  width: 0%;
  transition: width 0.1s;
}

/* ============================================================
   ARTICLE / SINGLE
   ============================================================ */
.article-hero { position: relative; height: 460px; border-radius: var(--radius-xl); overflow: hidden; margin-top: 24px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(10,5,18,0.95)); }
.article-hero-content { position: absolute; bottom: 0; padding: 40px; z-index: 2; }
.article-body {
  max-width: 760px;
  margin: 48px auto;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-2);
}
.article-body h2 { margin: 36px 0 16px; font-size: 1.6rem; color: var(--text-1); }
.article-body h3 { margin: 28px 0 12px; font-size: 1.3rem; color: var(--text-1); }
.article-body p { margin-bottom: 20px; }
.article-body a { color: var(--neon-cyan); text-decoration: underline; }
.article-body img { border-radius: var(--radius-md); margin: 24px 0; }
.article-body blockquote {
  border-left: 4px solid var(--neon-magenta);
  padding: 8px 24px;
  margin: 24px 0;
  background: var(--bg-1);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-2);
  font-style: italic;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-3); }
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.5; }

/* ============================================================
   ANIMASYONLAR (sayfa yükleme staggered reveal)
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.reveal:nth-child(1){animation-delay:.05s} .reveal:nth-child(2){animation-delay:.12s}
.reveal:nth-child(3){animation-delay:.19s} .reveal:nth-child(4){animation-delay:.26s}
.reveal:nth-child(5){animation-delay:.33s} .reveal:nth-child(6){animation-delay:.40s}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-1);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-120%);
    transition: transform 0.35s;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-featured { grid-column: span 1; }
  .slider { height: 400px; }
  .slide-content { padding: 28px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .countdown-units { gap: 12px; }
  .cd-unit { min-width: 52px; }
  .cd-num { font-size: 1.8rem; }
}
