/* =========================================================
   ⚡ BETENERJI LIGHTNING EDITION - Final Responsive Style
   ========================================================= */

/* ---------- RENKLER VE TEMEL AYARLAR ---------- */
:root {
  --yellow: #f9c105;
  --black: #0b1118;
  --white: #ffffff;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Orbitron", sans-serif;
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
}

/* ---------- ARKA PLAN GÖRÜNTÜLERİ ---------- */
#bgVideo,
#lightning {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#bgVideo {
  z-index: -5;
  filter: brightness(0.6) contrast(1.1);
  pointer-events: none;
  transform: translateZ(0);
}

/* ---------- ENERJİ PARÇACIKLARI 
.energy-stream {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.energy-stream span {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(249,193,5,1), rgba(249,193,5,0));
  border-radius: 2px;
  filter: blur(0.5px);
  opacity: 0.7;
  animation: fall 4s linear infinite, shimmer 0.6s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes fall {
  0% { transform: translateY(-10vh) translateX(0) scaleY(0.6); opacity: 0.9; }
  100% { transform: translateY(110vh) translateX(10px) scaleY(1); opacity: 0; }
}

@keyframes shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(2); }
}

.energy-stream span:nth-child(1) { left: 5%; animation-delay: 0s; }
.energy-stream span:nth-child(2) { left: 15%; animation-delay: 0.5s; }
.energy-stream span:nth-child(3) { left: 25%; animation-delay: 1s; }
.energy-stream span:nth-child(4) { left: 35%; animation-delay: 1.5s; }
.energy-stream span:nth-child(5) { left: 45%; animation-delay: 2s; }
.energy-stream span:nth-child(6) { left: 55%; animation-delay: 2.5s; }
.energy-stream span:nth-child(7) { left: 65%; animation-delay: 3s; }
.energy-stream span:nth-child(8) { left: 75%; animation-delay: 3.5s; }
.energy-stream span:nth-child(9) { left: 85%; animation-delay: 4s; }
.energy-stream span:nth-child(10) { left: 95%; animation-delay: 4.5s; } ---------- */

/* ---------- ÜST MENÜ ---------- */
.header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(11, 17, 24, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.site-btn {
  color: var(--yellow);
  border: 2px solid var(--yellow);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 0 8px var(--yellow);
  transition: 0.2s;
}
.site-btn:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 25px var(--yellow);
}

/* ---------- BANNER BÖLÜMÜ ---------- */
.banner-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-banner { display: none !important; }

.banner-section .banner-item {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.15);
}
.banner-section .banner-item img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.banner-section .banner-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(255, 217, 0, 0.4);
}

/* ---------- PROMO BÖLÜMÜ ---------- */
.promos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 60px 5%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
  z-index: 5;
}

.promo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.promo-item:hover { transform: scale(1.05); }

/* ---------- YILDIRIM HALKASI ---------- */
.promo-ring {
  position: relative;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #f9c105;
  border-right-color: #ffec7a;
  border-left-color: #e6b700;
  filter: drop-shadow(0 0 5px #f9c105);
  animation: spinRing 5s linear infinite, lightningPulse 2.5s ease-in-out infinite;
}

/* Mikro yıldırımlar 
.promo-ring span.spark {
  position: absolute;
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, #fffeca, #ffdb00, transparent);
  border-radius: 3px;
  opacity: 0;
  animation: promoSparkFlash 3s infinite ease-in-out;
}
.promo-ring span.spark:nth-child(1) { top: -6px; left: 50%; transform: translateX(-50%); animation-delay: 0.3s; }
.promo-ring span.spark:nth-child(2) { right: -4px; top: 30%; animation-delay: 1.1s; }
.promo-ring span.spark:nth-child(3) { bottom: -6px; left: 45%; animation-delay: 2.4s; }

@keyframes promoSparkFlash {
  0%,100% { opacity: 0; transform: scale(0.8); }
  10% { opacity: 1; transform: scale(1.1); }
  20% { opacity: 0; transform: scale(0.9); }
}

@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes lightningPulse { 0%,100% { box-shadow: 0 0 6px #f9c105; } 50% { box-shadow: 0 0 20px #fff17a; } } */

/* ---------- PROMO GÖRSEL ---------- */
.promo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}
.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ---------- PROMO MODAL ---------- */
.promo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  transition: none;
}
.promo-modal.active { visibility: visible; opacity: 1; }

.promo-modal-content {
  background: #111;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 25px 35px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 0 40px rgba(249,193,5,0.4);
}
.promo-modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.promo-modal-content h2 { color: var(--yellow); font-size: 1.3rem; margin-bottom: 10px; }
.promo-modal-content p { font-size: 0.9rem; color: #ddd; margin-bottom: 20px; }
.promo-modal-content .modal-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
.promo-modal-content .modal-btn:hover { background: #fff; color: var(--black); box-shadow: 0 0 25px var(--yellow); }
.promo-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 26px;
  color: var(--yellow);
  cursor: pointer;
  transition: 0.2s;
}
.promo-modal .close:hover { transform: scale(1.2); color: #fff; }

/* ---------- VİDEOLAR ---------- */
.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 60px 5%;
  z-index: 5;
}
.video-card {
  position: relative;
  width: 240px;
  background: rgba(10,10,10,0.85);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(249,193,5,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.video-card:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(249,193,5,0.5); }
.video-card img { width: 100%; height: 335px; object-fit: cover; border-bottom: 2px solid rgba(249,193,5,0.4); }
.video-info { padding: 12px; text-align: center; }
.video-info h4 { margin: 0; font-size: 14px; color: #fff; font-weight: 600; }
.video-info p { color: var(--yellow); font-size: 13px; margin: 6px 0 0; }
.video-play {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s;
}
.video-card:hover .video-play { opacity: 1; }
.video-play i { font-size: 42px; color: var(--yellow); text-shadow: 0 0 10px var(--yellow); }

/* ---------- VİDEO MODAL ---------- */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  visibility: hidden; opacity: 0;
  transition: none;
}
.video-modal.active { visibility: visible; opacity: 1; transition: none; }
.video-content {
  position: relative;
  width: 90%; max-width: 860px;
  border-radius: 10px; overflow: hidden;
  background: #000; box-shadow: 0 0 30px rgba(249,193,5,0.4);
}
.video-content iframe { width: 100%; height: 480px; border: none; display: block; }
.video-logo { position: absolute; top: 15px; left: 15px; width: 80px; opacity: 0.85; z-index: 5; }
.video-modal .close { position: absolute; top: 15px; right: 25px; color: #fff; font-size: 28px; cursor: pointer; z-index: 5; }

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 40px;
  color: var(--white);
  font-size: 0.9rem;
  background: rgba(11,17,24,.6);
}

/* ---------- INTRO ---------- */
#intro {
  position: fixed;
  inset: 0;
  background: #0b1118;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#intro.fade-out {
  opacity: 0;
  visibility: hidden;
}

.intro-logo {
  width: 180px;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  animation: logoReveal 1.2s ease forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- SECTION TITLES (SPARK LINES) ---------- */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  text-shadow: 0 0 15px rgba(249,193,5,0.8), 0 0 40px rgba(249,193,5,0.4);
  position: relative;
  z-index: 5;
  animation: glowPulse 2.5s ease-in-out infinite;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
  box-shadow: 0 0 10px var(--yellow);
  animation: sectionSparkGlow 3s linear infinite;
}
.section-title::before { left: -100px; animation-delay: 0.5s; }
.section-title::after { right: -100px; animation-delay: 1s; }

@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 10px #f9c105, 0 0 40px rgba(249,193,5,0.4); transform: scale(1); }
  50% { text-shadow: 0 0 25px #fff17a, 0 0 60px rgba(255,255,150,0.7); transform: scale(1.05); }
}

@keyframes sectionSparkGlow {
  0%,100% { opacity: 0.4; transform: scaleX(0.9); }
  50% { opacity: 1; transform: scaleX(1.1); filter: brightness(1.6); } 
}

/* ---------- MOBİL RESPONSIVE ---------- */
@media (max-width: 768px) {
  .header { flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 12px 10px; }
  header.header { width: 100% !important; max-width: 100vw !important; overflow-x: hidden !important; box-sizing: border-box; }
  header.header * { max-width: 100%; box-sizing: border-box; flex-shrink: 1; min-width: 0; }
  html, body{ overflow-x: hidden !important; width: 100% !important; position: relative; max-width: 100vw !important; box-sizing: border-box;   margin: 0 !important; padding: 0 !important;} 
  .site-btn { margin: 0; padding: 8px 16px; font-size: 14px; margin-right: auto;}
  .social-icons {display: flex; flex-direction: row; justify-content: flex-end; align-items: center; right: 20px !important; gap: 12px;}
  .mobile-banner { display: block !important; }
  .desktop-banner { display: none !important; }
  .social-icons a { font-size: 20px; }
  .videos { justify-content: left !important;}
    /* Başlıklardaki çizgileri kaldır, font boyutunu küçült */
    .section-title::before,
    .section-title::after {
      display: none !important;
    }
	
	canvas#lightning,
	video#bgVideo {
  		max-width: 100% !important;
  		width: 100vw !important;
  		left: 0 !important;
  		right: 0 !important;
  		overflow-x: hidden !important;
  		position: fixed;
		}

	
	#bgVideo,
	#lightning,
	.energy-stream {
  		position: fixed;
 		top: 0;
  		left: 0;
  		width: 100% !important;
  		max-width: 100vw !important;
  		height: 100% !important;
  		overflow: hidden !important;
	}
	
	.energy-stream span {
 	 transform-origin: center center;
 	 will-change: transform;
 	 contain: layout paint;
  	 overflow: hidden !important;
		}
	
	.videos-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 20px 0 20px 10px; /* Sol boşluk az */
    scroll-padding-left: 10px;
    }

    .videos-scroll .video-card {
    flex: 0 0 calc(33.33% - 8px); /* 3 video görünür */
    scroll-snap-align: start;
    border-radius: 10px;
    background: rgba(10,10,10,0.9);
    box-shadow: 0 0 15px rgba(249,193,5,0.25);
    transition: transform 0.3s ease;
  }
	
	.videos-scroll .video-card:first-child {
    margin-left: 0 !important;
    }

  /* Hover efektini devre dışı bırak */
  .videos-scroll .video-card:hover {
    transform: none;
    box-shadow: 0 0 15px rgba(249,193,5,0.25);
  }

  /* Görsel boyutu */
  .videos-scroll .video-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .videos-scroll .video-info {
    text-align: center;
    padding: 6px;
  }

  .videos-scroll .video-info h4 {
    font-size: 13px;
    color: #fff;
  }

  .videos-scroll .video-info p {
    font-size: 12px;
    color: var(--yellow);
  }

  /* Scroll çubuğunu gizle */
  .videos-scroll::before {
    content: '';
    flex: 0 0 10px;
  }
  .videos-scroll::after {
    content: "";
    flex: 0 0 10px;
  }

  .videos-scroll::-webkit-scrollbar {
    display: none;
  }
	
  

    .section-title {
      font-size: 1.6rem;
      margin: 35px 0 25px;
      text-shadow: 0 0 10px rgba(249,193,5,0.7);
    }
  }
