html, body {
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
}
/* === Ultra Hafif Arkaplan === */
.affiliate-background {
  position: fixed;
  inset: 0;
  background: #000; /* Dark mode */
  overflow: hidden;
  z-index: -1;
}

/* Tek kırmızı glow (küçük, sabit) */
.affiliate-background::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,0,0,0.06) 0%, transparent 70%);
}

/* Hafif animasyonlu kırmızı parıltı */
.affiliate-background::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle, rgba(255,0,0,0.03) 0%, transparent 60%);
  opacity: 0.35;
  animation: slowDrift 60s linear infinite;
}

/* Grain efekti (sabit, CPU dostu) */
.grain {
  position: fixed;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/noise-pattern-with-subtle-cross-lines.png');
  opacity: 0.01; /* Neredeyse görünmez */
  mix-blend-mode: screen;
  z-index: -1;
  pointer-events: none;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #ff0000, #b30000);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff2a2a, #cc0000);
  transform: translateY(-2px);
}

/* === HERO === */
/* === HERO ALANI === */
.affiliate-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px; /* Alanı geniş */
  margin: 0 auto;
  padding: 120px 0; /* Yan boşluk yok */
  gap: 80px; /* Sol & sağ arası boşluk */
  position: relative;
  z-index: 10; /* z-index eklendi */
}

/* Sol içerik */
.affiliate-content {
  flex: 1;
  text-align: left;
  margin-left: 120px; /* Daha sola yaslı */
}

.affiliate-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.affiliate-content p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  color: #ff1a1a;
}

.hero-stats span {
  font-size: 14px;
  color: #aaa;
}
.hero-subtitle {
  font-size: 18px;
  color: #ff3b3b;
  font-weight: 500;
  margin-top: -10px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}


/* === SAĞ ORBIT === */
.affiliate-content {
  flex: 1;
  text-align: left;
  margin-left: 120px; /* Daha sola yaslı */
}

.affiliate-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.affiliate-content p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  color: #ff1a1a;
}

.hero-stats span {
  font-size: 14px;
  color: #aaa;
}

/* === SAĞ ORBIT (GPU-OPTIMIZED) === */
.affiliate-orbit {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 120px;
  perspective: 1200px;
  contain: layout style paint; /* Performance isolation */
  position: relative;
  z-index: 50; /* z-index eklendi */
}

.orbit-container {
  position: relative;
  width: 640px;
  height: 640px;
  animation: camera-sway 12s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 51; /* z-index eklendi */
}

/* Orbit rings - single rotation wrapper */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(45deg);
  will-change: transform;
  transform-origin: center;
}

/* İç orbit */
.orbit1 { 
  width: 220px;
  height: 220px;
}
.orbit1.orbit-ring {
  animation: orbit-rotate-smooth 15s linear infinite;
}

/* Dış orbit */
.orbit2 { 
  width: 960px;
  height: 960px;
}
.orbit2.orbit-ring {
  animation: orbit-rotate-smooth 30s linear infinite reverse;
}

/* Orbit çizgileri - cheaper */
.orbit-line {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,0,0,0.15);
  box-shadow: inset 0 0 20px rgba(255,0,0,0.05);
}

/* Merkez Logo */
.center-logo {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%,-50%);
  width: 150px; 
  height: 150px;
}

.center-logo img {
  width: 100%;
  filter: drop-shadow(0 0 18px rgba(255,0,0,0.55));
}

/* === PROFİL FOTOĞRAFLARI (GPU-FRIENDLY) === */
.orbit-item {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,0,0,0.4);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 12px rgba(255,0,0,0.4);
  transition: transform .22s ease;
  will-change: transform;
  transform: translateZ(0); /* GPU layer */
  z-index: 54; /* z-index eklendi */
}

/* Fotoğraf */
.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Hafif parlak yansıma overlay */
.orbit-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 70%);
  transform: rotate(25deg);
  pointer-events: none;
}

/* Hover/Active efekti – aynı görünüm */
.orbit-item:hover,
.orbit-item.active {
  transform: scale(1.2) translateZ(50px);
}

/* === KONUM VE DERİNLİKLER === */
.orbit1 .orbit-item:nth-child(2) { top: -35px; left: 50%; transform: translateX(-50%) translateZ(30px); }
.orbit1 .orbit-item:nth-child(3) { right: -35px; top: 50%; transform: translateY(-50%) translateZ(-30px); filter: brightness(0.6); }
.orbit1 .orbit-item:nth-child(4) { bottom: -35px; left: 50%; transform: translateX(-50%) translateZ(30px); }
.orbit1 .orbit-item:nth-child(5) { left: -35px; top: 50%; transform: translateY(-50%) translateZ(-30px); filter: brightness(0.6); }

.orbit2 .orbit-item:nth-child(2) { top: -35px; left: 50%; transform: translateX(-50%) translateZ(50px); }
.orbit2 .orbit-item:nth-child(3) { right: -35px; top: 50%; transform: translateY(-50%) translateZ(-50px); filter: brightness(0.6); }
.orbit2 .orbit-item:nth-child(4) { bottom: -35px; left: 50%; transform: translateX(-50%) translateZ(50px); }
.orbit2 .orbit-item:nth-child(5) { left: -35px; top: 50%; transform: translateY(-50%) translateZ(-50px); filter: brightness(0.6); }

/* === YORUM KUTUSU — minimal sabitleme, cam efekti === */
.orbit-comment-box{
  position: absolute;
  width: 260px;                /* sabit genişlik (desktop) */
  max-width: 260px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(20,20,20,.35);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);

  overflow: hidden;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
  z-index: 200; /* z-index daha da artırıldı */
}
.orbit-comment-box.show{ opacity:1; transform: translateY(0); }

.orbit-comment-text{
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* 2 satırda sabitle */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
.orbit-comment-author{
  font-size: 13px;
  line-height: 1.35;
  opacity: .92;
  text-align: center;
}

/* === ANİMASYONLAR (GPU-OPTIMIZED) === */
@keyframes orbit-rotate-smooth {
  from { transform: translate(-50%,-50%) rotateX(45deg) rotateZ(0deg); }
  to { transform: translate(-50%,-50%) rotateX(45deg) rotateZ(360deg); }
}

@keyframes camera-sway {
  0% { transform: rotateY(5deg); }
  100% { transform: rotateY(-5deg); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .orbit-container {
    animation: none !important;
  }
  .orbit-item:hover,
  .orbit-item.active {
    transform: scale(1.1) translateZ(0) !important;
  }
}




/* === AVANTAJLAR === */
/* --- Container: İki bölümü yan yana koyar --- */
.affiliate-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 150px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  align-items: start;
}

/* === AVANTAJLAR === */
  .affiliate-benefits {
    text-align: center;
    /* padding ve margin container tarafından yönetilecek */
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.benefit-card img {
  width: 48px;
  margin-bottom: 15px;
  filter: none;
}

.benefit-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-top: 0;
  transition: color 0.3s ease;
}

.benefit-card:hover p {
  color: rgba(255,255,255,0.9);
}


  /* === 3 ADIM === */
  .affiliate-steps {
    text-align: center;
    /* padding ve margin container tarafından yönetilecek */
  }

  .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 106px;
  }

  .step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 11px 8px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: visible;
  gap:2px;
}

/* Alt flare efekti için pseudo element */
.step-card::after {
  content: "";
  position: absolute;
  bottom: -8px;  /* Kutunun altının biraz dışında */
  left: 10%;
  width: 80%;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  
  background: linear-gradient(90deg, 
    rgba(255, 26, 26, 0) 0%, 
    rgba(255, 26, 26, 0.3) 50%, 
    rgba(255, 26, 26, 0) 100%);
  
  filter: blur(6px);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
.affiliate-steps .step-card h3{
  font-size: 16px;
}
.affiliate-steps .step-card p{
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
}

/* Numara stili */
.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff1a1a;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(255, 26, 26, 0.5);
}

.affiliate-panel-v2 {
  position: relative;
  padding: 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
  isolation: isolate; /* pseudo elementler üstünü kirletmesin */
}

/* Arka zemine çok hafif derinlik (kare glow değil) */
.affiliate-panel-v2::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background:
    radial-gradient(60% 60% at 70% 40%, rgba(255,0,0,0.10), transparent 60%),
    radial-gradient(40% 40% at 20% 70%, rgba(255,0,0,0.06), transparent 70%);
  z-index: -1;
}

/* Grid aynı */
.panel-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

/* Metin tarafı */
.panel-text { flex: 1; min-width: 320px; }
.panel-text h2 {
  font-size: 40px; /* az büyütelim */
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.panel-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 0 20px 0;
}

/* Mini özellikler (ikon + satır) */
.panel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}
.panel-features li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.panel-features li span { opacity: 0.9; }

/* CTA */
/* =========================
   Affiliate Panel v2 – Full CSS
   ========================= */

/* Bölüm kap: spacing + arka plan derinliği (img'den bağımsız, kare glow yok) */
.affiliate-panel-v2{
  position: relative;
  padding: 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
  isolation: isolate;
}
.affiliate-panel-v2::before{
  content:"";
  position:absolute;
  inset:-10% -20%;
  background:
    radial-gradient(60% 60% at 70% 40%, rgba(255,0,0,0.10), transparent 60%),
    radial-gradient(40% 40% at 20% 70%, rgba(255,0,0,0.06), transparent 70%);
  z-index:-1;
}

/* Grid yerleşim */
.panel-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:60px;
}

/* Metin tarafı */
.panel-text{ flex:1; min-width:320px; }
.panel-text h2{
  font-size:40px;
  color:#fff;
  margin-bottom:16px;
  letter-spacing:.02em;
}
.panel-text p{
  font-size:16px;
  color:rgba(255,255,255,.78);
  line-height:1.8;
  max-width:560px;
  margin:0 0 20px 0;
}

/* KPI pill'leri */
.panel-kpis{
  display:flex; flex-wrap:wrap; gap:12px; margin:18px 0 26px;
}
.kpi{
  display:flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.kpi-label{ color:rgba(255,255,255,.8); font-size:13px; }
.kpi-value{ color:#fff; font-weight:700; letter-spacing:.3px; }

/* CTA buton */
.panel-cta{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:#ff2e2e;
  color:#fff;
  font-weight:600;
  letter-spacing:.3px;
  transition:transform .15s ease, box-shadow .15s ease;
  box-shadow:0 0 0 rgba(255,46,46,0);
}
.panel-cta:hover{ transform:translateY(-1px); }

/* Görsel alanı (arka halo + zemine eliptik gölge) */
.panel-image{
  position:relative;
  flex:1; min-width:320px;
  text-align:center;
  perspective:1200px; /* hover tilt için */
}
.panel-image::before{
  content:"";
  position:absolute;
  left:50%; bottom:-10px;
  width:60%; height:24px;
  transform:translateX(-50%);
  background:radial-gradient(50% 60% at 50% 50%, rgba(0,0,0,.6), transparent 70%);
  filter:blur(6px);
  z-index:0;
}
.panel-image::after{
  content:"";
  position:absolute;
  inset:-6% 10% auto 10%;
  height:70%;
  margin:auto;
  background:radial-gradient(45% 50% at 50% 50%, rgba(255,0,0,.12), transparent 70%);
  z-index:-1;
}

/* Görselin kendisi – kare glow YOK, sadece hafif tilt */
.panel-image img{
  max-width:88%;
  border-radius:16px;
  transform:translateZ(0);
  transition:transform .25s ease;
  will-change:transform;
  z-index:1;
}
.panel-image:hover img{
  transform:rotateY(-6deg) rotateX(3deg) translateZ(0);
}

/* Floating mini-kartlar (görsel çevresi) */
.floating-card{
  position:absolute; padding:10px 12px; border-radius:12px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  color:#fff; font-size:13px; line-height:1.2;
  backdrop-filter: blur(6px);
  box-shadow:0 6px 20px rgba(0,0,0,.35);
  animation:floatY 4s ease-in-out infinite;
  pointer-events:none; /* mouse olaylarını engellemesin */
}
.floating-card b{ color:#ff3b3b; font-weight:700; }
.fc-dot{
  display:inline-block; width:6px; height:6px; border-radius:50%;
  background:#ff3b3b; margin-right:8px; box-shadow:0 0 10px rgba(255,59,59,.7);
}
/* Varsayılan konumlar – mockup'a göre ince ayar yapabilirsin */
.fc-1{ right:12%; top:8%; animation-delay:.1s; }
.fc-2{ right:2%;  bottom:14%; animation-delay:.6s; }

@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-6px); }
}

/* Giriş animasyonu (istemiyorsan bu bloğu silebilirsin) */
@media (prefers-reduced-motion: no-preference){
  .panel-text, .panel-image{
    opacity:0; transform:translateY(14px);
    animation:fadeUp .6s ease forwards;
  }
  .panel-image{ animation-delay:.08s; }
  @keyframes fadeUp{
    to{ opacity:1; transform:translateY(0); }
  }
}

/* --- Kimler Katılmalı Bölümü --- */
.affiliate-who-v2 {
  padding: 80px 20px 100px 20px; /* alt boşluk biraz artırıldı */
  text-align: center;
  max-width: 1100px; /* hafif küçültme */
  margin: 0 auto 80px auto; /* alt boşluk eklendi */
}

.who-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}


.who-card-v2 {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px; /* padding biraz küçültüldü */
  backdrop-filter: blur(4px);
  transition: 0.3s;
  text-align: center;
}
.who-card-v2 h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ff3b3b;
}

.who-card-v2:hover {
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.1);
  transform: translateY(-5px);
}

.who-card-v2 img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

.who-card-v2:hover img {
  filter: invert(1) brightness(2) drop-shadow(0 0 6px rgba(255,0,0,0.5));
  opacity: 1;
}

.who-card-v2 h3 {
  font-size: 15px; /* biraz küçültüldü */
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.3;
}

/* --- Kazananların Yorumu Bölümü --- */
/* Bölüm iskeleti */
.affiliate-testimonials{
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto 100px;
  text-align: center;
  position: relative;
  isolation: isolate;
  /* premium aurora için değişkenler */
  --aurora:  rgba(255,59,59,.10);
  --aurora2: rgba(255,59,59,.06);
}

/* Var olan yumuşak glow */
.affiliate-testimonials::before{
  content:"";
  position:absolute; inset:-10% -20%;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(255,0,0,0.06), transparent 60%),
    radial-gradient(45% 45% at 70% 65%, rgba(255,0,0,0.04), transparent 65%);
  z-index:-1;
}

/* === Premium Aurora Arka Plan (2. seçenek) === */
.affiliate-testimonials::after{
  content:"";
  position:absolute; inset:-25% -30%;
  z-index:-1;
  background:
    radial-gradient(1200px 800px at 65% 35%, var(--aurora),  transparent 60%),
    radial-gradient( 900px 700px at 30% 70%, var(--aurora2), transparent 65%);
  mix-blend-mode: screen;              /* koyu fonda premium parlaklık */
  opacity:.9;
  animation: aurora-pan 18s ease-in-out infinite alternate;
}
@keyframes aurora-pan{
  0%   { transform: translate3d(-3%, -2%, 0) rotate(0.001deg); }
  100% { transform: translate3d( 3%,  2%, 0) rotate(0.001deg); }
}

.affiliate-testimonials h2{ color:#fff; margin-bottom:8px; }
.section-subtext{ color:rgba(255,255,255,.7); max-width:760px; margin:0 auto 24px; }

/* === Slider === */
.t-slider { 
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;

  /* Drag desteği */
  touch-action: pan-y;
  cursor: grab;
  user-select: none;

  /* edge fade */
  -webkit-mask-image: linear-gradient(to right,
     transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
          mask-image: linear-gradient(to right,
     transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
}
.t-slider.dragging { cursor: grabbing; }

.t-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden; /* JS kontrolü için gizli */
  overscroll-behavior-x: none;
  padding: 15px 0 10px 0;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch; /* iOS momentum */
  scroll-snap-type: none !important;
  gap: 20px; /* kartlar arası boşluk */
  width: 100%;
  min-height: 200px;
}

.t-track::-webkit-scrollbar { 
  display: none; 
}

.testimonial-card,
.testimonial-card.is-clone {
  flex: 0 0 300px !important; /* sabit genişlik, shrink yok */
  min-width: 300px !important;
  max-width: 300px !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0 !important; /* gap ile hallediliyor */
  pointer-events: auto !important;
  height: auto;
}


/* Kart genişlikleri (responsive) - temel stil */
.testimonial-card{
  scroll-snap-align: start;
  flex: 0 0 280px; /* sabit genişlik */
  background: rgba(255,255,255,0.015);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;
  padding:26px 22px;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden; /* sheen taşmasın */
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Quote PNG (3. seçenek) */
.quote-icon{
  position:absolute; left:14px; top:12px;
  width:18px; height:18px; object-fit:contain;
  z-index: 2;                         /* metnin üstünde */
  opacity:.45;
  /* BEYAZ */
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,59,59,.25));
  /* KIRMIZI istersen üsttekini kapatıp şunu aç:
     filter: invert(14%) sepia(98%) saturate(7495%) hue-rotate(-2deg) brightness(102%) contrast(104%); */
}

/* İçerik */
.testimonial-text{
  margin: 10px 0 18px;
  color:#e0e0e0; line-height:1.65; font-size:16px;
  text-align:left;
  padding-left: 12px; /* ikon ile hizalama */
}
.testimonial-author{
  font-weight:700; color:#ff3b3b; font-size:13.5px;
  text-transform: uppercase; letter-spacing:.5px;
  padding-left: 12px;
}

/* Hover canlandırma + premium “sheen” */
.testimonial-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,59,59,.55);
}
.testimonial-card::before{
  content:"";
  position:absolute; inset:-120% -20%;
  background: linear-gradient(100deg, transparent 40%, rgba(255,255,255,.06) 50%, transparent 60%);
  transform: translateX(-30%) rotate(8deg);
  pointer-events:none;
  opacity:0;
  transition: opacity .35s ease, transform .8s ease;
}
.testimonial-card:hover::before{
  opacity:1;
  transform: translateX(30%) rotate(8deg);
}

/* Navigasyon okları */
.t-nav{
  position:absolute; 
  top:50%; 
  transform:translateY(-50%);
  width:36px; 
  height:36px; 
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff; 
  font-size:20px;
  cursor:pointer; 
  z-index:2;
  backdrop-filter: blur(6px);
  transition: background .2s ease, transform .2s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}
.t-prev{ left:-6px; } 
.t-next{ right:-6px; }
.t-nav:hover{ background: rgba(255,59,59,.28); transform: translateY(-50%) scale(1.05); }

/* Dots */
.t-dots{ display:flex; justify-content:center; gap:8px; margin-top:16px; }
.t-dot{
  width:8px; height:8px; border-radius:50%;
  background: rgba(255,255,255,.25);
  transition: transform .2s ease, background .2s ease;
}
.t-dot.is-active{ background:#ff3b3b; transform: scale(1.2); }

/* Scroll ile giriş animasyonu (opsiyonel) */
@media (prefers-reduced-motion: no-preference){
  .testimonial-card{ opacity:0; transform: translateY(12px); }
  .testimonial-card.t-in{ opacity:1; transform: translateY(0); transition:opacity .5s ease, transform .5s ease; }
}

/* Quote ikonu: çok hafif nefes alma + parıltı (3. seçenek mikro etkileşim) */
@media (prefers-reduced-motion: no-preference){
  .quote-icon{
    animation: quote-breathe 4.8s ease-in-out infinite;
    transform-origin: 0 0;
  }
  @keyframes quote-breathe{
    0%,100% { opacity:.42; filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,59,59,.22)); transform: scale(1); }
    50%     { opacity:.58; filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,59,59,.35)); transform: scale(1.035); }
  }
}

.affiliate-faq {
  padding: 45px 15px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #eee;
  margin-bottom: 150px;
}

.affiliate-faq h2 {
  color: #f5f5f5;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.03em;
}

.affiliate-faq h2::after {
  content: none;
}

.faq-grid.two-columns {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  flex-direction: column;
  display: flex;
  min-height: 60px;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.1);
}

.faq-question {
  color: #ddd;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  padding: 20px 30px;
  width: 100%;
  text-align: left;
  position: relative;
  outline: none;
  letter-spacing: 0.02em;
  transition: background-color 0.3s, color 0.3s;
  font-family: 'Montserrat', sans-serif;
  background: transparent;
  border: none;
  user-select: none;
}

.faq-question:hover {
  background-color: rgba(255, 107, 107, 0.05);
  border-radius: 16px;
  color: #ff3b3b;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 700;
  color: #bbb;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question.active::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  color: #ff3b3b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'Rubik', sans-serif;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding: 15px 30px 25px 30px;
}

.benefit-card img,
.step-card img {
  width: 50px;
  filter: invert(1) brightness(2); /* Siyah → Beyaz */
  opacity: 0.8;
  transition: 0.3s;
}

.benefit-card:hover img,
.step-card:hover img {
  opacity: 1;
  filter: invert(1) brightness(2) drop-shadow(0 0 6px rgba(255,0,0,0.6));
}

/* ==== ORBIT BÖLÜMÜ ==== */
.orbit-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}

.orbit-container {
  position: relative;
  width: 700px;
  height: 600px;
}

.center-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120px; height: 120px;
}

.center-logo img {
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(255,0,0,0.6));
}

/* Orbit Alanı */
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  animation: orbit-rotate 30s linear infinite;
}

/* İç çember ve dış çember */
.orbit1 { width: 300px; height: 300px; animation-duration: 25s; }
.orbit2 { width: 420px; height: 420px; animation-duration: 40s; }

/* Orbit Çizgisi */
.orbit-line {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255,0,0,0.25);
  border-radius: 50%;
  z-index: -1;
}

/* Orbit İçindeki Profil Fotoğrafları */
.orbit-item {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,0,0,0.6);
  box-shadow: 0 0 10px rgba(255,0,0,0.4);
  transition: 0.3s;
}

/* Hover'da büyüme efekti */
.orbit-item:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255,0,0,0.9);
}

/* Orbit1 konumları */
.orbit1 .orbit-item:nth-child(2) { top: -30px; left: 50%; transform: translateX(-50%); }
.orbit1 .orbit-item:nth-child(3) { right: -30px; top: 50%; transform: translateY(-50%); }
.orbit1 .orbit-item:nth-child(4) { bottom: -30px; left: 50%; transform: translateX(-50%); }
.orbit1 .orbit-item:nth-child(5) { left: -30px; top: 50%; transform: translateY(-50%); }

/* Orbit2 konumları */
.orbit2 .orbit-item:nth-child(2) { top: -30px; left: 50%; transform: translateX(-50%); }
.orbit2 .orbit-item:nth-child(3) { right: -30px; top: 50%; transform: translateY(-50%); }
.orbit2 .orbit-item:nth-child(4) { bottom: -30px; left: 50%; transform: translateX(-50%); }
.orbit2 .orbit-item:nth-child(5) { left: -30px; top: 50%; transform: translateY(-50%); }

/* Dönüş Animasyonu */
@keyframes orbit-rotate {
  0% { transform: translate(-50%,-50%) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Responsive Orbit */
.orbit-comment-box {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 24px;
  color: white;
  text-align: center;
  max-width: 320px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
  z-index: 20;
  transform: translateX(-50%); /* yorum kutusunu ikon ortasına sabitler */
}

.orbit-comment-arrow {
  position: absolute;
  bottom: -10px; /* altına yaslanarak yukarı baksın */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(255,255,255,0.08);
  z-index: 1;
}

.orbit-comment-box.show {
  opacity: 1;
  pointer-events: auto;
  animation: commentFadeUp 0.2s ease forwards;
}


.orbit-comment-author {
  display: block;
  margin-top: 8px;
  color: #ff3b3b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.orbit-item.active {
  transform: scale(1.4) !important;
  z-index: 10;
  box-shadow: 0 0 18px rgba(255,0,0,0.7);
}
@keyframes commentFadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
/* ======= TABLET RESPONSIVE (768px - 1024px) ======= */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Testimonials için özel tablet kuralları */
  .affiliate-testimonials .t-slider {
    overflow: hidden !important;
  }
  
  .affiliate-testimonials .t-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    width: 100% !important;
    height: auto !important;
    align-items: stretch !important;
  }
  
  .affiliate-testimonials .testimonial-card,
  .affiliate-testimonials .testimonial-card.is-clone {
    flex: 0 0 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    width: 320px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    float: none !important;
    position: relative !important;
  }
  /* Hero bölümü - mobili base al, büyüt */
  .affiliate-hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 30px;
    gap: 60px;
  }
  
  .affiliate-content {
    text-align: center;
    margin-left: 0;
  }
  
  .affiliate-content h1 {
    font-size: 36px;
  }
  
  .affiliate-content p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 25px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 50px;
  }
  
  .hero-stats strong {
    font-size: 24px;
  }
  
  .hero-stats span {
    font-size: 13px;
  }
  
  /* Orbit büyütülmüş ama optimize */
  .affiliate-orbit {
    margin-right: 0;
    margin-top: 40px;
  }
  
  .orbit-container { 
    width: 750px; 
    height: 550px; 
  }
  
  .orbit1 { 
    width: 280px; 
    height: 280px; 
  }
  
  .orbit2 { 
    width: 420px; 
    height: 420px; 
  }
  
  .orbit-item { 
    width: 45px; 
    height: 45px; 
  }
  
  .center-logo {
    width: 90px;
    height: 90px;
  }
  
  /* Yorum kutusu tablet için */
  .orbit-comment-box {
    width: 280px;
    max-width: 280px;
    padding: 12px 16px;
  }
  
  .orbit-comment-text {
    font-size: 15px;
  }
  
  /* Container düzenlemesi */
  .affiliate-container {
    padding: 70px 30px;
    gap: 80px;
  }
  
  /* Benefits grid tablet için */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
  
  .benefit-card {
    padding: 35px 25px;
  }
  
  .benefit-card h3 {
    font-size: 18px;
  }
  
  .benefit-card p {
    font-size: 15px;
  }
  
  /* Steps tablet için */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
  }
  
  .step-card {
    padding: 25px 15px;
  }
  
  .step-card h3 {
    font-size: 17px;
  }
  
  .step-card p {
    font-size: 14px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
  }
  
  /* Panel section tablet */
  .affiliate-panel-v2 {
    padding: 100px 30px;
  }
  
  .panel-grid {
    gap: 50px;
  }
  
  .panel-text h2 {
    font-size: 36px;
  }
  
  .panel-text p {
    font-size: 17px;
  }
  
  .panel-kpis {
    gap: 15px;
    margin: 20px 0 30px;
  }
  
  .kpi {
    padding: 12px 16px;
  }
  
  /* Who section tablet */
  .affiliate-who-v2 {
    padding: 70px 30px 90px;
  }
  
  .who-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .who-card-v2 {
    padding: 35px 25px;
  }
  
  .who-card-v2 h3 {
    font-size: 17px;
  }
  
  /* Testimonials tablet - yatay scroll sürüyor */
  .affiliate-testimonials {
    padding: 70px 30px;
    text-align: center !important;
  }
  
  .affiliate-testimonials h2 {
    text-align: center !important;
    margin: 0 auto !important;
  }
  
  .affiliate-testimonials .section-subtext {
    text-align: center !important;
    margin: 0 auto 24px !important;
  }
  
  .t-slider {
    width: 100%;
    overflow: hidden;
  }
  
  .t-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  .testimonial-card,
  .testimonial-card.is-clone {
    flex: 0 0 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    padding: 30px 25px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
  }
  
  .testimonial-text {
    font-size: 17px;
    padding-left: 15px;
  }
  
  .testimonial-author {
    font-size: 14px;
    padding-left: 15px;
  }
  
  /* FAQ tablet */
  .affiliate-faq {
    padding: 60px 30px;
    margin-bottom: 120px;
  }
  
  .faq-grid.two-columns {
    gap: 40px;
  }
  
  .faq-question {
    font-size: 19px;
    padding: 25px 35px;
  }
  
  .faq-answer {
    font-size: 16px;
    padding: 0 35px;
  }
  
  .faq-answer.open {
    padding: 20px 35px 30px 35px;
  }
}

/* ======= DESKTOP RESPONSIVE (1025px+) ======= */
@media (max-width: 1024px) {
  /* 1024px ve altı - yatay scroll devam ediyor */
  .testimonial-card,
  .testimonial-card.is-clone { 
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    display: block !important;
  }
  
  .t-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: hidden !important;
  }
  
  /* 992px ve altı */
  .affiliate-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .affiliate-content {
    text-align: center;
    margin-left: 0;
  }
  
  .affiliate-orbit {
    margin-top: 60px;
    margin-right: 0;
  }
  
  /* 900px ve altı */
  .affiliate-container {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .step-card {
    flex: 1;
    margin: 0 8px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    top: -10px;
  }
  
  .panel-text h2 { 
    font-size: 32px; 
  }
  
  .panel-image img { 
    max-width: 92%; 
  }
  
  .panel-kpis { 
    gap: 10px; 
  }
  
  .fc-1 { 
    right: 10%; 
    top: 4%; 
  }
  
  .fc-2 { 
    right: 4%; 
    bottom: 10%; 
  }
}

/* ======= MOBILE RESPONSIVE (768px ve altı) ======= */
@media (max-width: 768px) {
  /* Testimonials mobil için özel kurallar */
  .affiliate-testimonials .t-slider {
    overflow: hidden !important;
  }
  
  .affiliate-testimonials .t-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    width: 100% !important;
    align-items: stretch !important;
  }
  
  .affiliate-testimonials .testimonial-card,
  .affiliate-testimonials .testimonial-card.is-clone {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    width: 280px !important;
    height: auto !important;
    min-height: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    float: none !important;
    position: relative !important;
    padding: 26px 22px !important;
    box-sizing: border-box !important;
  }
  
  .affiliate-testimonials .testimonial-text {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
    padding-left: 0 !important;
  }
  
  .affiliate-testimonials .testimonial-author {
    padding-left: 0 !important;
    text-align: center !important;
    margin-top: auto !important;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .orbit-container { 
    width: 400px; 
    height: 400px;
 
  }
  
  .orbit1 { 
    width: 200px; 
    height: 200px; 
  }
  
  .orbit2 { 
    width: 280px; 
    height: 280px; 
  }
  
  .orbit-item { 
    width: 40px; 
    height: 40px; 
  }
  
  .who-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .who-card-v2,
  .testimonial-card {
    text-align: center;
  }
  
  .testimonial-text {
    text-align: center;
    padding-left: 0;
  }
  
  .testimonial-card,
  .testimonial-card.is-clone { 
    flex: 0 0 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
  }
  
  .t-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    overflow-x: hidden !important;
  }
}

/* ===============================================
   NEW TESTIMONIALS SLIDER STYLES
   =============================================== */

/* Replace old .t-slider styles with new testimonials-slider */
.testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.testimonials-slider.dragging { 
  cursor: grabbing; 
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  /* Edge fade effect */
  -webkit-mask-image: linear-gradient(to right, 
    transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, 
    transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  padding: 15px 0 10px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: none !important;
  gap: 20px;
  width: 100%;
  min-height: 200px;
}

.slider-track::-webkit-scrollbar { 
  display: none; 
}

/* Testimonial slide content - replaces .testimonial-card */
.testimonial-slide,
.testimonial-slide.is-clone {
  flex: 0 0 300px !important;
  min-width: 300px !important;
  max-width: 300px !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0 !important;
  pointer-events: auto !important;
  height: auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-slide.is-clone {
  pointer-events: auto !important;
}

.testimonial-slide:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 8px 25px rgba(255, 59, 59, 0.15);
}

.testimonial-slide .quote-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 20px;
  height: 20px;
  opacity: 0.4;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 59, 59, 0.3));
  z-index: 2;
}

.testimonial-slide .testimonial-text {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  margin: 30px 0 20px 0;
  flex-grow: 1;
  padding: 0 16px;
}

.testimonial-slide .testimonial-author {
  color: #ff3b3b;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 0 16px 16px 16px;
}

/* Sheen effect */
.testimonial-slide::before {
  content: "";
  position: absolute;
  inset: -100% -20%;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  transform: translateX(-100%) rotate(8deg);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.testimonial-slide:hover::before {
  opacity: 1;
  transform: translateX(100%) rotate(8deg);
}

/* Slider Controls - replaces .t-nav */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  pointer-events: auto;
  user-select: none;
}

.slider-btn:hover {
  background: rgba(255, 59, 59, 0.25);
  border-color: rgba(255, 59, 59, 0.4);
  transform: scale(1.1);
}

.prev-btn {
  margin-left: -20px;
}

.next-btn {
  margin-right: -20px;
}

/* Indicators - replaces .t-dots */
.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff3b3b;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255, 59, 59, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-slide,
  .testimonial-slide.is-clone { 
    flex: 0 0 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
  }
  
  .slider-controls {
    display: none; /* Hide navigation buttons on mobile */
  }
  
  .slider-track {
    gap: 16px !important;
  }
  
  .testimonial-slide .testimonial-text {
    font-size: 14px;
    text-align: center;
    padding-left: 0;
  }
  
  .testimonial-slide .testimonial-author {
    font-size: 12px;
    text-align: center;
  }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .testimonial-slide .quote-icon {
    animation: quote-glow 3s ease-in-out infinite;
  }
  
  @keyframes quote-glow {
    0%, 100% { 
      opacity: 0.4;
      filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 59, 59, 0.3));
    }
    50% { 
      opacity: 0.6;
      filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 59, 59, 0.5));
    }
  }
  
  .indicator.active {
    animation: indicator-pulse 2s ease-in-out infinite;
  }
  
  @keyframes indicator-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 59, 59, 0.5); }
    50% { box-shadow: 0 0 15px rgba(255, 59, 59, 0.8); }
  }
}

/* === Affiliate Sayfası İçin Siyah Animasyon Override === */
/* test.css'teki beyaz pageFadeIn animasyonunu siyah yap */
body {
  background-color: #000 !important; /* Beyaz flash'ı önle */
}

/* Sayfa açılış animasyonunu siyah yap */
@keyframes pageFadeIn {
  from { 
    opacity: 0; 
    background-color: #000; 
  }
  to { 
    opacity: 1; 
    background-color: #000; 
  }
}

/* Page transition için siyah background */
.page-transition {
  background: #000 !important;
}
