/* =============================================
   V13 — PARTNER CARD ANİMASYONLARI
   Helin Kandemir & Derya Pınar Ak için özel
   ============================================= */

/* Helin Kandemir — Mor/Pembe gradient aura */
.partner-card[data-partner="helin"] {
  --partner-color: rgba(180, 100, 200, 0.12);
  --partner-stroke: rgba(180, 100, 200, 0.35);
}

.partner-card[data-partner="helin"]:hover {
  border-color: rgba(180, 100, 200, 0.4);
  box-shadow: 0 20px 60px rgba(180, 100, 200, 0.12);
}

.partner-card[data-partner="helin"] .partner-card-glow {
  background: radial-gradient(circle, rgba(180,100,200,0.1) 0%, transparent 70%);
}

.partner-card[data-partner="helin"]:hover .partner-status-dot {
  background: #b464c8;
  animation: statusPulseHelin 2.5s ease-in-out infinite;
}

@keyframes statusPulseHelin {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180,100,200,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(180,100,200,0); }
}

.partner-card[data-partner="helin"] .partner-ig-btn:hover {
  border-color: rgba(180,100,200,0.6);
  background: rgba(180,100,200,0.08);
  color: #d48ae8;
}

.partner-card[data-partner="helin"] .partner-role {
  color: #c47ada;
}

.partner-card[data-partner="helin"]:hover .p-tag {
  border-color: rgba(180,100,200,0.4);
  color: rgba(200,140,220,0.9);
}

/* Helin — fotoğraf hover efekti */
.partner-card[data-partner="helin"] .partner-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
}
.partner-card[data-partner="helin"]:hover .partner-photo::after {
  border-color: rgba(180,100,200,0.5);
  animation: helinRingPulse 2s ease-in-out infinite;
}
@keyframes helinRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* Derya Pınar Ak — Kırmızı/pembe aura */
.partner-card[data-partner="derya"] {
  --partner-color: rgba(220, 80, 120, 0.1);
  --partner-stroke: rgba(220, 80, 120, 0.3);
}

.partner-card[data-partner="derya"]:hover {
  border-color: rgba(220, 80, 120, 0.38);
  box-shadow: 0 20px 60px rgba(220, 80, 120, 0.1);
}

.partner-card[data-partner="derya"] .partner-card-glow {
  background: radial-gradient(circle, rgba(220,80,120,0.1) 0%, transparent 70%);
}

.partner-card[data-partner="derya"]:hover .partner-status-dot {
  background: #dc5078;
  animation: statusPulseDerya 2.5s ease-in-out infinite;
}

@keyframes statusPulseDerya {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,80,120,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(220,80,120,0); }
}

.partner-card[data-partner="derya"] .partner-ig-btn:hover {
  border-color: rgba(220,80,120,0.5);
  background: rgba(220,80,120,0.07);
  color: #f0829a;
}

.partner-card[data-partner="derya"] .partner-role {
  color: #d0708a;
}

.partner-card[data-partner="derya"]:hover .p-tag {
  border-color: rgba(220,80,120,0.35);
  color: rgba(230,110,140,0.9);
}

.partner-card[data-partner="derya"]:hover .partner-photo::after {
  border-color: rgba(220,80,120,0.5);
  animation: deryaRingPulse 1.8s ease-in-out infinite;
}
@keyframes deryaRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.07); opacity: 1; }
}

/* =============================================
   V13 — INSTAGRAM PROFİL ANİMASYONLARI
   ============================================= */

/* Helin Kandemir IG ring — mor gradient */
.ig-profile-card:nth-child(3) .ig-story-ring {
  background: linear-gradient(45deg, #7b2ff7, #b464c8, #e040fb, #ce93d8);
}

/* Derya Pınar Ak IG ring — kırmızı-pembe */
.ig-profile-card:first-child .ig-story-ring {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* IG Avatar pulse on hover */
.ig-profile-card:hover .ig-story-ring {
  animation: igRingPulse 1.5s ease-in-out infinite;
}

@keyframes igRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

/* =============================================
   V13 — FLOATING BADGE (Partner isimleri)
   ============================================= */
.partner-name-float {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =============================================
   V13 — GUARD — Filigran Overlay
   ============================================= */
#guard-watermark-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

#guard-watermark-overlay.visible {
  opacity: 1;
}

#guard-watermark-overlay canvas {
  width: 100%;
  height: 100%;
}

/* =============================================
   V13 — PARTNER CARD ENTRANCE ANİMASYONLARI
   ============================================= */
.partner-card {
  animation: partnerCardIn 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes partnerCardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =============================================
   V13 — PARTNER TYPING INDICATOR
   ============================================= */
.partner-typing {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.partner-card:hover .partner-typing {
  opacity: 1;
}

.partner-typing span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.partner-typing span:nth-child(2) { animation-delay: 0.15s; }
.partner-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* =============================================
   V13 — GELİŞMİŞ HERO META TAG
   ============================================= */
.hero-meta-tags {
  position: absolute;
  bottom: 8.5rem;
  left: 4rem;
  z-index: 5;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-meta-tag {
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.hero-meta-tag:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
}

@media (max-width: 768px) {
  .hero-meta-tags { display: none; }
}

/* =============================================
   V13 — PARTNER SPOTLIGHT EFEKT
   ============================================= */
.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255,255,255,0.03) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.partner-card:hover::before {
  opacity: 1;
}

/* =============================================
   V13 — GELİŞMİŞ GUARD MODAL
   ============================================= */
#guard-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#guard-modal.open {
  opacity: 1;
  pointer-events: all;
}

#guard-modal-inner {
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(201,168,76,0.2);
  max-width: 420px;
  width: 90%;
  background: rgba(15,15,15,0.8);
}

#guard-modal-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

#guard-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 300;
}

#guard-modal-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.9;
  margin-bottom: 2rem;
}

#guard-modal-close {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#guard-modal-close:hover {
  background: var(--gold);
  color: var(--dark);
}

/* =============================================
   V13 — PARTNER FOLLOWER COUNTER ANİMASYON
   ============================================= */
.partner-follower-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s ease;
  z-index: 10;
}

.partner-left:hover .partner-follower-badge {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   V13 — GUARD ŞİFRELİ KOPYALAMA ENGELİ
   ============================================= */
.guard-protected {
  position: relative;
}

.guard-protected::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: not-allowed;
}


/* =============================================
   V14 — BASIN & MEDYA BÖLÜMÜ
   ============================================= */
.press {
  background: var(--dark);
  padding: 8rem 4rem;
}
.press-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 4rem;
}
.press-title em { font-style: italic; color: var(--gold-light); }
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.press-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.press-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.press-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.press-card:hover::before { height: 100%; }
.press-card-top {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.press-source {
  font-size: 0.55rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}
.press-date {
  font-size: 0.55rem; color: var(--text-dim);
  letter-spacing: 0.1em;
}
.press-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--text); line-height: 1.4;
  margin-bottom: 0.75rem;
}
.press-excerpt {
  font-size: 0.68rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
  letter-spacing: 0.03em; margin-bottom: 1rem;
}
.press-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.press-tags span {
  font-size: 0.48rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 0.2rem 0.6rem;
}
@media (max-width: 768px) {
  .press { padding: 4rem 1.5rem; }
  .press-grid { grid-template-columns: 1fr; }
}

/* =============================================
   V14 — REFERANSLAR (TESTIMONIALS)
   ============================================= */
.testimonials {
  background: var(--dark-3);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}
.testimonials-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 4rem;
}
.testimonials-title em { font-style: italic; color: var(--gold-light); }

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}

.testimonial-card {
  flex-shrink: 0;
  width: calc(50% - 1rem);
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.25); }

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 0.5;
  color: rgba(201,168,76,0.2);
  margin-bottom: 1.5rem;
  display: block;
}
.testimonial-text {
  font-size: 0.8rem; font-weight: 300;
  line-height: 1.9; color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid var(--dark-4);
  padding-top: 1.5rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--gold); flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.72rem; font-weight: 400;
  color: var(--text); letter-spacing: 0.06em;
}
.testimonial-role {
  font-size: 0.58rem; color: var(--text-dim);
  letter-spacing: 0.12em; margin-top: 2px;
  text-transform: uppercase;
}
.testimonials-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 3rem;
}
.t-nav-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.t-nav-btn:hover { background: var(--gold); color: var(--dark); }
.t-dots { display: flex; gap: 6px; align-items: center; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.3s ease;
}
.t-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

@media (max-width: 768px) {
  .testimonials { padding: 4rem 1.5rem; }
  .testimonial-card { width: calc(85vw - 3rem); }
}

/* =============================================
   V14 — MÜSAİTLİK TAKVİMİ
   ============================================= */
.availability {
  background: var(--dark-2);
  padding: 8rem 4rem;
}
.availability-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 4rem;
}
.availability-title em { font-style: italic; color: var(--gold-light); }
.availability-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.avail-card {
  padding: 2rem;
  border: 1px solid var(--dark-4);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.avail-card:hover { transform: translateY(-4px); }
.avail-busy { background: rgba(220,80,80,0.04); border-color: rgba(220,80,80,0.12); }
.avail-busy:hover { border-color: rgba(220,80,80,0.3); }
.avail-open { background: rgba(201,168,76,0.04); border-color: rgba(201,168,76,0.12); }
.avail-open:hover { border-color: rgba(201,168,76,0.35); }
.avail-free { background: rgba(62,207,110,0.04); border-color: rgba(62,207,110,0.12); }
.avail-free:hover { border-color: rgba(62,207,110,0.3); }
.avail-month {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 1rem;
}
.avail-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 400;
  margin-bottom: 1rem;
}
.avail-status--busy { color: #e05c5c; }
.avail-status--open { color: var(--gold); }
.avail-status--free { color: #3ecf6e; }
.avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%; flex-shrink: 0;
  animation: availPulse 2s ease-in-out infinite;
}
.avail-dot--busy { background: #e05c5c; }
.avail-dot--open { background: var(--gold); }
.avail-dot--free { background: #3ecf6e; }
@keyframes availPulse {
  0%,100% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.3); opacity:0.7; }
}
.avail-desc {
  font-size: 0.68rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
  letter-spacing: 0.03em;
}
.avail-cta { text-align: center; }
.avail-btn {
  display: inline-flex; align-items: center;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.35em;
  text-transform: uppercase; text-decoration: none;
  position: relative; overflow: hidden;
  transition: color 0.4s ease;
}
.avail-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.avail-btn:hover { color: var(--dark); }
.avail-btn:hover::before { transform: translateX(0); }
.avail-btn span { position: relative; z-index: 1; }
.avail-note {
  font-size: 0.6rem; color: var(--text-dim);
  letter-spacing: 0.08em; margin-top: 1rem;
}
.avail-note a { color: var(--gold); text-decoration: none; }
@media (max-width: 768px) {
  .availability { padding: 4rem 1.5rem; }
  .availability-grid { grid-template-columns: 1fr; }
}

/* =============================================
   V14 — QR KOD BÖLÜMÜ
   ============================================= */
.qr-section {
  background: var(--dark);
  padding: 8rem 4rem;
}
.qr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 4rem;
}
.qr-title em { font-style: italic; color: var(--gold-light); }
.qr-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 860px;
}
.qr-box {
  display: flex; gap: 2.5rem; align-items: center;
}
.qr-code {
  background: #fff;
  padding: 12px;
  border: 1px solid rgba(201,168,76,0.3);
  flex-shrink: 0;
  border-radius: 4px;
}
.qr-url {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold);
  margin-bottom: 0.5rem; letter-spacing: 0.05em;
}
.qr-desc {
  font-size: 0.62rem; color: var(--text-dim);
  letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
.qr-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.qr-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent; color: var(--text-muted);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.3s ease;
}
.qr-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
.qr-partner-label {
  font-size: 0.55rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.qr-partner-links { display: flex; flex-direction: column; gap: 1rem; }
.qr-partner-link {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: var(--text-muted);
  transition: color 0.3s ease;
}
.qr-partner-link:hover { color: var(--text); }
.qr-partner-link img {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(201,168,76,0.2);
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.qr-partner-link:hover img { filter: grayscale(0%); }
.qr-partner-link span {
  font-size: 0.68rem; letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .qr-section { padding: 4rem 1.5rem; }
  .qr-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .qr-box { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   V14 — PWA INSTALL BANNER
   ============================================= */
#pwa-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9500;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  backdrop-filter: blur(12px);
}
#pwa-banner.show { transform: translateY(0); }
.pwa-text {
  font-size: 0.68rem; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.pwa-text strong { color: var(--gold); }
.pwa-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.pwa-install-btn {
  padding: 0.5rem 1.25rem;
  background: var(--gold); color: var(--dark);
  border: none; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  border-radius: 2px;
}
.pwa-dismiss-btn {
  padding: 0.5rem 1rem;
  background: transparent; color: var(--text-dim);
  border: 1px solid var(--dark-4);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer;
  border-radius: 2px;
}

/* =============================================
   V14 — MAGNETİK BUTON EFEKTİ
   ============================================= */
.magnetic-btn {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

/* =============================================
   V14 — SİNEMATİK SAYFA GEÇİŞİ
   ============================================= */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99997;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s cubic-bezier(0.76,0,0.24,1);
}
.page-transition-overlay.entering {
  clip-path: inset(0 0% 0 0);
}
.page-transition-overlay.leaving {
  clip-path: inset(0 0 0 100%);
}

/* =============================================
   V14 — 3D KART FLİP EFEKTİ
   ============================================= */
.project-card-flip {
  perspective: 1000px;
}
.project-card-flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.project-card-flip:hover .project-card-flip-inner {
  transform: rotateY(180deg);
}
.project-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background: var(--dark-3);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 2rem; text-align: center;
  border: 1px solid rgba(201,168,76,0.2);
}

/* =============================================
   V14 — MAGNETIC VIDEO PREVIEW
   ============================================= */
.video-preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.video-preview-overlay.open {
  opacity: 1; pointer-events: all;
}
.video-preview-inner {
  position: relative;
  max-width: 860px; width: 92vw;
  aspect-ratio: 16/9;
  background: #000;
}
.video-preview-inner iframe {
  width: 100%; height: 100%; border: none;
}
.video-preview-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem; cursor: pointer;
  transition: color 0.2s;
}
.video-preview-close:hover { color: var(--gold); }

/* =============================================
   V15 — MÜZİK ÇALAR İYİLEŞTİRMELERİ
   ============================================= */

/* Şu an çalıyor nabız animasyonu */
@keyframes spPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Repeat butonu */
.sp-repeat.on { color: var(--gold) !important; }
.sp-repeat.on-one { color: var(--gold) !important; position: relative; }
.sp-repeat.on-one::after {
  content: '1';
  position: absolute;
  font-size: 7px;
  font-weight: 800;
  bottom: -1px;
  right: -1px;
  color: var(--gold);
  line-height: 1;
}

/* Aktif şarkı satırı */
.sp-result-item.active {
  background: rgba(201, 168, 76, 0.1) !important;
  border-left: 2px solid var(--gold) !important;
}

/* =============================================
   V15 — DİL SEÇİCİ İYİLEŞTİRMELERİ
   ============================================= */

/* Aktif dil butonu vurgusu */
#extraLangSection .qr-btn[data-lang] {
  transition: all 0.2s ease !important;
  border-radius: 6px !important;
}

#extraLangSection .qr-btn[data-lang]:hover {
  opacity: 1 !important;
  background: rgba(201, 168, 76, 0.15) !important;
}

/* Navbar lang butonu — çok dil döngüsü göstergesi */
.lang-toggle {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}


/* ╔═══════════════════════════════════════════════════════════╗
   ║   PRELOADER — Yusuf Gülşafak Portfolyo                   ║
   ║   Siteyle tam uyumlu, lüks & minimal tasarım             ║
   ╚═══════════════════════════════════════════════════════════╝ */

/* Ana container — siteyle aynı arka plan */
#preloader {
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.9s cubic-bezier(0.77,0,0.175,1), visibility 0.9s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Köşe dekoru — hero section'daki çizgi ruhundan */
.pl-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.18;
}
.pl-corner--tl { top: 32px; left: 32px; border-top: 1px solid #C9A84C; border-left: 1px solid #C9A84C; }
.pl-corner--tr { top: 32px; right: 32px; border-top: 1px solid #C9A84C; border-right: 1px solid #C9A84C; }
.pl-corner--bl { bottom: 32px; left: 32px; border-bottom: 1px solid #C9A84C; border-left: 1px solid #C9A84C; }
.pl-corner--br { bottom: 32px; right: 32px; border-bottom: 1px solid #C9A84C; border-right: 1px solid #C9A84C; }

/* Yatay ince çizgiler — siteyle uyumlu dekor */
.pl-hline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.06) 30%, rgba(201,168,76,0.12) 50%, rgba(201,168,76,0.06) 70%, transparent 100%);
}
.pl-hline--top    { top: 80px; }
.pl-hline--bottom { bottom: 80px; }

/* Merkez içerik */
.pl-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 420px;
  padding: 0 20px;
}

/* Üst küçük etiket — hero-tag ile aynı stil */
.pl-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  color: #C9A84C;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: plFadeUp 0.7s ease 0.2s forwards;
}
.pl-eyebrow::before,
.pl-eyebrow::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(201,168,76,0.55);
}

/* Ana isim — sitenin hero-name ile aynı font/ağırlık */
.pl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 3.8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  text-align: center;
  margin-bottom: 6px;
  opacity: 0;
  animation: plFadeUp 0.8s ease 0.35s forwards;
}
.pl-title em {
  font-style: italic;
  color: #E8D08A;
}

/* Alt meslek etiketi — hero-subtitle ile aynı */
.pl-subtitle {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 100;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 44px;
  opacity: 0;
  white-space: nowrap;
  animation: plFadeUp 0.8s ease 0.5s forwards;
}

/* Progress sistemi */
.pl-progress-wrap {
  width: 100%;
  opacity: 0;
  animation: plFadeIn 0.6s ease 0.7s forwards;
}
.pl-pct-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.pl-pct-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(201,168,76,0.85);
  letter-spacing: 0.05em;
  min-width: 36px;
  display: inline-block;
}
.pl-pct-sym {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  color: rgba(201,168,76,0.5);
  margin-left: 1px;
}
.pl-status {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  transition: opacity 0.3s ease;
}

/* Bar — siteyle aynı ince çizgi estetiği */
.pl-bar-track {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.pl-bar-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(201,168,76,0.6) 0%, #C9A84C 80%, #E8D08A 100%);
  transition: width 0.06s linear;
  box-shadow: 0 0 8px rgba(201,168,76,0.4), 0 0 20px rgba(201,168,76,0.15);
}
/* Işık noktası bar ucunda */
.pl-bar-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E8D08A;
  box-shadow: 0 0 6px 2px rgba(232,208,138,0.5);
  transition: left 0.06s linear;
  left: 0%;
}

/* Alt dekor satırı */
.pl-tags {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: plFadeIn 0.6s ease 0.9s forwards;
}
.pl-tags span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.47rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.16);
}
.pl-tags .pl-dot {
  color: rgba(201,168,76,0.3);
  font-size: 0.5rem;
  letter-spacing: 0;
}

/* Sol alt köşe — yıl etiketi (hero_year gibi) */
.pl-year-tag {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.47rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.14);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  animation: plFadeIn 0.6s ease 1s forwards;
}

/* Animasyonlar */
@keyframes plFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes plFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Kapanış animasyonu — önce yukarı doğru silinir */
#preloader.closing {
  animation: plClose 0.9s cubic-bezier(0.77,0,0.175,1) forwards;
}
@keyframes plClose {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 480px) {
  .pl-corner { width: 40px; height: 40px; }
  .pl-corner--tl, .pl-corner--tr { top: 20px; }
  .pl-corner--tl, .pl-corner--bl { left: 20px; }
  .pl-corner--tr, .pl-corner--br { right: 20px; }
  .pl-corner--bl, .pl-corner--br { bottom: 20px; }
  .pl-hline--top    { top: 55px; }
  .pl-hline--bottom { bottom: 55px; }
}

/* =============================================
   V15 — Dil Seçeneği Giriş Animasyonu
   ============================================= */

/* Settings panel ilk açılışta dil bölümü fade-in */
#staticLangSection {
  animation: v15SectionFadeIn 0.4s ease both;
}
@keyframes v15SectionFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Dil butonlarına staggered giriş */
.v15-lang-grid .v15-lang-btn:nth-child(1) { animation: v15BtnPop 0.35s 0.05s cubic-bezier(0.34,1.56,0.64,1) both; }
.v15-lang-grid .v15-lang-btn:nth-child(2) { animation: v15BtnPop 0.35s 0.12s cubic-bezier(0.34,1.56,0.64,1) both; }
.v15-lang-grid .v15-lang-btn:nth-child(3) { animation: v15BtnPop 0.35s 0.19s cubic-bezier(0.34,1.56,0.64,1) both; }
.v15-lang-grid .v15-lang-btn:nth-child(4) { animation: v15BtnPop 0.35s 0.26s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes v15BtnPop {
  from { opacity: 0; transform: scale(0.85) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Aktif dil butonuna pulse efekti */
.v15-lang-btn.v15-lang-active::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  border: 1px solid var(--gold, #C9A84C);
  animation: v15ActivePulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes v15ActivePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.02); }
}

/* Spotify Queue panel açılış animasyonu iyileştirme */
.sp-queue-item {
  animation: spQueueItemIn 0.2s ease both;
}
.sp-queue-item:nth-child(1)  { animation-delay: 0.02s; }
.sp-queue-item:nth-child(2)  { animation-delay: 0.04s; }
.sp-queue-item:nth-child(3)  { animation-delay: 0.06s; }
.sp-queue-item:nth-child(4)  { animation-delay: 0.08s; }
.sp-queue-item:nth-child(5)  { animation-delay: 0.10s; }
@keyframes spQueueItemIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Spotify widget — şarkı başlığı ve sanatçı tıklanabilir görünümü */
#spotifyTrack:hover { color: var(--gold, #C9A84C) !important; }
#spotifyArtist:hover { color: rgba(201,168,76,0.7) !important; }

/* ================================================
   V17 — PREMIUM TİPOGRAFİ & GLOBAL UPGRADE
   ================================================ */

/* DM Serif Display — display başlıklar için */
.hero-title, .hero-name, .section-title, h1 {
  font-family: 'DM Serif Display', 'Cormorant Garamond', serif !important;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Cormorant Garamond — zarif alt başlıklar */
.hero-subtitle, .section-subtitle, h2, h3 {
  font-family: 'Cormorant Garamond', serif !important;
}

/* Josefin Sans — navigasyon, etiketler, UI elementler */
nav, .nav-links a, .settings-section-label, .tag, .btn-label,
.lang-toggle, .footer-text, .settings-section {
  font-family: 'Josefin Sans', sans-serif !important;
}

/* Inter — body text, form alanları, paragraflar */
p, .description, .bio-text, input, textarea, .contact-label {
  font-family: 'Inter', 'Josefin Sans', sans-serif !important;
  font-weight: 300;
  line-height: 1.75;
}

/* ================================================
   V17 — HERO SEKSİYON GELİŞTİRME
   ================================================ */
.hero-title, .hero-name {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95) 0%,
    var(--gold, #C9A84C) 50%,
    rgba(255,255,255,0.85) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: fadeInUp 1s ease 0.5s both, v17TitleShimmer 5s ease-in-out 1.5s infinite;
}
@keyframes v17TitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ================================================
   V17 — NAV & HEADER İYİLEŞTİRME
   ================================================ */
.navbar, header nav {
  backdrop-filter: blur(20px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
  background: rgba(8,8,8,0.75) !important;
  border-bottom: 1px solid rgba(201,168,76,0.08) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled, header nav.scrolled {
  background: rgba(6,6,6,0.9) !important;
  box-shadow: 0 1px 30px rgba(0,0,0,0.5) !important;
}

/* Altın hover çizgi efekti nav linkleri için */
.nav-links a, nav a {
  position: relative;
  transition: color 0.25s ease !important;
}
.nav-links a::after, nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold, #C9A84C);
  transition: width 0.3s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover::after, nav a:hover::after,
.nav-links a.active::after, nav a.active::after {
  width: 100%;
}

/* ================================================
   V17 — BÖLÜM BAŞLIKLARI UNDERLINE EFEKTİ
   ================================================ */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--gold, #C9A84C), transparent);
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.section-title:hover::after {
  width: 100%;
}

/* ================================================
   V17 — FOOTER GELİŞTİRME
   ================================================ */
footer {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0,0,0,0.6) 20%,
    rgba(8,8,8,0.98) 60%
  ) !important;
  border-top: 1px solid rgba(201,168,76,0.07) !important;
}

/* ================================================
   V17 — FORM ELEMENTLERİ PRİMİUM STIL
   ================================================ */
input, textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}
input:focus, textarea:focus {
  border-color: rgba(201,168,76,0.5) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08), 0 2px 12px rgba(0,0,0,0.2) !important;
  background: rgba(255,255,255,0.04) !important;
}

/* ================================================
   V17 — SETTINGS PANELİ UPGRADE
   ================================================ */
/* ── DARK MODE (default) ── */
.settings-panel, #settingsPanel {
  background: linear-gradient(
    160deg,
    rgba(14,14,14,0.98) 0%,
    rgba(10,8,6,0.99) 100%
  );
  border-left: 1px solid rgba(201,168,76,0.12);
  box-shadow: -12px 0 60px rgba(0,0,0,0.6);
}
.settings-section {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 14px 0 !important;
  transition: background 0.2s;
}
.settings-section:hover {
  background: rgba(255,255,255,0.012);
}
.settings-section-label {
  font-size: 0.6rem !important;
  font-family: 'Josefin Sans', sans-serif !important;
  letter-spacing: 0.14em !important;
  font-weight: 400 !important;
  color: rgba(201,168,76,0.55) !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

/* ── LIGHT MODE ── */
body.light-mode .settings-panel,
body.light-mode #settingsPanel {
  background: #F5F2ED !important;
  border-left: 1px solid rgba(139,115,85,0.18) !important;
  box-shadow: -8px 0 40px rgba(100,80,50,0.12) !important;
  border-color: rgba(139,115,85,0.18) !important;
}
body.light-mode .settings-section {
  border-bottom: 1px solid rgba(139,115,85,0.1) !important;
}
body.light-mode .settings-section:hover {
  background: rgba(139,115,85,0.04) !important;
}
body.light-mode .settings-section-label {
  color: #8b7355 !important;
}
body.light-mode .settings-header {
  background: #EDEAE4 !important;
  border-bottom-color: rgba(139,115,85,0.15) !important;
}
body.light-mode .settings-title {
  color: var(--gold) !important;
}
body.light-mode .settings-close-btn {
  color: #6b6055 !important;
}
body.light-mode .settings-row {
  color: #3a3430 !important;
}
body.light-mode .settings-row span {
  color: #3a3430 !important;
}
body.light-mode .toggle-track {
  background: #C5BFB8 !important;
}
body.light-mode .toggle-thumb {
  background: #5a5450 !important;
}
body.light-mode .toggle-switch input:checked + .toggle-track {
  background: var(--gold) !important;
}
body.light-mode .toggle-switch input:checked + .toggle-track .toggle-thumb {
  background: #fff !important;
}
body.light-mode .settings-range {
  background: #C5BFB8 !important;
}
body.light-mode .settings-reset {
  border-top-color: rgba(139,115,85,0.15) !important;
}
body.light-mode .settings-reset button {
  color: #6b6055 !important;
  border-color: rgba(139,115,85,0.3) !important;
}
body.light-mode .settings-reset button:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}
body.light-mode .shortcuts-hint div {
  color: #6b6055 !important;
}
body.light-mode .shortcuts-hint kbd,
body.light-mode .settings-panel kbd {
  background: #E5E1DA !important;
  border-color: #C5BFB8 !important;
  color: #4a4440 !important;
}
/* Lang buttons in light mode */
body.light-mode .v15-lang-btn {
  background: rgba(0,0,0,0.04) !important;
  border-color: rgba(0,0,0,0.12) !important;
  color: rgba(0,0,0,0.55) !important;
}
body.light-mode .v15-lang-btn:hover {
  background: rgba(139,115,85,0.08) !important;
  border-color: rgba(139,115,85,0.4) !important;
  color: #3a3430 !important;
}
body.light-mode .v15-lang-btn.v15-lang-active {
  background: rgba(139,115,85,0.12) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
/* Accent/color theme buttons in light mode */
body.light-mode #staticAccentSection button,
body.light-mode .color-theme-btn {
  opacity: 0.9;
}
/* qr-btn (lang buttons in extraLangSection) */
body.light-mode .settings-panel .qr-btn {
  color: #4a4440 !important;
  border-color: rgba(139,115,85,0.25) !important;
  background: rgba(0,0,0,0.03) !important;
}
body.light-mode .settings-panel .qr-btn:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(139,115,85,0.06) !important;
}
/* visitor stats */
body.light-mode #visitorStatsSection .settings-row {
  color: #4a4440 !important;
}
body.light-mode #visitorStatsSection span {
  color: #6b6055 !important;
}

/* ================================================
   V17 — ANIMASYON PERFORMANS İYİLEŞTİRME
   ================================================ */
.project-card, .gallery-item, .partner-card {
  will-change: transform;
}

/* ================================================
   V17 — YENİ ARAMA YÜKLENİYOR STİLİ (sp-loading-v17)
   ================================================ */
.sp-loading-v17 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px 18px;
  gap: 10px;
}
.sp-loading-v17 span {
  font-size: 0.58rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  animation: v17LoadingPulse 1.4s ease-in-out infinite;
}
@keyframes v17LoadingPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.75; }
}
.sp-loading-bar {
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.sp-loading-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold, #C9A84C),
    transparent
  );
  border-radius: 2px;
  animation: v17LoadingSlide 1.2s ease-in-out infinite;
}
@keyframes v17LoadingSlide {
  0%   { left: -40%; }
  100% { left: 110%; }
}

/* ================================================
   V18 — ARKA PLAN MÜZİĞİ (AMBIENT) STİLLERİ
   ================================================ */

#ambientMusicSection {
  border-top: 1px solid rgba(201,168,76,0.12);
  margin-top: 4px;
  padding-top: 14px;
}

.ambient-track-picker {
  margin-top: 10px;
  padding: 10px 0 4px;
  display: none;
  animation: ambFadeIn 0.3s ease;
}
@keyframes ambFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ambient-track-label {
  font-size: 0.48rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ambient-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}

.ambient-track-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.ambient-track-btn:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}
.ambient-track-btn.active {
  border-color: var(--gold, #C9A84C);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 4px 16px rgba(201,168,76,0.1);
}
.ambient-track-btn.active::after {
  content: '▶';
  position: absolute;
  top: 4px;
  right: 5px;
  font-size: 0.4rem;
  color: var(--gold, #C9A84C);
  animation: ambPulse 1.5s ease-in-out infinite;
}
@keyframes ambPulse {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.amb-icon {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
.ambient-track-btn:hover .amb-icon,
.ambient-track-btn.active .amb-icon {
  transform: scale(1.25);
}

.amb-name {
  font-size: 0.42rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  transition: color 0.2s;
}
.ambient-track-btn.active .amb-name {
  color: var(--gold, #C9A84C);
}

/* Ses seviyesi slider */
.ambient-volume-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.amb-vol-label {
  font-size: 0.65rem;
  flex-shrink: 0;
}
.ambient-vol-slider {
  flex: 1;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.ambient-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold, #C9A84C);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(201,168,76,0.5);
  transition: transform 0.2s;
}
.ambient-vol-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}
.ambient-vol-slider::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold, #C9A84C);
  border: none;
  cursor: pointer;
}
.amb-vol-value {
  font-size: 0.44rem;
  font-family: 'Josefin Sans', monospace;
  color: rgba(255,255,255,0.35);
  min-width: 28px;
  text-align: right;
}

/* Durum göstergesi */
.ambient-status {
  font-size: 0.46rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 5px 0 2px;
  transition: color 0.3s;
}

/* Light mode */
body.light-mode .ambient-track-btn,
body.light .ambient-track-btn {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}
body.light-mode .ambient-vol-slider,
body.light .ambient-vol-slider {
  background: rgba(0,0,0,0.1);
}
body.light-mode .ambient-track-label,
body.light .ambient-track-label,
body.light-mode .amb-name,
body.light .amb-name,
body.light-mode .ambient-status,
body.light .ambient-status {
  color: rgba(0,0,0,0.4);
}

/* ========== STAR TV BÖLÜMLER ========== */

.startv-section {
  padding: 4rem 3rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.startv-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.startv-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.startv-tumu {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.startv-tumu:hover { color: #fff; }

.startv-arrow-btn {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.startv-arrow-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* Güncel Diziler Grid */
.startv-dizi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.startv-dizi-card {
  cursor: pointer;
}

.startv-dizi-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #1a1a1a;
}

.startv-dizi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.startv-dizi-card:hover .startv-dizi-img { transform: scale(1.04); }

.startv-dizi-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.startv-dizi-name {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* Shorts Section */
.startv-shorts-section {
  padding: 5rem 3rem;
  background: #000;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.startv-shorts-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 3rem;
}

.startv-shorts-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.startv-shorts-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 100%;
  height: 480px;
}

.startv-short-card {
  position: absolute;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  background: #111;
}

/* Center card (active) */
.startv-short-card.active {
  z-index: 5;
  transform: translateX(0) scale(1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.startv-short-card.pos-left1  { transform: translateX(-260px) scale(0.82); z-index: 3; opacity: 0.6; }
.startv-short-card.pos-left2  { transform: translateX(-460px) scale(0.68); z-index: 2; opacity: 0.35; }
.startv-short-card.pos-right1 { transform: translateX(260px) scale(0.82); z-index: 3; opacity: 0.6; }
.startv-short-card.pos-right2 { transform: translateX(460px) scale(0.68); z-index: 2; opacity: 0.35; }
.startv-short-card.pos-hidden { transform: translateX(600px) scale(0.5); z-index: 1; opacity: 0; }

.startv-short-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.startv-short-info {
  padding: 1rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.9));
  position: absolute;
  bottom: 0; left: 0; right: 0;
}

.startv-short-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.startv-short-show {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

.startv-short-bar {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin-top: 0.8rem;
  width: 60%;
}

.startv-shorts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.startv-shorts-arrow:hover { background: rgba(255,255,255,0.2); }
.startv-shorts-prev { left: 1rem; }
.startv-shorts-next { right: 1rem; }

/* Foto Galeri */
.startv-foto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.startv-foto-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #111;
}

.startv-foto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.startv-foto-card:hover img { transform: scale(1.04); }

.startv-foto-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.startv-foto-show {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.startv-foto-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.2rem;
}

/* Editörün Seçtikleri & Haberler - News Cards */
.startv-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.startv-news-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.startv-news-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.startv-news-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a1a1a;
}

.startv-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.startv-news-card:hover .startv-news-img { transform: scale(1.05); }

.startv-news-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  padding: 1rem 1rem 0.4rem;
  line-height: 1.4;
}

.startv-news-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding: 0 1rem 0.8rem;
  line-height: 1.5;
}

.startv-devami-btn {
  display: inline-block;
  margin: 0 1rem 1rem;
  padding: 0.55rem 1.2rem;
  background: #e8193c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.startv-devami-btn:hover { background: #c9122e; }

/* Star TV Footer */
.startv-footer {
  background: #080808;
  border-top: 3px solid transparent;
  border-image: linear-gradient(to right, #7b2ff7, #e8193c, #ff6b00) 1;
  position: relative;
  padding: 3rem;
}

.startv-footer-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #7b2ff7, #e8193c, #ff6b00);
}

.startv-footer-inner {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.startv-footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 120px;
}

.startv-footer-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.startv-footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.startv-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 110px;
}

.startv-footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.startv-footer-col a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.startv-footer-col a:hover { color: #fff; }

.startv-footer-social {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.startv-footer-icons {
  display: flex;
  gap: 0.8rem;
}

.startv-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.startv-social-icon:hover { background: rgba(255,255,255,0.15); color: #fff; }

.startv-store-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.startv-store-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  transition: background 0.2s;
  min-width: 150px;
}
.startv-store-btn small { font-size: 0.65rem; color: rgba(255,255,255,0.6); font-weight: 400; }
.startv-store-btn:hover { background: rgba(255,255,255,0.13); }

/* Responsive */
@media (max-width: 900px) {
  .startv-dizi-grid { grid-template-columns: repeat(2, 1fr); }
  .startv-cards-row { grid-template-columns: repeat(2, 1fr); }
  .startv-foto-grid { grid-template-columns: 1fr; }
  .startv-footer-inner { gap: 2rem; }
  .startv-footer-social { margin-left: 0; align-items: flex-start; }
}

@media (max-width: 600px) {
  .startv-section { padding: 3rem 1.5rem; }
  .startv-shorts-section { padding: 3rem 1rem; }
  .startv-shorts-title { font-size: 2.2rem; }
  .startv-dizi-grid { grid-template-columns: repeat(2, 1fr); }
  .startv-cards-row { grid-template-columns: 1fr; }
  .startv-short-card.pos-left2,
  .startv-short-card.pos-right2 { opacity: 0; }
  .startv-footer { padding: 2rem 1.5rem; }
  .startv-footer-inner { flex-direction: column; gap: 1.5rem; }
  .startv-footer-social { align-items: flex-start; }
}

/* ========== YT-STYLE TAB SİSTEMİ ========== */
.yt-tabs-wrapper {
  background: #0a0a0a;
  padding-bottom: 2rem;
}

/* yt-tabs-nav STICKY WRAPPER — sticky davranışı burada */
.yt-tabs-nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* NAV — sadece flex container, position:relative indicator için */
.yt-tabs-nav {
  position: relative;        /* indicator'ın referans noktası */
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.yt-tabs-nav::-webkit-scrollbar { display: none; }

.yt-tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
  flex-shrink: 0;
  /* position:relative KALDIRILDI — offsetLeft nav'a göre hesaplanır */
}
.yt-tab-btn svg { opacity: 0.6; transition: opacity 0.2s; }
.yt-tab-btn:hover { color: rgba(255,255,255,0.9); }
.yt-tab-btn:hover svg { opacity: 0.9; }
.yt-tab-btn.active { color: #fff; }
.yt-tab-btn.active svg { opacity: 1; }

/* Indicator — nav içinde absolute, nav'ın padding'ini hesaba katar */
.yt-tab-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px 2px 0 0;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1),
              width 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

/* Tab Panelleri */
.yt-tab-panel {
  display: none;
}
.yt-tab-panel.active {
  display: block;
  animation: ytFadeIn 0.25s ease;
}

@keyframes ytFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive tab */
@media (max-width: 768px) {
  .yt-tabs-nav { padding: 0 0.5rem; }
  .yt-tab-btn { font-size: 0.72rem; padding: 0.9rem 0.8rem; gap: 5px; }
}

/* ========== SHORTS THUMBNAIL GRID ========== */
/* ========== SHORTS — SWIPER COVERFLOW ========== */
.sv-shorts-swiper {
  width: 100%;
  max-width: 1100px;
  margin: 1rem auto 2rem;
  padding: 2rem 0 3rem;
  overflow: hidden;
}
.sv-shorts-swiper .swiper-wrapper { align-items: center; }

.sv-short-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.sv-shorts-swiper .swiper-slide.sv-short-thumb {
  width: 256px;
  height: 456px;
  transition: opacity 0.35s ease;
  opacity: 0.5;
}
.sv-shorts-swiper .swiper-slide-active.sv-short-thumb {
  opacity: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.sv-shorts-swiper .swiper-slide.sv-short-thumb:hover { opacity: 0.85; }
.sv-shorts-swiper .swiper-slide-active.sv-short-thumb:hover { opacity: 1; }

.sv-shorts-swiper .swiper-slide.sv-short-thumb::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0));
  z-index: 1; pointer-events: none;
}
.sv-short-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Videosu olmayan kartlar — "Yakında" rozeti */
.sv-short-thumb.sv-thumb-nopreview { cursor: default; }
.sv-short-thumb.sv-thumb-nopreview .sv-thumb-play { display: none; }
.sv-short-thumb.sv-thumb-nopreview::after {
  content: "Yakında";
  position: absolute; top: 10px; left: 10px; z-index: 3;
  padding: 3px 8px;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 4px; pointer-events: none;
}
@keyframes svThumbShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.sv-short-thumb.sv-thumb-shake { animation: svThumbShake 0.45s ease; }

/* Swiper navigasyon */
.sv-shorts-swiper .swiper-button-prev,
.sv-shorts-swiper .swiper-button-next {
  color: #fff;
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
  margin-top: -22px;
}
.sv-shorts-swiper .swiper-button-prev:hover,
.sv-shorts-swiper .swiper-button-next:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.06);
}
.sv-shorts-swiper .swiper-button-prev::after,
.sv-shorts-swiper .swiper-button-next::after {
  font-size: 16px; font-weight: 700;
}
.sv-shorts-swiper .swiper-pagination {
  position: static;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  .sv-shorts-swiper .swiper-slide.sv-short-thumb { width: 200px; height: 356px; }
  .sv-shorts-swiper .swiper-button-prev,
  .sv-shorts-swiper .swiper-button-next { display: none; }
}

.sv-short-thumb:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(0,0,0,0.6); }
.sv-short-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sv-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.2s;
}
.sv-short-thumb:hover .sv-thumb-play { opacity: 1; }
.sv-thumb-play svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8)); }

.sv-thumb-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.sv-thumb-title { font-size: 0.75rem; font-weight: 600; color: #fff; margin: 0 0 2px; line-height: 1.3; }
.sv-thumb-show  { font-size: 0.65rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ========== SHORTS FULLSCREEN PLAYER ========== */
.sv-player-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sv-player-overlay.sv-active {
  opacity: 1;
  pointer-events: all;
}

.sv-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
}

/* Yan kartlar */
.sv-side-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  aspect-ratio: 9/16;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  opacity: 0.55;
  cursor: pointer;
  z-index: 10001;
  transition: opacity 0.2s;
}
.sv-side-card:hover { opacity: 0.8; }
.sv-side-left  { left: calc(50% - 320px - 145px); }
.sv-side-right { right: calc(50% - 320px - 145px); }
.sv-side-card img { width: 100%; height: 100%; object-fit: cover; }
.sv-side-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.65rem;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 900px) { .sv-side-card { display: none; } }

/* Ana player kutusu */
.sv-player-box {
  position: relative;
  z-index: 10000;
  width: min(380px, 90vw);
  aspect-ratio: 9/16;
  max-height: 92vh;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.sv-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Progress */
.sv-progress-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.25);
  z-index: 10;
}
.sv-progress-fill {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.5s linear;
}

/* Kontroller sağ üst */
.sv-controls-top {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}
.sv-ctrl-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.sv-ctrl-btn:hover { background: rgba(0,0,0,0.8); }

/* Nav oklar sağ kenar */
.sv-nav-arrows {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}
.sv-nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.sv-nav-btn:hover { background: rgba(255,255,255,0.35); }

/* Alt bilgi */
.sv-player-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  z-index: 5;
  pointer-events: none;
}
.sv-player-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  z-index: 10;
  pointer-events: none;
}
.sv-player-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
}
.sv-player-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.4;
}

/* =============================================
   ASASİNLER TARİKATI — Eagle Vision / Animus / Helix
   ============================================= */

/* Settings hint row */
.settings-row-hint { padding: 0.4rem 0 0.2rem; }
.ac-hint {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.5px;
  font-style: italic;
  line-height: 1.5;
  display: block;
  text-align: center;
  width: 100%;
}

/* ── EAGLE VISION ────────────────────────────── */
#eagleVisionOverlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2147483640;
  opacity: 0;
  transition: opacity 0.9s ease;
  --ev-aura: 200, 220, 255;
}
body.eagle-vision-on #eagleVisionOverlay { opacity: 1; }

#eagleVisionOverlay::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 80% 65% at 50% 50%,
    rgba(0,0,0,0) 30%,
    rgba(0,8,18,0.45) 90%,
    rgba(0,5,12,0.65) 100%
  );
}
#eagleVisionOverlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(var(--ev-aura),0.06) 0%,
    rgba(var(--ev-aura),0.03) 50%,
    transparent 100%
  );
  mix-blend-mode: screen;
}
.ev-grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
  opacity: 0.6;
}
.ev-edge {
  position: absolute;
  background: linear-gradient(rgba(var(--ev-aura),0.15), transparent);
  pointer-events: none;
}
.ev-edge-top    { top:0; left:0; right:0; height: 80px; }
.ev-edge-bottom { bottom:0; left:0; right:0; height: 80px;
  background: linear-gradient(transparent, rgba(var(--ev-aura),0.15)); }
.ev-edge-left   { top:0; left:0; bottom:0; width: 60px;
  background: linear-gradient(90deg, rgba(var(--ev-aura),0.12), transparent); }
.ev-edge-right  { top:0; right:0; bottom:0; width: 60px;
  background: linear-gradient(-90deg, rgba(var(--ev-aura),0.12), transparent); }

/* Pulse ring animation */
@keyframes evPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
body.eagle-vision-on #eagleVisionOverlay { animation: evPulse 4.5s ease-in-out infinite; }

/* Element highlight categories */
body.eagle-vision-on a,
body.eagle-vision-on button:not(.toggle-switch *):not([type="checkbox"]) {
  position: relative;
  transition: box-shadow 0.35s ease, outline 0.35s ease;
}
/* Default neutral — white */
body.eagle-vision-on a,
body.eagle-vision-on button:not(.toggle-switch *) {
  outline: 1px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
  box-shadow: 0 0 14px rgba(255,255,255,0.35), 0 0 28px rgba(255,255,255,0.15);
}
/* Allies — Blue (partners, social) */
body.eagle-vision-on .partner-card,
body.eagle-vision-on .partner-card *,
body.eagle-vision-on a[href*="instagram"],
body.eagle-vision-on a[href*="twitter"],
body.eagle-vision-on a[href*="linkedin"],
body.eagle-vision-on a[href*="x.com"],
body.eagle-vision-on .ig-card,
body.eagle-vision-on .partner-grid a {
  --hl: 79, 195, 247;
}
body.eagle-vision-on .partner-card,
body.eagle-vision-on a[href*="instagram"],
body.eagle-vision-on a[href*="twitter"],
body.eagle-vision-on a[href*="linkedin"],
body.eagle-vision-on .ig-card {
  outline: 1px solid rgba(79,195,247,0.85) !important;
  outline-offset: 2px;
  box-shadow:
    0 0 18px rgba(79,195,247,0.55),
    0 0 36px rgba(79,195,247,0.25),
    inset 0 0 0 1px rgba(79,195,247,0.4) !important;
}
/* Targets — Gold (primary CTAs, project cards) */
body.eagle-vision-on .hero-cta,
body.eagle-vision-on .cta-btn,
body.eagle-vision-on .btn-primary,
body.eagle-vision-on button[type="submit"],
body.eagle-vision-on .form-submit,
body.eagle-vision-on .download-cv,
body.eagle-vision-on a[href="#projeler"],
body.eagle-vision-on a[href="#iletisim"] {
  outline: 1.5px solid rgba(255,200,40,0.95) !important;
  outline-offset: 3px;
  box-shadow:
    0 0 22px rgba(255,200,40,0.7),
    0 0 44px rgba(255,160,0,0.35) !important;
}
/* Threats — Red (close buttons, destructive) */
body.eagle-vision-on .modal-close,
body.eagle-vision-on .close-btn,
body.eagle-vision-on [aria-label*="Kapat"],
body.eagle-vision-on [aria-label*="Close"],
body.eagle-vision-on .lightbox-close,
body.eagle-vision-on .sv-close-btn {
  outline: 1px solid rgba(255,82,82,0.85) !important;
  outline-offset: 2px;
  box-shadow:
    0 0 16px rgba(255,82,82,0.6),
    0 0 32px rgba(255,82,82,0.25) !important;
}

/* ── ANIMUS ──────────────────────────────────── */
#animusOverlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2147483639;
  opacity: 0;
  transition: opacity 1.2s ease;
}
body.animus-on #animusOverlay { opacity: 1; }
#animusCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
#animusOverlay::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, transparent 30%, rgba(0,15,40,0.55) 100%),
    linear-gradient(180deg, rgba(0,30,80,0.05), rgba(0,15,40,0.18));
}

/* Chromatic-aberration desync glitch */
@keyframes animusDesync {
  0%, 100% { filter: none; transform: translate(0,0); }
  25%      { filter: hue-rotate(-12deg) saturate(1.15); transform: translate(-1.5px, 0.5px); }
  50%      { filter: hue-rotate(8deg) contrast(1.05); transform: translate(2px, -0.5px); }
  75%      { filter: hue-rotate(-6deg); transform: translate(-1px, 1px); }
}
body.animus-on.animus-desync main,
body.animus-on.animus-desync #app,
body.animus-on.animus-desync > section,
body.animus-on.animus-desync header {
  animation: animusDesync 0.55s steps(8) 1;
}

/* Animus boot screen */
#animusBoot {
  position: fixed; inset: 0;
  z-index: 2147483647;
  display: none;
  background: radial-gradient(ellipse at center, #001428 0%, #000510 80%);
  align-items: center; justify-content: center;
  color: #6FCFFF;
  font-family: 'Courier New', monospace;
}
#animusBoot.ab-show { display: flex; }
.ab-frame {
  position: relative;
  width: min(560px, 90vw);
  padding: 3rem 2.5rem;
  text-align: center;
}
.ab-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid #6FCFFF;
}
.ab-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.ab-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.ab-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.ab-br { bottom: 0; right: 0; border-left: none; border-top: none; }
.ab-logo {
  font-size: 0.7rem;
  letter-spacing: 6px;
  color: rgba(111,207,255,0.55);
  margin-bottom: 1.5rem;
}
.ab-title {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 12px;
  color: #C5E9FF;
  margin: 0 0 0.6rem;
  text-shadow: 0 0 20px rgba(111,207,255,0.6);
}
.ab-sub {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(111,207,255,0.7);
  margin-bottom: 2.5rem;
}
.ab-bar {
  height: 3px;
  background: rgba(111,207,255,0.18);
  position: relative;
  margin: 0 0 1rem;
  overflow: hidden;
}
.ab-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6FCFFF, #C5E9FF);
  box-shadow: 0 0 12px rgba(111,207,255,0.85);
  transition: width 0.18s linear;
}
.ab-status {
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: rgba(111,207,255,0.85);
  min-height: 1em;
  margin-bottom: 2rem;
}
.ab-foot {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: rgba(111,207,255,0.35);
}

/* ── HELIX (Phoenix Project) ─────────────────── */
#helixOverlay {
  position: fixed;
  top: 0; right: 0;
  width: 80px; height: 100vh;
  pointer-events: none;
  z-index: 2147483638;
  opacity: 0;
  transition: opacity 1s ease;
}
body.helix-on #helixOverlay { opacity: 1; }
#helixOverlay svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 6px rgba(255,200,80,0.45));
}
.helix-tag {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right center;
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: rgba(255,200,80,0.55);
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  margin-right: -8px;
}
@media (max-width: 768px) {
  #helixOverlay { width: 50px; }
  .helix-tag { font-size: 0.45rem; letter-spacing: 2px; }
}

/* Helix gentle accent — when on, accent corners glow soft gold */
body.helix-on::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,200,80,0.55) 50%,
    transparent 100%);
  z-index: 2147483637;
  pointer-events: none;
  animation: helixSweep 4s ease-in-out infinite;
}
@keyframes helixSweep {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.85; }
}


/* ============================================================
   HORROR MODE — TWD / Dying Light / Resident Evil tema seti
   body class'ı olarak uygulanır: .horror-twd, .horror-dl, .horror-re
   CSS değişkenlerini override eder ve atmosferik efektler ekler.
   ============================================================ */

/* ---- Common: vignette + grain overlay ---- */
body.horror-twd::before,
body.horror-dl::before,
body.horror-re::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ============================================================
   1) THE WALKING DEAD — apokaliptik, sepia, kanlı kırmızı
   ============================================================ */
body.horror-twd {
  --gold: #8B0000;
  --gold-light: #C04040;
  --bg-tint: rgba(80, 70, 30, 0.06);
  cursor:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='28' viewBox='0 0 24 28'><path d='M12 1 C12 9 20 14 20 20 a8 8 0 0 1 -16 0 C4 14 12 9 12 1z' fill='%238B0000' stroke='%23330000' stroke-width='1.2'/><ellipse cx='9' cy='17' rx='2' ry='3' fill='%23c44040' opacity='0.55'/></svg>") 12 26,
    crosshair;
}
body.horror-twd::before {
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(20, 10, 0, 0.55) 100%),
    repeating-linear-gradient(45deg, rgba(80,60,30,0.04) 0, rgba(80,60,30,0.04) 1px, transparent 1px, transparent 4px);
}
body.horror-twd img:not(.amb-icon):not(.no-horror-filter):not(.ig-verified-icon) {
  filter: sepia(0.35) saturate(0.65) contrast(1.06);
}
body.horror-twd .hero-name,
body.horror-twd .startv-shorts-title,
body.horror-twd h1, body.horror-twd h2 {
  font-family: "Cormorant Garamond", "DM Serif Display", Georgia, serif;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(0,0,0,0.6), 2px 2px 6px rgba(80, 0, 0, 0.4);
}
body.horror-twd a:hover, body.horror-twd a:focus { color: var(--gold); }

/* ============================================================
   2) DYING LIGHT — sarı/siyah hayatta kalma, parkour
   ============================================================ */
body.horror-dl {
  --gold: #F5C400;
  --gold-light: #FFE066;
  cursor:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><polygon points='12,2 14.5,9 22,9 16,13.5 18.5,21 12,16.5 5.5,21 8,13.5 2,9 9.5,9' fill='%23F5C400' stroke='%23000' stroke-width='1.2'/></svg>") 12 12,
    crosshair;
}
body.horror-dl::before {
  background:
    radial-gradient(ellipse at center, transparent 60%, rgba(20, 15, 0, 0.55) 100%),
    repeating-linear-gradient(135deg, rgba(245, 196, 0, 0.03) 0, rgba(245, 196, 0, 0.03) 2px, transparent 2px, transparent 12px);
}
body.horror-dl img:not(.amb-icon):not(.no-horror-filter):not(.ig-verified-icon) {
  filter: contrast(1.08) saturate(0.9) brightness(0.96);
}
body.horror-dl .hero-name,
body.horror-dl .startv-shorts-title,
body.horror-dl h1, body.horror-dl h2 {
  font-family: "Josefin Sans", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(245, 196, 0, 0.35), 2px 2px 0 #000;
}
body.horror-dl .yt-tab-btn.active,
body.horror-dl .ambient-track-btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(245, 196, 0, 0.4);
}

/* ============================================================
   3) RESIDENT EVIL — biohazard yeşil, lab, CRT scanline
   ============================================================ */
body.horror-re {
  --gold: #00FF7F;
  --gold-light: #66FFB2;
  --re-red: #c41e3a;
  cursor:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><circle cx='14' cy='14' r='10' fill='none' stroke='%2300FF7F' stroke-width='2'/><line x1='14' y1='2' x2='14' y2='9' stroke='%2300FF7F' stroke-width='2'/><line x1='14' y1='19' x2='14' y2='26' stroke='%2300FF7F' stroke-width='2'/><line x1='2' y1='14' x2='9' y2='14' stroke='%2300FF7F' stroke-width='2'/><line x1='19' y1='14' x2='26' y2='14' stroke='%2300FF7F' stroke-width='2'/><circle cx='14' cy='14' r='2' fill='%23c41e3a'/></svg>") 14 14,
    crosshair;
}
body.horror-re::before {
  background:
    repeating-linear-gradient(0deg, rgba(0, 255, 127, 0.025) 0, rgba(0, 255, 127, 0.025) 1px, transparent 1px, transparent 3px),
    radial-gradient(ellipse at center, transparent 55%, rgba(0, 30, 15, 0.55) 100%);
  mix-blend-mode: normal;
}
body.horror-re img:not(.amb-icon):not(.no-horror-filter):not(.ig-verified-icon) {
  filter: contrast(1.08) hue-rotate(-6deg) saturate(0.92);
}
body.horror-re .hero-name,
body.horror-re .startv-shorts-title,
body.horror-re h1, body.horror-re h2 {
  font-family: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow:
    0 0 8px rgba(0, 255, 127, 0.4),
    0 0 24px rgba(0, 255, 127, 0.2),
    1px 1px 0 #000;
}
body.horror-re a:hover { color: var(--re-red); }

/* ---- Settings panel — aktif horror butonu görsel feedback ---- */
.horror-mode-btn {
  position: relative;
}
.horror-mode-btn.active {
  border-color: #fff !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset, 0 4px 16px rgba(0,0,0,0.4);
}
.horror-mode-btn:hover {
  transform: translateX(2px);
}

/* ---- Reduced motion / hover guards (perf modu ile uyumlu) ---- */
@media (prefers-reduced-motion: reduce) {
  body.horror-twd::before,
  body.horror-dl::before,
  body.horror-re::before {
    animation: none;
  }
}

/* =============================================
   V20 — PROGRESS RING — Paylaş butonu ile
   aynı animasyon (background + color geçişi)
   ============================================= */
#v20-progress-ring {
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
}
#v20-progress-ring .v20-ring-bg {
  transition: fill 0.2s ease, stroke 0.2s ease;
}
#v20-progress-ring .v20-ring-icon {
  transition: color 0.2s ease;
}
#v20-progress-ring:hover .v20-ring-bg {
  fill: rgba(255,255,255,0.15) !important;
  stroke: rgba(255,255,255,0.4) !important;
}
#v20-progress-ring:hover .v20-ring-icon {
  color: #fff !important;
}

/* =============================================
   LIGHT MODE — GALERİ, TAB, FOOTER, STARTV
   Hardcoded dark renklerin aydınlık karşılıkları
   ============================================= */

/* Galeri sekmesi (yt-tabs) */
body.light-mode .yt-tabs-wrapper {
  background: #f0ece5;
}
body.light-mode .yt-tabs-nav-sticky {
  background: #e8e3db;
  border-bottom-color: rgba(0,0,0,0.1);
}
body.light-mode .yt-tab-btn {
  color: rgba(0,0,0,0.5);
}
body.light-mode .yt-tab-btn:hover {
  color: rgba(0,0,0,0.85);
}
body.light-mode .yt-tab-btn.active {
  color: #1a1614;
}
body.light-mode .yt-tab-indicator {
  background: #1a1614;
}

/* Startv Diziler Bölümü */
body.light-mode .startv-section {
  background: #f0ece5;
}
body.light-mode .startv-section-title {
  color: #1a1614;
}
body.light-mode .startv-tumu {
  color: rgba(0,0,0,0.55);
  border-color: rgba(0,0,0,0.15);
}
body.light-mode .startv-tumu:hover {
  color: #1a1614;
  border-color: rgba(0,0,0,0.4);
}
body.light-mode .startv-arrow-btn {
  background: rgba(0,0,0,0.07);
  color: rgba(0,0,0,0.6);
  border-color: rgba(0,0,0,0.12);
}
body.light-mode .startv-arrow-btn:hover {
  background: rgba(0,0,0,0.14);
  color: #1a1614;
}
body.light-mode .startv-dizi-card {
  background: #e5e0d8;
}
body.light-mode .startv-dizi-name {
  color: #1a1614;
}

/* Shorts bölümü */
body.light-mode .startv-shorts-section {
  background: #e8e3db;
}
body.light-mode .startv-shorts-title {
  color: #1a1614;
}
body.light-mode .startv-short-card {
  background: #d8d2c8;
}
body.light-mode .startv-short-name {
  color: #1a1614;
}
body.light-mode .startv-short-show {
  color: rgba(0,0,0,0.5);
}
body.light-mode .startv-shorts-arrow {
  background: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.7);
}
body.light-mode .startv-shorts-arrow:hover {
  background: rgba(0,0,0,0.2);
}

/* Foto galeri */
body.light-mode .startv-foto-grid {
  background: #f0ece5;
}
body.light-mode .startv-foto-card {
  background: #e0dbd2;
}
body.light-mode .startv-foto-show {
  color: rgba(0,0,0,0.5);
}

/* Haberler */
body.light-mode .startv-haber-card {
  background: #e5e0d8;
  border-color: rgba(0,0,0,0.08);
}
body.light-mode .startv-haber-title {
  color: #1a1614;
}
body.light-mode .startv-haber-desc {
  color: rgba(0,0,0,0.55);
}
body.light-mode .startv-haber-meta {
  color: rgba(0,0,0,0.4);
}

/* Footer (startv-footer) */
body.light-mode .startv-footer {
  background: #e8e3db;
  border-top: 3px solid transparent;
  border-image: linear-gradient(to right, #7b2ff7, #e8193c, #ff6b00) 1;
}
body.light-mode .startv-footer-copy {
  color: rgba(0,0,0,0.45);
}
body.light-mode .startv-footer-col-title {
  color: rgba(0,0,0,0.4);
}
body.light-mode .startv-footer-col a {
  color: rgba(0,0,0,0.7);
}
body.light-mode .startv-footer-col a:hover {
  color: #1a1614;
}
body.light-mode .startv-social-btn {
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.6);
  border-color: rgba(0,0,0,0.12);
}
body.light-mode .startv-social-btn:hover {
  background: rgba(0,0,0,0.15);
  color: #1a1614;
}

/* Showreel bölümü */
body.light-mode .showreel {
  background: var(--dark-2);
}
body.light-mode .showreel-box {
  background: var(--dark-3);
}

/* YGC Shorts player overlay */
body.light-mode .sv-player-overlay {
  background: rgba(240,236,229,0.96);
}
body.light-mode .sv-player-box {
  background: #e0dbd2;
}
body.light-mode .sv-player-title {
  color: #1a1614;
}
body.light-mode .sv-player-desc {
  color: rgba(0,0,0,0.55);
}
body.light-mode .sv-ctrl-btn {
  background: rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.7);
}
body.light-mode .sv-ctrl-btn:hover {
  background: rgba(0,0,0,0.22);
}
body.light-mode .sv-close-btn {
  color: rgba(0,0,0,0.6);
}

/* Genel kart bileşenleri */
body.light-mode .project-card {
  background: var(--dark-2);
}
body.light-mode .partner-card {
  background: var(--dark-2);
  border-color: var(--dark-4);
}
body.light-mode .gallery-item {
  background: var(--dark-3);
}

/* =============================================
   LIGHT MODE — FOOTER & NAV GRADIENT FIX
   !important dark overrides için karşı kural
   ============================================= */

/* Mini footer bar — style_additions.css'deki gradient !important override */
body.light-mode footer {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(245,242,237,0.7) 20%,
    rgba(245,242,237,0.97) 60%
  ) !important;
  border-top: 1px solid rgba(139,115,85,0.12) !important;
}
body.light-mode .footer-left,
body.light-mode .footer-right {
  color: rgba(0,0,0,0.45);
}

/* Nav bar — style_additions.css'deki !important dark override */
body.light-mode .navbar,
body.light-mode header nav,
body.light-mode nav {
  background: rgba(245,242,237,0.82) !important;
  border-bottom: 1px solid rgba(139,115,85,0.1) !important;
}
body.light-mode .navbar.scrolled,
body.light-mode header nav.scrolled,
body.light-mode nav.scrolled {
  background: rgba(245,242,237,0.97) !important;
  box-shadow: 0 1px 20px rgba(0,0,0,0.08) !important;
}

/* Nav linkleri */
body.light-mode .nav-links a,
body.light-mode nav a {
  color: rgba(0,0,0,0.65);
}
body.light-mode .nav-links a:hover,
body.light-mode nav a:hover {
  color: #1a1614;
}

/* Duplicate settings panel kurallarını açıkça !important ile kapat */
body.light-mode .settings-header {
  background: #EDEAE4 !important;
  border-bottom-color: rgba(139,115,85,0.15) !important;
}
body.light-mode .settings-close-btn {
  color: #6b6055 !important;
}
