/* SLIDE 2 düzeni */
.item .content.no-center {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-end !important;
  text-align: left !important;
  flex-direction: column;
  padding: 0;
  margin: 0;
  height: 100%;
}

/* Bio Wrapper - sol alt köşe sabit */
.discord-bio-wrapper {
  position: fixed;
  bottom: -11rem;
  left: -25rem;
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: auto;
  max-width: 100%;
}

/* Bio Kart */
.discord-bio-card.holo-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 18px;
  backdrop-filter: blur(16px) brightness(1.08);
  box-shadow:
    0 0 15px rgba(255, 165, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
  padding: 1.4rem 1.8rem;
  width: 100%;
  max-width: 640px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  animation: pulseSoft 7s ease-in-out infinite alternate;
}

/* Neon Turkuaz Sol Şerit */
.discord-bio-card.holo-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, #00ffff, #00e0ff, #00ffff);
  box-shadow:
    0 0 15px #00ffff,
    0 0 25px #00ffff,
    0 0 40px #00ffff;
  border-radius: 4px;
  animation: glowTurq 4s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes glowTurq {
  0% {
    box-shadow:
      0 0 10px rgba(0, 255, 255, 0.4),
      0 0 20px rgba(0, 255, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 25px rgba(0, 255, 255, 0.8),
      0 0 40px rgba(0, 255, 255, 0.6);
  }
}

/* Arka plan iç ışık */
.discord-bio-card.holo-left::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(255, 140, 0, 0.08), transparent 70%);
  animation: rotateLight 20s linear infinite;
  z-index: 0;
}

@keyframes rotateLight {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseSoft {
  0% { box-shadow: 0 0 10px rgba(255, 165, 0, 0.15); }
  100% { box-shadow: 0 0 25px rgba(255, 165, 0, 0.35); }
}

/* İç bileşenler */
.discord-bio-card.holo-left * {
  position: relative;
  z-index: 3;
}

/* Avatar */
.bio-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 165, 0, 0.5);
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
  object-fit: cover;
}

/* İçerik */
.bio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Başlık */
.discord-role {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffbb66;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 6px rgba(255, 165, 0, 0.4);
}

/* Açıklama */
.discord-info {
  color: #ffe6c4;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Bot Stats */
.bot-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bot-stats li {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 165, 0, 0.2);
  color: #ffd89b;
  font-size: 0.92rem;
  box-shadow: inset 0 0 6px rgba(255, 165, 0, 0.05);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease;
}

.bot-stats li:hover {
  transform: scale(1.02);
}

/* Mobil Duyarlılık */
@media (max-width: 768px) {
  .discord-bio-wrapper {
    left: 50%;
    transform: translateX(-50%);
    bottom: -5rem; /* -10rem yerine görünür bir değer */
    width: 50%;
  }

  .discord-bio-card.holo-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.2rem;
    max-width: 100%;
    scale: 0.9; /* boyutu küçültür */
  }

  .bio-avatar img {
    width: 52px;
    height: 52px;
    margin-bottom: 0.8rem;
  }

  .discord-role {
    font-size: 1.2rem;
  }

  .discord-info {
    font-size: 0.92rem;
  }

  .bot-stats {
    grid-template-columns: 1fr;
    font-size: 0.88rem;
  }

  .bot-stats li {
    padding: 0.4rem 0.6rem;
  }
}
