/* Arka plan (Thresh GIF) */
body {
  margin: 0;
  padding: 0;
  background: url("../assets/thresh.gif") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
}

/* Karanlık overlay */
.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #00ffcc;
  text-shadow: 0 0 5px #000;
}

/* Başlık */
h1 {
  margin-bottom: 40px;
  font-size: 32px;
}

/* ADC ikonları grid */
.adc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 20px;
  max-width: 600px;
  padding: 0 20px;
}

.adc-grid img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  transition: transform 0.2s, border 0.2s;
  border: 2px solid transparent;
}

.adc-grid img:hover {
  transform: scale(1.1);
  border-color: #00ffcc;
}

.site-header {
  position: fixed;
  top: 10px;
  left: 10px;
  font-size: 24px;
  color: #00ffcc;
  font-family: 'Arial Black', sans-serif;
  text-shadow: 0 0 5px #000;
  z-index: 10;
}



.skills-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 120px;
}

.skill {
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 5px;
  border-radius: 8px;
}

.skill img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.skill p {
  margin-top: 5px;
  font-weight: 600;
  font-size: 14px;
}

.skill:hover img,
.skill.active img {
  filter: brightness(1);
}

.skill.active {
  border-color: #00ffcc;
  background-color: rgba(0, 255, 204, 0.15);
}

.skill-video-container {
  flex: 1;
  max-width: 700px;
  text-align: center;
}

.skill-video-container video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffcc;
}

.skill-video-container h3 {
  margin-top: 15px;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: #00ffcc;
}

.skill-video-container p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #d0f0f0;
}



/* Skill-video-container arka planı da transparan yap */
.skill-video-container {
  background: transparent !important; /* eskisi: #12243e */
  box-shadow: none !important; /* Gölgeyi kaldır */
  padding: 15px 0 25px 0;
  max-width: 700px;
  text-align: center;
}

/* 2. Header profil resmi ve stil */
header.site-header {
  background-color: transparent !important;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 40px;
}

/* Profil resmi */
header.site-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ffcc;
}

/* Yazı rengi ve font */
header.site-header {
  color: #00ffcc;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 2px;
  user-select: none;
  text-shadow: 0 0 5px #000;
}

/* 3. Hakkımda kısmı arka plan + metin uzun */
#about-me {
  max-width: 700px;
  margin: 40px auto 60px auto;
  font-size: 18px;
  line-height: 1.6;
  color: #c5f0e9;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffcc55;
}

/* Linkler hala belirgin */
#about-me a {
  color: #00ffcc;
  text-decoration: none;
}
#about-me a:hover {
  text-decoration: underline;
}


/* Sol taraftaki skill ikonları ve yazılar */
.skill-icons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  min-width: 120px; /* sabit genişlik */
}

/* Skill ikon ve yazı */
.skill-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #00ffcccc;
  font-size: 14px;
  user-select: none;
}

.skill-icon img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  margin-bottom: 6px;
  box-shadow: 0 0 10px #00ffccaa;
}

/* Video ve açıklama alanı */
.skill-video-container {
  max-width: 600px;
  text-align: center;
  color: #00ffccdd;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.skill-video-container video {
  border-radius: 10px;
  box-shadow: 0 0 15px #00ffccbb;
  max-width: 100%;
  height: auto;
}

/* Yazı başlığı */
.skill-video-container .skill-title {
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  margin-top: 12px;
  color: #00ffccee;
}

/* Yazı açıklaması */
.skill-video-container .skill-desc {
  font-size: 15px;
  line-height: 1.4;
  max-width: 450px;
  color: #a0fffcee;
}

.skills-container {
  background-color: rgba(0, 0, 0, 0.7); /* Daha koyu ve transparan */
  border-radius: 12px;
  padding: 30px 40px;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  box-shadow: 0 0 20px #00ffcc66;
}
.adc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 20px;
  max-width: 600px;
  padding: 0 20px;
  margin: 0 auto; /* merkeze alır */
  justify-items: center; /* içindeki img'leri de ortalar */
}
.adc-container {
  background-color: rgba(0, 0, 0, 0.6); /* Koyu ve transparan */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffcc55; /* Hafif parıltı efekti */
  max-width: 700px;
  margin: 0 auto 40px auto; /* Ortala ve altına boşluk bırak */
}
.adc-title {
  text-align: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 28px;
  font-weight: bold;
  color: #00ffcc;
  text-shadow: 0 0 10px #000, 0 0 20px #00ffcc;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
}


::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #00ffcc88;
  border-radius: 10px;
}

/* Rank container */
.rank-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}
/* Rank Logo */
.rank-logo {
  width: 30px; /* Boyutu ihtiyacına göre ayarlayabilirsin */
  height: 30px;
  border: none !important; /* Çerçeveyi tamamen kaldırdık, !important ile zorla uygula */
  border-radius: 0 !important; /* Yuvarlak köşeyi kaldırdık */
  background: transparent !important; /* Arka plan rengini şeffaf yaptık */
}

/* Rank Text */
.rank-text {
  font-size: 20px;
  color: #00ffcc;
  font-weight: 700;
  text-shadow: 0 0 5px #000;
  letter-spacing: 1px;
}

/* KDA ve Win Rate alanı */
.kda-section {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.kda-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffcc;
}

/* Thresh logosu */
.thresh-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #00ffcc;
  object-fit: cover;
}

/* KDA İstatistikleri */
.kda-stats {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Her bir stat için stil */
.stat {
  text-align: center;
  color: #c4fff6;
}

.stat span {
  display: block;
  font-size: 14px;
}

.kill-stat {
  color: #39ff14; /* Yeşil: Kill */
  font-weight: 700;
}

.death-stat {
  color: #ff073a; /* Kırmızı: Death */
  font-weight: 700;
}

.assist-stat {
  color: #00ffff; /* Mavi: Assist */
  font-weight: 700;
}

/* KDA ve Win Rate yazıları */
.kda-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kda {
  font-size: 18px;
  font-weight: 700;
  color: #00ffcc;
  text-shadow: 0 0 5px #000;
}

.winrate {
  font-size: 16px;
  color: #00ffcc;
  font-weight: 500;
}

#star-container {
  font-size: 40px;
  color: #444;
  cursor: pointer;
  user-select: none;
  direction: rtl; /* Sağdan sola yazdırır, yıldızlar sağdan sola dizilir */
}

.star:hover,
.star:hover ~ .star {
  color: #39ff14;
}

.star.selected {
  color: #39ff14;
}
