/* ─── GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* ─── CSS DEĞİŞKENLERİ ─────────────────────────────────── */
:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #1a1a1a;
  --bg-hover:      #222222;
  --text-primary:  #f5f5f7;
  --text-secondary:#a1a1a6;
  --text-muted:    #6e6e73;
  --accent:        #2997ff;
  --accent-hover:  #0077ed;
  --accent-glow:   rgba(41, 151, 255, 0.15);
  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(255,255,255,0.16);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow:        0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.6);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo:     'Cinzel', 'Trajan Pro', serif;
}

.hero h1, .font-trajan { font-family: var(--font-logo); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background-color: var(--bg-primary); color: var(--text-primary); line-height: 1.6; min-height: 100vh; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
p  { color: var(--text-secondary); line-height: 1.8; }

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0 16px;
  height: 52px;
  width: fit-content;
  max-width: calc(100% - 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.navbar-brand {
  font-family: var(--font-logo);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand span { color: var(--accent); }

.navbar-links { display: flex; align-items: center; gap: 8px; list-style: none; }

.navbar-links a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-links a:hover,
.navbar-links a.active { color: var(--text-primary); background: var(--bg-hover); }

.navbar-cta {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 500 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
}
.navbar-cta:hover { background: var(--accent-hover) !important; }

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ─── LAYOUT ────────────────────────────────────────────── */
.page-wrapper { padding-top: 64px; }
.container    { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-eyebrow { font-size: 0.85rem; font-weight: 500; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.hero h1      { margin-bottom: 24px; max-width: 800px; }
.hero p       { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── BUTONLAR ──────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-md); font-size: 1rem; font-weight: 500; font-family: var(--font); cursor: pointer; border: none; transition: var(--transition); text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(41, 151, 255, 0.3); }
.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg-hover); border-color: var(--border-hover); color: var(--text-primary); transform: translateY(-1px); }

/* ─── KARTLAR ───────────────────────────────────────────── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }

/* ─── SECTION BAŞLIK ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { margin-top: 16px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── YARDIMCI SINIFLAR ─────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ─── EKİP KARTI HOVER ──────────────────────────────────── */
.ekip-karti { transition: var(--transition); cursor: pointer; overflow: visible !important; }
.ekip-karti:hover { transform: translateY(-8px) scale(1.03); border-color: var(--accent); box-shadow: 0 20px 60px rgba(41, 151, 255, 0.25); z-index: 10; position: relative; }
.ekip-resim { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 2px solid var(--accent); flex-shrink: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.ekip-karti:hover .ekip-resim { width: 190px; height: 190px; }

/* ─── KİŞİ DETAY SAYFASI ────────────────────────────────── */
.kisi-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

/* ─── KATEGORİ SCROLL ───────────────────────────────────── */
#kategoriScroll::-webkit-scrollbar { display: none; }

/* ─── MOBİL + TABLET (1100px altı hamburger) ────────────── */
@media (max-width: 1100px) {

  .navbar {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    border-radius: var(--radius-lg);
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 999;
  }

  .navbar-links.open { display: flex; }

  .navbar-links li a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    width: 100%;
    display: block;
    text-align: center;
    color: var(--text-secondary);
    white-space: normal;
  }

  .navbar-links li a:hover { background: var(--bg-hover); color: var(--text-primary); }

  .navbar-links li .navbar-cta {
    margin-top: 4px;
    text-align: center;
    display: block;
    border-radius: var(--radius-sm) !important;
  }

  .navbar-toggle { display: flex; }
  .navbar-brand  { font-size: 0.95rem; }

  .navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar-toggle.open span:nth-child(2) { opacity: 0; }
  .navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .ekip-resim { width: 190px !important; height: 190px !important; }
  .ekip-karti:hover { transform: none; }
  .ekip-karti.aktif { border-color: var(--accent); box-shadow: 0 20px 60px rgba(41, 151, 255, 0.25); transform: translateY(-4px); }

  .kisi-grid    { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── OYUNCU KARTI ──────────────────────────────────────── */
.oyuncu-karti:hover img {
  transform: scale(1.05);
}

.oyuncu-karti:hover .oyuncu-overlay {
  opacity: 1 !important;
}

.oyuncu-karti:hover {
  box-shadow: 0 8px 32px rgba(41,151,255,0.3);
}

@media (max-width: 768px) {
  .oyuncu-hero-icerik {
    background: linear-gradient(0deg, rgba(10,15,26,0.95) 0%, rgba(10,15,26,0.6) 60%, transparent 100%) !important;
    padding: 24px 16px !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
}