/* ===== ROOT ===== */
:root {
  --cyan: #00f5ff;
  --green: #34ff9a;
  --dark: #0a0e1a;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR (HERO ÜZERİNDE, SONRA SABİT + ANİMASYON) ===== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(0px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo h1 {
  font-size: clamp(28px, 5vw, 36px);

}
.logo h1 .media-glow {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== MEDIA YANIP SÖNME EFEKTİ ===== */


/* Navbar sabitlendiğinde daha güçlü glow */
.header.scrolled .media-glow {
  animation: mediaPulseScrolled 1.8s infinite ease-in-out;
}

@keyframes mediaPulseScrolled {
  0%, 100% {
    opacity: 0.8;
    text-shadow: 
      0 0 8px rgba(52, 255, 154, 0.5),
      0 0 15px rgba(52, 255, 154, 0.3);
  }
  50% {
    opacity: 1;
    text-shadow: 
      0 0 25px rgba(52, 255, 154, 1),
      0 0 35px rgba(52, 255, 154, 0.8),
      0 0 50px rgba(52, 255, 154, 0.6);
  }
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  font-size: 15px;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: var(--green);
  transition: width 0.4s ease;
}

.nav a:hover::after, .nav a.active::after {
  width: 100%;
}

.nav a:hover, .nav a.active {
  color: var(--cyan);
}

.btn-contact {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
  transition: all 0.4s ease;
}

.btn-contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

/* ===== SCROLLED: NAVBAR SABİT & ANİMASYONLU ===== */
.header.scrolled {
  position: fixed;
  top: 0;
  padding: 16px 0;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(52, 255, 154, 0.15);
  animation: slideDown 0.6s ease-out forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.blur-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(52, 255, 154, 0.2) 0%, transparent 50%);
  filter: blur(80px);
  z-index: 0;
  animation: breathe 12s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.gradient-glow {
  position: absolute;
  top: 15%; right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 255, 154, 0.3), transparent 70%);
  filter: blur(100px);
  z-index: 0;
  animation: glow 8s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { transform: translateX(-40px) scale(0.9); }
  100% { transform: translateX(40px) scale(1.1); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== HERO İÇERİK ===== */
.hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  color: var(--cyan);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-content h2 {
  font-size: clamp(44px, 8vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: clamp(16px, 4vw, 19px);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 650px;
  line-height: 1.7;
}

.social-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.social-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
  background: rgba(52, 255, 154, 0.25);
  border-color: var(--green);
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 30px rgba(52, 255, 154, 0.3);
}

.btn-video {
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-video:hover {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #000;
  transform: translateY(-6px);
}

/* ===== 3D SOSYAL KUTU (SAĞ TARAFTA) ===== */
.social-card {
  flex: 0 0 300px;
  max-width: 340px;
  perspective: 1000px;
}

.card-inner {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(52, 255, 154, 0.15);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-card:hover .card-inner {
  transform: rotateY(-3deg) rotateX(1deg) translateY(-12px);
  box-shadow: 
    0 35px 90px rgba(0, 0, 0, 0.45),
    0 0 70px rgba(52, 255, 154, 0.3);
}

/* 3D İKON */
.icon-3d {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.3),
    inset 0 2px 4px rgba(255,255,255,0.1);
}

.icon-3d i {
  font-size: 32px;
  color: #fff;
  transform: translateZ(20px);
  transition: all 0.4s ease;
}

.social-item:hover .icon-3d {
  transform: translateZ(20px) rotateY(180deg) scale(1.15);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.4),
    0 0 30px rgba(52, 255, 154, 0.4);
}

.social-item:hover .icon-3d i {
  color: var(--cyan);
  filter: drop-shadow(0 0 15px var(--cyan));
}

.social-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.social-item:nth-child(1) { animation-delay: 0.1s; }
.social-item:nth-child(2) { animation-delay: 0.3s; }
.social-item:nth-child(3) { animation-delay: 0.5s; }
.social-item:nth-child(4) { animation-delay: 0.7s; }

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

.social-item span {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 16px;
  transition: color 0.3s;
}

.social-item:hover span {
  color: var(--cyan);
}

/* ===== MOBİL UYUMLU ===== */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .hero-content {
    text-align: center;
  }
  .social-buttons {
    justify-content: center;
  }
  .social-card {
    flex: none;
    max-width: 340px;
    width: 100%;
  }
  .card-inner {
    transform: none !important;
  }
  .icon-3d {
    width: 56px;
    height: 56px;
  }
  .icon-3d i {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 16px;
  }
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  .header {
    padding: 20px 0;
  }
  .header.scrolled {
    padding: 12px 0;
  }
  .hero {
    padding: 140px 0 80px;
  }
}

@media (max-width: 640px) {
  .hero-content h2 {
    font-size: 44px;
  }
  .hero {
    padding: 120px 0 60px;
  }
}
/* ===== HAMBURGER İKON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--cyan);
  border-radius: 3px;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBİL MENÜ (TAM EKRAN) ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 50%;
  background: var(--green);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  width: 60%;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.mobile-contact {
  margin-top: 20px;
  padding: 14px 32px !important;
  font-size: 16px !important;
}

/* ===== MOBİL UYUMLU (768px ALTI) ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .desktop-nav,
  .desktop-contact {
    display: none !important;
  }

  .header .container {
    justify-content: space-between;
    padding: 0 16px;
  }

  .header {
    padding: 20px 0;
  }

  .header.scrolled {
    padding: 12px 0;
  }

  .hero {
    padding: 140px 0 80px;
  }
}

/* Desktop'ta mobil menü gizli */
@media (min-width: 769px) {
  .mobile-menu,
  .hamburger {
    display: none !important;
  }
}
.talents-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.talents-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
  padding: 0 10px;
}

.talent-card {
  min-width: calc(25% - 22.5px); /* 4 tane görünür (gap hesaba katılarak) */
  max-width: calc(25% - 22.5px);
}

@media (max-width: 1024px) {
  .talent-card {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .talent-card {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .talent-card {
    min-width: calc(80% - 10px);
    max-width: calc(80% - 10px);
  }
}

/* Slider Butonları */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0e17;
  color: #fff;
}

.talents-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f1624 0%, #1a2332 100%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.agency-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #00ff9d;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00ff9d, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.btn-all {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg, #00ff9d, #00d4ff);
  color: #0a0e17;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: absolute;
  top: 20px;
  right: 0;
}

.btn-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 157, 0.3);
}

.talents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.talent-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #131a2a;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.talent-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
}

.card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.talent-card:hover .card-image img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, #0a0e17 100%);
  pointer-events: none;
}

.card-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.card-info h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.card-info span {
  font-size: 1rem;
  color: #00ff9d;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
  
  .btn-all {
    position: static;
    margin-top: 20px;
  }
  
  .talents-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}.talents-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.talents-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
  padding: 0 10px;
}

.talent-card {
  min-width: calc(25% - 22.5px); /* 4 tane görünür (gap hesaba katılarak) */
  max-width: calc(25% - 22.5px);
}

@media (max-width: 1024px) {
  .talent-card {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .talent-card {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .talent-card {
    min-width: calc(80% - 10px);
    max-width: calc(80% - 10px);
  }
}

/* Slider Butonları */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  background: rgba(0, 255, 157, 0.15);
  border: 2px solid #00ff9d;
  border-radius: 50%;
  color: #00ff9d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #00ff9d;
  color: #0a0e17;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

@media (max-width: 768px) {
  .slider-btn {
    width: 48px;
    height: 48px;
  }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
}
.talents-section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* BLURLU ARKA PLAN KATMANI */
.talents-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(10, 14, 23, 0.85) 0%, 
    rgba(26, 35, 50, 0.75) 100%
  );
  backdrop-filter: blur(12px);        /* İşte o güzel blur efekti */
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(0, 255, 157, 0.15);
}

/* İçerisindeki tüm içeriklerin blur’un üstünde kalması için */
.container {
  position: relative;
  z-index: 2;
}

/* Opsiyonel: Daha derinlik katmak için hafif iç gölge */
.talents-slider {
  background: rgba(19, 26, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 40px 20px;
  border: 1px solid rgba(0, 255, 157, 0.1);
}
/* MOBILE OPTİMİZASYONLARI – EN ALTA EKLE */

@media (max-width: 768px) {
  .talents-section {
    padding: 80px 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }

  .agency-name {
    font-size: 1.3rem;
  }

  /* "Tüm Yayıncıları Gör" butonu mobilde ortalansın ve büyüsün */
  .btn-all {
    position: static !important;
    display: block;
    margin: 30px auto 0;
    padding: 14px 40px !important;
    font-size: 1.1rem;
    width: fit-content;
  }

  /* Slider wrapper */
  .talents-slider {
    padding: 20px 0;
  }

  /* Mobilde 1 kart görünsün */
  .talent-card {
    min-width: calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
    margin: 0 auto;
  }

  /* Ok butonları mobilde daha büyük ve kenarda */
  .slider-btn {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 157, 0.25);
    border: 2px solid #00ff9d;
    backdrop-filter: blur(12px);
  }

  .prev-btn { left: 8px; }
  .next-btn { right: 8px; }

  /* Kart içindeki isimler mobilde daha okunaklı */
  .card-info h4 {
    font-size: 1.6rem;
  }

  .card-info span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.2rem !important;
  }

  .talent-card {
    min-width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
  }

  /* Blur’u çok hafif düşür ki eski telefonlar kasmaz */
  .talents-section::before {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .talents-slider {
    padding: 15px 0;
  }
}
.top3-area {
    padding: 70px 20px;
    text-align: center;
    background: #0a1120;
}

.top3-title {
    font-size: 45px;
    font-weight: 800;
    background: linear-gradient(90deg, #00eaff, #2bff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gaming ve Show yan yana */
.top3-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.top3-block {
    width: 600px;
}

.agency-name {
    font-size: 18px;
    font-weight: 600;
    color: #70ffdf;
    opacity: 0.8;
}

.category-name {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0,255,200,0.4);
}

.top3-cards {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
}

/* Kartlar */
.top3-card {
    width: 200px;
    background: linear-gradient(180deg, rgba(0,255,180,0.12), rgba(0,120,255,0.12));
    border: 1px solid rgba(0,255,200,0.3);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(6px);
    position: relative;
    box-shadow: 0 0 20px rgba(0,255,200,0.15);
    transition: .3s;
}

.top3-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0,255,200,0.4);
}

.top3-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.nickname {
    font-size: 17px;
    font-weight: 700;
    margin-top: 10px;
    background: linear-gradient(90deg, #00f2ff, #2bff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role {
    font-size: 13px;
    color: #cfcfcf;
}

/* Kupa ikonları */
.cup {
    font-size: 40px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.cup-1 { color: #ffe600; }
.cup-2 { color: #ff7b00; }
.cup-3 { color: #cfcfcf; }

/* Mobile */
@media(max-width: 768px) {

    /* Mobilde kart sırası 1 → 2 → 3 olacak */
    .top3-card.first { order: 1; }
    .top3-card.second { order: 2; }
    .top3-card.third { order: 3; }

    /* Mobil kart görünümü */
    .top3-cards {
        flex-direction: column;
        align-items: center;
    }

    .top3-card {
        width: 90%;
        max-width: 320px;
    }
}
/* Sadece masaüstünde 1 numara biraz yukarıda dursun */
@media(min-width: 769px) {

    /* 1 numara yukarı kalkıyor */
    .top3-card.first {
        transform: translateY(-30px);
    }

    /* Başlıkları biraz yukarı alıyoruz ki çakışmasın */
    .category-name {
        margin-bottom: 50px; /* eski 30px ya da 25px idi */
    }
}
/* arka plan */
.zm-section {
    padding: 80px 0;
    background: #060b15;
    color: #fff;
}

/* başlık */
.zm-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.3;
}

.zm-title span {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #00eaff, #34ff8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* layout */
.zm-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

/* sol bilgilendirme */
.zm-info-box {
    width: 450px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0,255,200,0.15);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 25px rgba(0,255,200,0.08);
}

.zm-info-icon {
    width: 85px;
    margin-bottom: 15px;
}

.zm-info-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #00eaff, #34ff8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.zm-info-desc {
    font-size: 15px;
    color: #d6d6d6;
    margin-bottom: 25px;
}

.zm-info-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    color: #9afcd8;
}

.zm-info-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #cfcfcf;
}

.zm-info-btn {
    display: inline-block;
    background: linear-gradient(90deg, #00eaff, #34ff8b);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
}

/* form */
.zm-form {
    flex: 1;
    min-width: 450px;
}

.zm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.zm-form input,
.zm-form select {
    width: 100%;
    padding: 14px 18px;
    background: #0d1321;
    border: 1px solid rgba(0,255,200,0.15);
    border-radius: 35px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.25s;
}

.zm-form input:focus,
.zm-form select:focus {
    border-color: #00ffaa;
    box-shadow: 0 0 8px rgba(0,255,180,0.4);
}

.zm-form input::placeholder {
    color: #8fa9b0;
}

.zm-file-box input {
    width: 100%;
    margin-top: 20px;
}

.zm-submit-btn {
    width: 100%;
    padding: 16px 0;
    border-radius: 30px;
    background: linear-gradient(90deg, #00eaff, #34ff8b);
    color: #000;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 25px;
}

/* mobile */
@media(max-width: 768px) {
    .zm-grid {
        grid-template-columns: 1fr;
    }
    .zm-info-box {
        width: 100%;
    }
}
/* ===========================
   ZENOVA MEDIA – SPONSOR SECTION
   =========================== */

.zm-sponsor-section {
    padding: 70px 0 100px;
    background: #0b0f18; /* koyu arka plan */
    color: #fff;
}

/* -------- Başlık Alanı -------- */
.sponsor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.sponsor-sub {
    font-size: 18px;
    background: linear-gradient(90deg,#00eaff,#2bff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sponsor-title {
    font-size: 40px;
    font-weight: 800;
}

/* -------- Teklif Al Butonu -------- */
.sponsor-btn {
    background: linear-gradient(90deg,#00eaff,#2bff88);
    color: #000;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.sponsor-btn:hover {
    opacity: .85;
}

/* -------- Slider Yapısı -------- */
.sponsor-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

/* Wrapper → Slider kayacak alan */
.talents-wrapper {
    display: flex;
    gap: 25px;
    transition: transform 0.35s ease;
}

/* Kartlar */
.sponsor-card {
    min-width: 300px;
    height: 150px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,255,200,0.18);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 18px rgba(0,255,200,0.08);
    color: rgba(255,255,255,0.35);
    font-size: 26px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
}

/* -------- Ok Butonları (Script Uyumu) -------- */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,255,200,0.12);
    border: 1px solid rgba(0,255,200,0.25);
    color: #00ffc8;
    font-size: 28px;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
    z-index: 20; /* ÖNDE OLMASI ŞART */
    transition: .25s ease;
}

.prev-btn { left: 5px; }
.next-btn { right: 5px; }

.prev-btn:hover,
.next-btn:hover {
    background: rgba(0,255,200,0.2);
    border-color: rgba(0,255,200,0.45);
    color: #74ffd9;
}

/* -------- Mobil Uyumu -------- */
@media(max-width: 768px) {

    .sponsor-card {
        min-width: 85%;
    }

    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    .sponsor-title {
        font-size: 32px;
    }
}
/* ===============================
   ZENOVA ABOUT SECTION
===============================*/
.zenova-about-section {
    padding: 90px 0;
    background: #0b0f18;
    color: #fff;
}

.about-top-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,200,0.15);
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 0 30px rgba(0,255,200,0.05);
}

.about-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#00eaff,#29ff89);
    color: #000;
    margin-bottom: 15px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-desc {
    font-size: 17px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,255,200,0.12);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,255,200,0.05);
    backdrop-filter: blur(4px);
    transition: .25s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0,255,200,0.3);
    box-shadow: 0 0 25px rgba(0,255,200,0.15);
}

.about-box-title {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg,#00eaff,#29ff89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.about-box p {
    line-height: 1.7;
    opacity: 0.85;
    font-size: 15px;
}

/* Mobil */
@media(max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
/* Kart + ikonlar için sarmal */
.about-top-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

/* Zaten vardı, aynen kullan – istersen bunu olduğu gibi bırakırsın */
.about-top-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,200,0.15);
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0,255,200,0.05);
    z-index: 2;
}

/* 3D Sosyal ikonlar */
.about-floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #ffffff 0, #00ffc8 35%, #00111b 100%);
    color: #050816;
    box-shadow: 0 18px 35px rgba(0,0,0,0.55);
    transform-style: preserve-3d;
    transform: translateZ(0) rotate3d(1, -1, 0, 15deg);
    animation: floatIcon 6s ease-in-out infinite;
    z-index: 1;
}

/* Iconların kendisi */
.about-floating-icon i {
    font-size: 28px;
    text-shadow: 0 0 12px rgba(0,255,200,0.8);
}

/* Her bir ikonun konumu */
.icon-ig {
    top: -25px;
    left: 10%;
    animation-delay: 0s;
}

.icon-tt {
    top: -40px;
    right: 10%;
    animation-delay: 0.8s;
}

.icon-dc {
    bottom: -15px;
    left: 15%;
    animation-delay: 1.3s;
}

.icon-yt {
    bottom: -15px;
    right: 15%;
    animation-delay: 2s;
}

/* Yumuşak yukarı-aşağı 3D float animasyonu */
@keyframes floatIcon {
    0% {
        transform: translateY(0) translateZ(0) rotate3d(1,-1,0,15deg);
        box-shadow: 0 18px 35px rgba(0,0,0,0.55);
    }
    50% {
        transform: translateY(-12px) translateZ(12px) rotate3d(1,-1,0,22deg);
        box-shadow: 0 25px 45px rgba(0,0,0,0.75);
    }
    100% {
        transform: translateY(0) translateZ(0) rotate3d(1,-1,0,15deg);
        box-shadow: 0 18px 35px rgba(0,0,0,0.55);
    }
}

/* Mobilde ikonları biraz küçült ve yaklaştır */
@media (max-width: 768px) {
    .about-floating-icon {
        width: 55px;
        height: 55px;
        border-radius: 18px;
    }

    .icon-ig { left: 3%; }
    .icon-tt { right: 5%; }
    .icon-dc { left: 8%; }
    .icon-yt { right: 8%; }
}
/* ===================== HİZMETLER ======================= */

.zm-services {
    padding: 120px 0;
    background: linear-gradient(to bottom, #0b0f19, #0d121f 80%);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-sub {
    display: inline-block;
    font-size: 18px;
    color: #00ffd5;
    opacity: 0.8;
    margin-bottom: 10px;
    font-weight: 600;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #00ffd5, #00a3ff);
    -webkit-background-clip: text;
    color: transparent;
}


/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0, 255, 200, 0.15);
    border-radius: 22px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
    min-height: 320px;
}

.service-card:hover {
    border-color: rgba(0,255,230,0.4);
    box-shadow: 0 0 30px rgba(0,255,220,0.15);
    transform: translateY(-5px);
}

/* BADGE */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0f182b;
    border: 1px solid rgba(0,255,200,0.4);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
}

/* ICON */
.service-icon {
    width: 70px;
    margin-bottom: 20px;
}

/* HİZMET İSMİ */
.service-name {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

/* AÇIKLAMA */
.service-desc {
    color: #c8d1df;
    line-height: 1.6;
    font-size: 16px;
}



/* MOBİL UYUMLULUK */
@media(max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* ======================= FAQ SECTION ======================= */

.zm-faq {
    padding: 120px 0;
    background: #0B0F19;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-sub {
    color: #00ffd5;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.85;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
    background: linear-gradient(90deg, #00ffd5, #00a3ff);
    -webkit-background-clip: text;
    color: transparent;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,200,0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

/* Soru */
.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .faq-icon {
    font-size: 26px;
    transition: transform 0.3s;
}

/* Cevap */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    color: #cfd8e5;
    font-size: 17px;
    line-height: 1.6;
    padding: 15px 0;
}

/* Açık olduğunda */
.faq-item.active {
    border-color: rgba(0,255,200,0.35);
    box-shadow: 0 0 20px rgba(0,255,200,0.1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
/* ====================== FOOTER ========================== */

.zm-footer {
    background: #05070d;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0,255,200,0.12);
    position: relative;
    overflow: hidden;
}

/* Glow efekti */
.zm-footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,255,210,0.15), transparent 60%);
    top: -200px;
    right: -200px;
    filter: blur(70px);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* -------- LOGO -------- */
.footer-logo {
    font-size: 34px;
    font-weight: 900;
    color: white;
}

.footer-logo span {
    background: linear-gradient(90deg, #00ffd5, #00a3ff);
    -webkit-background-clip: text;
    color: transparent;
}

.footer-desc {
    color: #c6d2e1;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 300px;
}

/* SOSYAL MEDYA */
.footer-socials {
    margin-top: 20px;
}

.footer-socials a {
    font-size: 22px;
    margin-right: 12px;
    color: #00e6c7;
    transition: 0.25s ease;
}

.footer-socials a:hover {
    color: white;
    text-shadow: 0 0 10px #00ffe0;
}


/* -------- BAŞLIKLAR -------- */
.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

/* -------- LINKLER -------- */
.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    color: #c6d2e1;
    font-size: 17px;
    transition: 0.25s;
}

.footer-links a:hover {
    color: #00ffe0;
    padding-left: 5px;
}


/* -------- İLETİŞİM -------- */
.footer-contact li {
    list-style: none;
    margin-bottom: 12px;
    color: #c6d2e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: #00ffe0;
}

/* Başvuru Butonu */
.footer-btn {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(90deg, #00ffd5, #00a3ff);
    padding: 12px 22px;
    color: #000;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.25s ease;
}

.footer-btn:hover {
    filter: brightness(1.15);
}


/* -------- ALT BAR -------- */
.footer-bottom {
    margin-top: 50px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0,255,200,0.1);
}

.footer-bottom p {
    color: #8aa5b5;
    font-size: 15px;
}


/* -------- RESPONSIVE -------- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-socials {
        display: flex;
        justify-content: center;
    }
}
/* ===================== YAYINCILARIMIZ ===================== */

.zm-creators {
    padding: 120px 0;
    background: #0b0f19;
}

.creators-header {
    text-align: center;
    margin-bottom: 60px;
}

.creators-sub {
    color: #00ffd5;
    font-size: 18px;
    font-weight: 600;
    opacity: .85;
}

.creators-title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
    background: linear-gradient(90deg, #00ffd5, #00a3ff);
    -webkit-background-clip: text;
    color: transparent;
}

/* GRID – 4 lü dizilim */
.creators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* KART */
.creator-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    transition: .3s;
}

.creator-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: .3s;
}

/* Alt yazı */
.creator-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 3;
}

.creator-info h3 {
    color: #ffdd3c;
    font-size: 26px;
    font-weight: 800;
}

.creator-info span {
    color: #fff;
    opacity: .85;
    font-size: 17px;
}

/* Sosyal Medya Hover Overlay */
.creator-socials {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    backdrop-filter: blur(3px);
}

.creator-socials a {
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #00ffe9;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

.creator-socials a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 12px #00fff2;
}

/* Hover durumları */
.creator-card:hover .creator-socials {
    opacity: 1;
    pointer-events: auto;
}

.creator-card:hover img {
    transform: scale(1.05);
    filter: brightness(.7);
}

/* RESPONSIVE GRID */
@media(max-width: 1200px) {
    .creators-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 840px) {
    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ====================== MODAL / POPUP ====================== */

/* POPUP TAM ORTALAMA FIX */
.creator-modal {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(0,0,0,0.85) !important;
    backdrop-filter: blur(4px);
    padding: 20px; /* Küçük ekranda taşmayı çözer */
    z-index: 99999 !important;
}


/* Eğer class ile açarsan: .creator-modal.active ekleyebilirsin */
.creator-modal.active {
    display: flex;
}

.creator-modal-content {
    width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    background: #0c111b;
    border-radius: 20px;
    display: flex;
    position: relative;
    border: 1px solid rgba(0,255,200,0.25);
    box-shadow: 0 0 40px rgba(0,255,200,0.15);
    animation: modalOpen .25s ease;
    margin: 0 auto;           /* Ortalamayı garanti et */
}

/* Açılış animasyonu – sadece scale, translate yok */
@keyframes modalOpen {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* SOL TARAF – foto */
.creator-modal-left img {
    width: 330px;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SAĞ TARAF – yazılar */
.creator-modal-right {
    padding: 35px;
    width: 100%;
}

.creator-modal-right h2 {
    font-size: 32px;
    color: #ffdd3c;
    font-weight: 800;
    margin-bottom: 5px;
}

.creator-modal-right h4 {
    font-size: 20px;
    color: #d8e2ef;
    margin-bottom: 15px;
}

.creator-modal-right p {
    color: #c8d4e0;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Popup içi sosyal ikonlar */
.modal-socials a {
    font-size: 28px;
    margin-right: 15px;
    color: #00ffe0;
    transition: .25s;
}

.modal-socials a:hover {
    color: #fff;
    text-shadow: 0 0 12px #00ffe0;
}

/* Kapatma tuşu */
.creator-modal-close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 34px;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.creator-modal-close:hover {
    color: #00ffe0;
}

/* Modal responsive */
@media(max-width: 900px) {
    .creator-modal-content {
        flex-direction: column;
        width: 90%;
    }

    .creator-modal-left img {
        width: 100%;
        height: 320px;
    }
}
/* === Genel Section === */
.events-section {
    padding: 80px 0;
}

.events-container {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 30px;
}

/* === SOL ETKİNLİK KARTLARI === */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    background: linear-gradient(135deg, #0f1a2b, #102538);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}

.event-card:hover {
    border-color: #00ffbb;
    transform: translateX(5px);
}

.event-card h3 {
    color: #00ffbb;
    margin-bottom: 6px;
    font-size: 22px;
}

.event-card p {
    color: #ddd;
    opacity: .9;
    font-size: 15px;
}

/* === SAĞ DETAY KUTUSU === */
.event-detail-box {
    background: linear-gradient(135deg, #0c1320, #0d1b2a);
    padding: 30px;
    border-radius: 18px;
    border: 2px solid #00ffbb33;
    min-height: 350px;
    box-shadow: 0 0 25px #00ffbb33;
}

.event-detail-box h2 {
    color: #00ffbb;
    margin-bottom: 15px;
}

.event-detail-box p {
    color: #eee;
    line-height: 1.6;
}

/* === Responsive === */
@media (max-width: 850px) {
    .events-container {
        grid-template-columns: 1fr;
    }
}
/* ================= KVKK ONAY KUTUSU ================= */

.kvkk-box {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #cfd8e3;
    line-height: 1.5;
    background: rgba(10, 18, 32, 0.9);
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 255, 200, 0.25);
}

.kvkk-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ffd5; /* modern tarayıcılar */
    cursor: pointer;
    margin-top: 2px;
}

.kvkk-box span {
    display: inline-block;
}

/* KVKK info alt yazısı (form altındaki küçük metin) */
.kvkk-info {
    margin-top: 10px;
    font-size: 12px;
    color: #8fa1b5;
}

.kvkk-info a {
    color: #00ffd5;
    text-decoration: none;
    font-weight: 500;
}

.kvkk-info a:hover {
    text-decoration: underline;
}

/* Küçük ekran uyumu */
@media (max-width: 576px) {
    .kvkk-box {
        font-size: 13px;
        padding: 10px 12px;
    }
}
/* =====================
   KVKK SAYFASI TASARIMI
===================== */

.kvkk-section {
    padding: 80px 0;
}

.kvkk-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #ffffff;
}

.kvkk-title span {
    color: #00ffd5;
    font-size: 42px;
}

.kvkk-box-wrapper {
    background: rgba(10, 17, 28, 0.8);
    border: 1px solid rgba(0, 255, 180, 0.25);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.15);
}

.kvkk-content h3 {
    color: #00ffd5;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 8px;
}

.kvkk-content p,
.kvkk-content li {
    color: #d3d9e3;
    font-size: 16px;
    line-height: 1.6;
}

.kvkk-content ul {
    margin-left: 20px;
}

.kvkk-footer-note {
    margin-top: 25px;
    font-size: 14px;
    color: #9aa7b8;
    text-align: center;
}
/* === POPUP === */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.popup-box {
    background: linear-gradient(135deg, #0d1b2a, #112b3c);
    border: 2px solid #00ffa6;
    padding: 30px 40px;
    width: 400px;
    max-width: 90%;
    border-radius: 14px;
    text-align: center;
    color: white;
    box-shadow: 0 0 25px #00ffa6a1;
    animation: popupShow .35s ease-out;
}

@keyframes popupShow {
    from { transform: scale(0.6); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.popup-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00ffa6;
}

.popup-box p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.popup-btn {
    background: #00ffa6;
    color: #000;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s;
}

.popup-btn:hover {
    background: #00ffcc;
    box-shadow: 0 0 15px #00ffcc;
}
.support-section {
    padding: 70px 0;
}

.support-title {
    text-align: center;
    color: white;
    font-size: 36px;
    margin-bottom: 40px;
}

.support-title span {
    font-size: 20px;
    color: #00bfff;
}

.support-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.support-info {
    width: 30%;
    background: rgba(0,0,0,0.4);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #0ea5e9;
    color: #cbd5e1;
}

.support-info h3 {
    margin-bottom: 15px;
    color: #38bdf8;
}

.support-info ul {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.support-info li {
    padding: 6px 0;
    color: #ddd;
}

.support-form {
    width: 70%;
    background: rgba(0,0,0,0.3);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(56,189,248,.4);
}

.support-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.support-form input,
.support-form select {
    width: 100%;
    padding: 14px;
    background: #0f172a;
    border: 1px solid #1e293b;
    color: #e2e8f0;
    border-radius: 10px;
}

.support-form textarea {
    height: 200px !important;
}

.file-box {
    margin: 20px 0;
    color: white;
}

.support-submit {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(90deg,#0ea5e9,#6366f1);
    color: white;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
}

.support-submit:hover {
    opacity: .85;
    transform: translateY(-2px);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .support-wrapper {
        flex-direction: column;
    }
    .support-info,
    .support-form {
        width: 100%;
    }
}
/* CKEDITOR DARK MODE */
.ck-editor__editable_inline {
    background: #0f172a !important;
    color: #e2e8f0 !important;
    border: 1px solid #1e293b !important;
    min-height: 200px;
    border-radius: 10px;
    padding: 15px !important;
}

.ck.ck-editor__main > .ck-editor__editable {
    background-color: #0f172a !important;
    color: #e2e8f0 !important;
}

.ck.ck-toolbar {
    background: #0f172a !important;
    border: 1px solid #1e293b !important;
}

.ck.ck-toolbar .ck-button {
    color: #e2e8f0 !important;
}

.ck.ck-toolbar .ck-button:hover {
    background: rgba(255,255,255,0.1) !important;
}

.ck.ck-icon {
    filter: invert(1);
}
/* CKEditor DARK MODE – ICONS WHITE */
.ck.ck-toolbar {
    background: #0f172a !important;
    border: 1px solid #1e293b !important;
}

.ck.ck-toolbar .ck-button .ck-icon {
    filter: brightness(1000%) invert(1) !important;
}

.ck.ck-button:not(.ck-disabled):hover {
    background: rgba(255,255,255,0.08) !important;
}

.ck.ck-editor__editable_inline {
    background: #0f172a !important;
    color: #e2e8f0 !important;
    border: 1px solid #1e293b !important;
    min-height: 200px;
    border-radius: 10px;
    padding: 14px !important;
}

.ck.ck-editor__main > .ck-editor__editable {
    background-color: #0f172a !important;
    color: #e2e8f0 !important;
}

.ck.ck-toolbar .ck-button .ck-button__label {
    color: #fff !important;
}
.gradient-full {
    background: linear-gradient(90deg, #00d9ff, #00ff88, #00d9ff);
    background-size: 300%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: gradientFlow 3.5s infinite linear;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0,255,180,0.35);
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
/* SLIDER YAPISI */
.talents-slider {
  position: relative;
  overflow: hidden;
}

.talents-wrapper {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 6px;
  scroll-behavior: smooth;
}

.talents-wrapper::-webkit-scrollbar {
  height: 6px;
}
.talents-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.talents-wrapper::-webkit-scrollbar-thumb {
  background: rgba(15,23,42,0.9);
  border-radius: 999px;
}

/* KART */
.talent-card {
  flex: 0 0 190px;              /* yatay slider kart genişliği */
  max-width: 190px;
  background: radial-gradient(circle at top, #050b1a, #020617 65%);
  border-radius: 20px;
  border: 1px solid rgba(75,85,99,0.6);
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 32px rgba(0,0,0,0.8);
}

/* BÜYÜK AVATAR */
.talent-avatar-big {
  width: 110px;          /* fotoğraf boyutu – büyük ama abartı değil */
  height: 110px;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 0, #00d9ff, #00ff88);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 0 20px rgba(0,255,160,0.35);
}

.talent-avatar-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.talent-avatar-big span {
  font-size: 36px;
  font-weight: 700;
  color: #020617;
}

/* İSİM */
.talent-name-wrapper {
  text-align: center;
}

.talent-name {
  font-size: 15px;
  font-weight: 600;
  color: #e5f4ff;
  letter-spacing: 0.02em;
}

/* Tema uyumlu istersen alttan minik çizgi ekleyebilirsin
.talent-name::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg,#00d9ff,#00ff88);
}
*/
.creator-info h3,
.creator-name {
    background: linear-gradient(90deg,#00d9ff,#00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}
.zm-sponsor-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.sponsor-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    border-color: #00ff9d;
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.15);
}

.sponsor-inner {
    width: 100%;
}

.sponsor-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    margin-bottom: 16px;
}

.sponsor-logo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    border: 2px dashed rgba(0, 255, 157, 0.3);
}

.sponsor-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
    text-align: center;
}

.sponsor-btn {
    background: linear-gradient(135deg, #00ff9d, #00cc7a);
    color: #000;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.sponsor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.4);
}

/* ================= GENEL BÖLÜM ================= */

#basvuru-section {
    padding: 60px 0;
    background: #02131f; /* daha koyu mavi arkaplan */
    color: #fff;
}

#basvuru-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

#basvuru-title span {
    color: #00eaff; /* mavi neon */
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ================= LAYOUT ================= */

#basvuru-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    #basvuru-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    #basvuru-info {
        flex: 0 0 35%;
    }

    #basvuru-form {
        flex: 1;
    }
}


/* ================= SOL BİLGİ KUTUSU ================= */

#basvuru-info {
    background: radial-gradient(circle at top, #063b4e, #031e29);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0, 255, 173, 0.2);
}

#basvuru-info-icon {
    width: 100%;
    max-width: 220px;
    display: block;
    margin: 0 auto 20px auto;
}

#basvuru-info-title {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    color: #00eaff;
}

#basvuru-info-desc {
    font-size: 14px;
    color: #98d3df;
    text-align: center;
    margin-bottom: 15px;
}

#basvuru-info-subtitle {
    font-size: 15px;
    margin-bottom: 8px;
    color: #00ffb5;
}

#basvuru-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    font-size: 14px;
}

#basvuru-info-list li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

#basvuru-info-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #00ff9d;
}

#basvuru-info-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00eaff, #00ff9d);
    color: #001013;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    transition: 0.2s ease;
}

#basvuru-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 173, 0.7);
}


/* ================= FORM ================= */

#basvuru-form {
    background: #03141d;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0, 255, 190, 0.1);
}

#basvuru-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    #basvuru-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#basvuru-form input[type="text"],
#basvuru-form input[type="email"],
#basvuru-form input[type="date"],
#basvuru-form select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #03394c;
    background: #021820;
    padding: 10px 15px;
    color: #b8f7ff;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}

#basvuru-form input::placeholder {
    color: #6ba3ae;
}

#basvuru-form input:focus,
#basvuru-form select:focus {
    border-color: #00eaff;
    box-shadow: 0 0 8px rgba(0, 255, 200, 0.4);
}


/* ================= DOSYA ALANI ================= */

#basvuru-file-box {
    margin: 15px 0;
}

#basvuru-file-box input[type="file"] {
    width: 100%;
    font-size: 14px;
    color: #dbffff;
}


/* ================= KVKK ================= */

#kvkk-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #9cd8e3;
    margin-bottom: 8px;
}

#kvkk-info {
    font-size: 12px;
    color: #7ab8c5;
}

#kvkk-info a {
    color: #00eaff;
    text-decoration: none;
}

#kvkk-info a:hover {
    text-decoration: underline;
}


/* ================= BUTON ================= */

#basvuru-submit-btn {
    width: 100%;
    border-radius: 999px;
    padding: 12px 18px;
    border: none;
    background: linear-gradient(135deg, #00eaff, #00ff9d);
    color: #001013;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

#basvuru-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 255, 180, 0.6);
}


/* ================= POPUP ================= */

#popupOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 20, 26, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#popupBox {
    background: #03232d;
    padding: 25px 20px;
    border-radius: 16px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 190, 0.5);
}

#popupTitle {
    font-size: 18px;
    color: #00eaff;
}

#popupMessage {
    font-size: 14px;
    color: #b6edf3;
    margin-bottom: 16px;
}

#popupBtn {
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #00eaff, #00ff9d);
    color: #001013;
    cursor: pointer;
}
/* ================= GENEL ================= */

.zm-section {
    padding: 60px 0;
    background: #02131f; /* koyu mavi neon arkaplan */
    color: #fff;
}

.zm-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.zm-title span {
    color: #00eaff;  /* neon mavi */
    font-size: 18px;
    letter-spacing: 1px;
}


/* ================= LAYOUT ================= */

.zm-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .zm-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
}


/* ================= SOL BİLGİ KUTUSU ================= */

.zm-info-box {
    background: radial-gradient(circle at top, #063b4e, #031e29);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0, 255, 173, 0.18);
    flex: 0 0 35%;
}

.zm-info-icon {
    width: 100%;
    max-width: 220px;
    display: block;
    margin: 0 auto 20px auto;
}

.zm-info-title {
    text-align: center;
    font-size: 20px;
    color: #00eaff;
    margin-bottom: 10px;
}

.zm-info-desc {
    text-align: center;
    font-size: 14px;
    color: #9edded;
    margin-bottom: 15px;
}

.zm-info-subtitle {
    color: #00ffb5;
    font-size: 15px;
    margin-bottom: 8px;
}

.zm-info-list {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}

.zm-info-list li {
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.zm-info-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #00ff9d;
}


/* ================= SOL BUTON ================= */

.zm-info-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00eaff, #00ff9d);
    color: #001013;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.zm-info-btn:hover {
    box-shadow: 0 0 15px rgba(0, 255, 180, 0.7);
    transform: translateY(-2px);
}


/* ================= FORM ================= */

.zm-form {
    background: #03141d;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0, 255, 160, 0.1);
    flex: 1;
}

.zm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .zm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* input + select */
.zm-form input,
.zm-form select {
    width: 100%;
    border-radius: 999px;
    background: #021820;
    border: 1px solid #03394c;
    padding: 10px 15px;
    font-size: 14px;
    color: #c9faff;
    outline: none;
    transition: 0.2s ease;
}

.zm-form input:focus,
.zm-form select:focus {
    border-color: #00eaff;
    box-shadow: 0 0 8px rgba(0, 255, 200, 0.45);
}

.zm-form input::placeholder {
    color: #6caebc;
}


/* Dosya yükleme */
.zm-file-box input {
    color: #d5feff;
}


/* ================= KVKK ================= */

.kvkk-box {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: #94d4de;
}

.kvkk-info {
    font-size: 12px;
    color: #83c4d0;
}

.kvkk-info a {
    color: #00eaff;
}


/* ================= SUBMIT BUTONU ================= */

.zm-submit-btn {
    width: 100%;
    border-radius: 999px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #00eaff, #00ff9d);
    color: #001013;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.zm-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.6);
}


/* ================= POPUP ================= */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 30, 36, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: #03232d;
    padding: 25px 20px;
    border-radius: 16px;
    width: 90%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 190, 0.5);
}

.popup-btn {
    margin-top: 15px;
    border-radius: 999px;
    border: none;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00eaff, #00ff9d);
    cursor: pointer;
}



