/* EKTO ENC. SOFTWARE - DESİGN
   Aycisko Kick Streamer Web Site - 2025
   License: aycisko.com
*/

/* ==================== RESET CSS ==================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	background-color: var(--background-color);
	color: var(--text-color);
    font-family: "Pixelify Sans", sans-serif;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ==================== VARIABLES ==================== */
:root {
  /* Ana Renkler */
  --primary-color: #8A2BE2;    /* Ana mor renk */
  --primary-light: #A96CFF;    /* Açık mor */
  --primary-dark: #6A1B9A;     /* Koyu mor */
  
  /* İkincil Renkler */
  --secondary-color: #FF6EC7;  /* Pembe tonlu ikincil renk */
  --secondary-light: #FFA6E4;  /* Açık pembe */
  --secondary-dark: #B63169;   /* Koyu pembe */
  
  /* Vurgu Rengi */
  --accent-color: #00E5FF;     /* Aksan rengi - Turkuaz */
  
  /* Gradyanlar */
  --gradient-primary: linear-gradient(90deg, var(--secondary-dark) 0%, var(--secondary-light) 100%);
  --gradient-logo: linear-gradient(2deg, var(--secondary-dark) 0%, var(--secondary-color) 70%, var(--secondary-light) 100%);
  
  /* Arkaplan ve Metin Renkleri */
  --background-color: #FFFFFF; /* Arkaplan rengi */
  --text-color: #090426;       /* Metin rengi */
  --text-light: rgba(255, 255, 255, 0.8); /* Açık metin */
  --text-dimmed: rgb(165, 161, 190);  /* Soluk metin */
  
  /* Tema Renkleri */
  --dark-bg: rgba(3,0,22,255);  /* Koyu arkaplan */
  --dark-overlay: rgba(3,0,22,0.8); /* Yarı saydam koyu arkaplan */
  
  /* Boşluklar ve Boyutlar */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 50px;
  
  /* Geçişler */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==================== HEADER STILLER ==================== */
header {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 135vh;
  overflow: hidden;
  background: url(../img/hero-bg.png) no-repeat top center;
  background-size: 140% auto;
  background-color: rgba(11,5,40,255);
}

/* Alttan yukarı doğru karartı */
header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--dark-bg) 0%, rgba(9, 4, 38, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ==================== YILDIZ ANİMASYONLARI ==================== */
.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  animation: twinkle var(--transition-slow) infinite;
}

.star::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.7);
}

/* Yıldız Pozisyonları */
.star1 { top: 10%; left: 15%; animation-delay: 0.1s; width: 2px; height: 2px; }
.star2 { top: 20%; left: 25%; animation-delay: 0.3s; width: 4px; height: 4px; }
.star3 { top: 15%; left: 60%; animation-delay: 0.5s; width: 3px; height: 3px; }
.star4 { top: 30%; left: 80%; animation-delay: 0.7s; width: 2px; height: 2px; }
.star5 { top: 40%; left: 10%; animation-delay: 0.9s; width: 3px; height: 3px; }
.star6 { top: 50%; left: 30%; animation-delay: 1.1s; width: 2px; height: 2px; }
.star7 { top: 25%; left: 40%; animation-delay: 1.3s; width: 4px; height: 4px; }
.star8 { top: 60%; left: 70%; animation-delay: 1.5s; width: 3px; height: 3px; }
.star9 { top: 70%; left: 20%; animation-delay: 1.7s; width: 2px; height: 2px; }
.star10 { top: 80%; left: 50%; animation-delay: 1.9s; width: 3px; height: 3px; }
.star11 { top: 85%; left: 85%; animation-delay: 2.1s; width: 2px; height: 2px; }
.star12 { top: 5%; left: 90%; animation-delay: 2.3s; width: 4px; height: 4px; }

/* ==================== NAVİGASYON STILLER ==================== */
nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  height: 80px;
  padding: 3%;
  margin-top: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border-radius: 0 0 20px 20px;
}

/* Logo */
.logo {
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo > p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Navigation Links */
.nav-links ul {
  display: flex;
  align-items: center;
}

.nav-links ul li {
  position: relative;
  margin: 0 15px;
}

.nav-links ul li a {
  color: var(--text-dimmed);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 0;
  transition: var(--transition-normal);
}

.nav-links ul li a:hover {
  color: var(--text-light);
}

/* Aktif menü öğesi için stil */
.nav-links ul li a.active {
  position: relative;
  color: #fff;
}

.nav-links ul li a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Potion Icon */
.potion-icon {
  font-size: 1.4rem;
  color: var(--text-dimmed) !important;
  cursor: pointer;
  transition: var(--transition-normal);
}

.potion-icon:hover {
  transform: scale(1.2) rotate(5deg);
  color: #53fc18 !important; /* Kick yeşil rengi */
  text-shadow: 0 0 8px rgba(83, 252, 24, 0.6);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: var(--transition-normal);
}

/* ==================== HERO STILLER ==================== */
.hero {
  position: absolute;
  width: 100%;
  height: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-image > img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: absolute;
  width: 100%;
  top: 55%;
  margin-top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeIn 1s ease-out forwards;
}

/* Pixel Button Style */
.pixel-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  min-height: 60px;
  padding: 20px 30px;
  background-color: transparent;
  background-image: url(../img/lkhvimti.png);
  background-size: 100% 60%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-2deg) !important;
}

.pixel-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  padding: 0 10px;
  transform: rotate(0.2deg);
}

.invited-text {
  position: relative;
  bottom: 7px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.hero-description {
  position: relative;
  max-width: 40%;
  margin-top: 30px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dimmed);
}

/* Hero Butonları */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.pixel-action-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  min-height: 40px;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background-size: 100% 90%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  box-shadow: none;
  transition: var(--transition-fast);
}

.pixel-action-button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.pixel-action-button:active {
  transform: scale(0.98);
  filter: brightness(0.95);
}

/* Buton Stilleri */
.pink-button {
  color: #770440;
  background-image: url(../img/pink-button.png);
}

.purple-button {
  color: #4b3c8a;
  background-image: url(../img/blue-button.png);
}

/* ==================== KAYAN YILDIZLAR ==================== */
.shooting-star {
  position: absolute;
  width: 80px;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 50%;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  animation: shootingStar 5s linear infinite;
}

.shooting-star::after {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 8px 1px rgba(255, 255, 255, 0.4);
}

/* Kayan Yıldız Pozisyonları */
.shooting-star1 { top: 20%; right: 0; animation-delay: 0s; animation-duration: 3s; }
.shooting-star2 { top: 35%; right: 20%; animation-delay: 5s; animation-duration: 4s; }
.shooting-star3 { top: 15%; right: 30%; animation-delay: 9s; animation-duration: 3.5s; }
.shooting-star4 { top: 50%; right: 10%; animation-delay: 15s; animation-duration: 4.5s; }

/* ==================== POPUP STILLER ==================== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 2000;
  transition: var(--transition-normal);
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  padding: 30px;
  border-radius: 10px;
  transform: translateY(-50px);
  transition: var(--transition-normal);
}

.kick-embed-container {
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 8px;
}

.kick-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

/* ==================== BİLGİ ŞERİDİ ==================== */
.info-ribbon {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(45,20,52,255);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  z-index: 10;
  box-sizing: border-box; /* Padding ve border'ı genişliğe dahil et */
}

/* Şerit üzerindeki logo */
.ribbon-logo {
  font-size: clamp(1.2rem, 3vw, 1.5rem); /* Responsive font boyutu */
  font-weight: 700;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 clamp(10px, 2vw, 20px); /* Responsive padding */
  margin-left: clamp(10px, 2vw, 20px); /* Responsive margin */
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 12;
  position: relative;
  min-width: clamp(120px, 15vw, 150px); /* Responsive minimum genişlik */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ribbon-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,255,255,0));
}

/* Yazı için kapsayıcı */
.text-container {
  position: relative;
  width: calc(100% - clamp(120px, 15vw, 200px)); /* Logo genişliğine göre ayarla */
  overflow: hidden;
  box-sizing: border-box; /* Padding ve border'ı genişliğe dahil et */
  display: flex; /* Flex kullanarak içeriği düzgün hizala */
}

/* Kayan yazı içeriği */
.text-container .marquee-content {
  display: flex;
  width: max-content;
  animation: marquee-loop 30s linear infinite;
}

/* Kayan yazı içeriği - loop için kopya */
.info-ribbon p {
  color: var(--text-light);
  font-size: clamp(0.9rem, 2vw, 1.1rem); /* Responsive font boyutu */
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  padding: 0 clamp(10px, 2vw, 20px); /* Responsive padding */
  margin: 0;
  box-sizing: border-box; /* Padding ve border'ı genişliğe dahil et */
}

/* Bottom ribbon için özel animasyon */
.bottom-ribbon .marquee-content {
  animation-duration: 35s; /* Daha uzun text için daha yavaş animasyon */
}

/* Bottom info ribbon styling */
.bottom-ribbon {
  position: absolute;
  bottom: 0;
  margin-top: 50px;
  margin-bottom: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.bottom-ribbon .ribbon-logo {
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bottom-ribbon p {
  animation: marquee 35s linear infinite; /* Daha uzun text için daha yavaş animasyon */
}

/* Karakterlerin sabit konumlandırılması için yeni sınıf */
.fixed-character-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 11;
  pointer-events: none;
}

/* Şerit üzerindeki karakterler - Yeni sabit konumlandırma */
.character-relax {
  position: absolute;
  width: clamp(180px, 18vw, 250px); /* Responsive boyut, minimum 180px, maksimum 250px */
  height: auto;
  bottom: calc(50px + 5vh); /* Ribbon'un üstünde sabit mesafe */
  right: clamp(5%, 10vw, 15%); /* Sağdan mesafe, ekran genişliğine göre ölçekli */
  z-index: 11;
  animation: float-character 4s ease-in-out infinite;
  transform-origin: bottom center;
}

.character-walks {
  position: absolute;
  width: clamp(100px, 12vw, 150px); /* Responsive boyut, minimum 100px, maksimum 150px */
  height: auto;
  bottom: calc(80px - 3px); /* Ribbon'un üstünde sabit mesafe */
  left: clamp(5%, 10vw, 15%); /* Soldan mesafe, ekran genişliğine göre ölçekli */
  z-index: 11;
  transform-origin: bottom center;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-bg);
  overflow: hidden;
  padding: 30px 0;
}

.about-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.about-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.about-subtitle {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.about-subtitle span {
  color: var(--secondary-color);
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-dimmed);
  text-align: center;
  margin-bottom: 50px;
  width: 50%;
}

/* ==================== PLATFORM CONTAINER ==================== */
.platform-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-color: var(--dark-bg);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.platform-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-image: url('../img/planet-tv.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 100%;
  z-index: 5;
}

.platform-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, var(--dark-bg) 0%, rgba(9, 4, 38, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.throne-image {
  position: absolute;
  bottom: 130px;
  height: auto;
  max-height: 170px;
  z-index: 10;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
  position: relative;
  width: 100%;
  min-height: 120vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--dark-bg);
  overflow: hidden;
  padding: 50px 0;
}

.team-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}

.team-icon {
  width: 35px;
  height: auto;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

.team-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.team-subtitle {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.team-subtitle span {
  color: var(--secondary-color);
}

/* Takım Slider Stili */
.team-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.team-slider {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: slider-animation 30s linear infinite;
}

.team-card {
  width: 200px;
  height: 200px;
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 10px var(--dark-bg);
}

.team-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card:hover .kick-overlay {
  opacity: 1;
}

.card-frame {
  width: 100%;
  height: 100%;
  background-image: url('../img/frame.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.kick-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.kick-overlay p{
  margin-top: 14px;
  font-size: 1.3rem;
}
.kick-logo {
  width: 20%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.card-image {
  max-width: 90%;
  max-height: auto;
  object-fit: contain;
}

/* ==================== ANIMASYONLAR ==================== */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(0px) rotate(0deg); }
  75% { transform: translateY(10px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes twinkle {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

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

@keyframes shootingStar {
  0% { transform: translateX(0) translateY(0) rotate(315deg); opacity: 0.3; }
  50% { opacity: 0.6; }
  100% { transform: translateX(-500px) translateY(500px) rotate(315deg); opacity: 0; }
}

@keyframes float-character {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@keyframes slider-animation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Farklı ekran boyutları için marquee animasyonunu düzenle */
@media screen and (max-width: 1200px) {
  @keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-120%); }
  }
}

@media screen and (max-width: 768px) {
  @keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-150%); }
  }
  
  .info-ribbon p {
    animation-duration: 25s; /* Mobil cihazlarda daha yavaş */
  }
  
  .bottom-ribbon p {
    animation-duration: 30s; /* Mobil cihazlarda daha yavaş */
  }
}

/* Farklı ekran boyutları için marquee animasyonunu düzenle */
@media screen and (max-width: 1200px) {
  .text-container .marquee-content {
    animation-duration: 25s;
  }
  
  .bottom-ribbon .marquee-content {
    animation-duration: 30s;
  }
}

@media screen and (max-width: 768px) {
  .text-container .marquee-content {
    animation-duration: 20s;
  }
  
  .bottom-ribbon .marquee-content {
    animation-duration: 25s;
  }
}

@media screen and (max-width: 480px) {
  .text-container .marquee-content {
    animation-duration: 30s;
  }
  
  .bottom-ribbon .marquee-content {
    animation-duration: 20s;
  }
}

/* Kullanılmayan stiller gizlendi */
.team-members, .team-member {
  display: none;
}

/* AOS için ekstra stil */
[data-aos] {
  visibility: hidden;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  visibility: visible;
}

/* AOS animasyonlarının scroll sonrası da görünür kalması için */
html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: none;
}

/* AOS animasyonlarının mobile cihazlarda düzgün çalışması için */
@media screen and (max-width: 768px) {
  [data-aos] {
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-bg);
  overflow: hidden;
  padding: 70px 0;
}

.contact-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.contact-left {
  width: 45%;
  padding-right: 30px;
}

.contact-right {
  width: 55%;
  padding-left: 30px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
  text-align: left;
}

.contact-title {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
}

.contact-subtitle {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}

.contact-description {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dimmed);
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.contact-info img {
  height: 25px;
  margin-left: 10px;
  transform: rotate(-90deg);
}

.contact-info p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dimmed);
  text-align: left;
}

.contact-subtitle span {
  color: var(--secondary-color);
}

.contact-form-container {
  padding: 0 30px;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(9, 4, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #fff;
  font-family: "Pixelify Sans", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Placeholder stil */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .pixel-action-button {
  margin-top: 10px;
  width: auto;
  display: inline-block;
  background-color: transparent;
  font-family: "Pixelify Sans", sans-serif;
  cursor: pointer;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.contact-form .pixel-action-button:hover {
  transform: translateY(-3px);
}

.contact-form .pixel-action-button:active {
  transform: translateY(0);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-bg);
  overflow: hidden;
  padding: 70px 0;
}

.stats-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.stats-header {
  text-align: center;
  margin-bottom: 50px;
}

.stats-title-secondary {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0;
  line-height: 1;
  font-family: "Pixelify Sans", sans-serif;
}

.stats-title-primary {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  line-height: 1;
  font-family: "Pixelify Sans", sans-serif;
}

.stats-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 0;
}

.stats-box {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background-color: transparent;
  border: none;
  border-radius: 10px;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.stats-box:hover {
  transform: translateY(-5px);
  box-shadow: none;
  border-color: transparent;
}

.stats-box-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stats-label {
  font-size: 1rem;
  color: var(--text-dimmed);
  margin-bottom: 10px;
  font-family: "Pixelify Sans", sans-serif;
}

.stats-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: "Pixelify Sans", sans-serif;
}

.stats-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin: 0 10px;
}

.stats-divider img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

/* ==================== DISCORD SECTION ==================== */
.discord-section {
    background: url(../img/hero-bg.png) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: rgba(11,5,40,255);
}


.discord-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(9, 4, 38, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.discord-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--dark-bg) 0%, rgba(9, 4, 38, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.discord-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.discord-logo {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    transform: scale(1.5);
}

.discord-logo > p {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  transform: scale(1.5);
}

.discord-icon {
    margin: 30px 0;
}

.discord-icon img {
    width: 130px;
    height: auto;
}

.discord-text {
    margin-bottom: 40px;
}

.discord-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dimmed);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.discord-button {
    display: inline-block;
    background: url(../img/blue-button.png) no-repeat center center;
    background-size: 100% 100%;
    color: #4b3c8a;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: var(--transition-normal);
}

.discord-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.discord-button:hover::before {
    transform: translateX(0);
}

.discord-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ==================== FOOTER SECTION ==================== */
footer {
    background-color: var(--dark-bg);
    padding: 25px 0;
    width: 100%;
    position: relative;
    z-index: 5;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 400;
}
.footer-copyright a{
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-normal);
}
.footer-copyright a:hover{
  text-decoration: underline;
}
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Kayan yazı için yeni düzenleme - Loop şeklinde */
@keyframes marquee-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
