body {
  margin: 0;
  padding: 0;
  background: linear-gradient(-45deg, #f5dede, #cbb6b6, #b6cbe0, #e0b6c1);
  font-family: "Poppins", sans-serif;
  animation: gradientBG 15s ease infinite;
  zoom: 130%;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px; /* About, profil sütunu ve contact arası boşluk */
  margin-bottom: 30px;
}

/* Elegant buton görünümü */
.about,
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  font-size: 20px;
  letter-spacing: 7px;
  color: #222;
  font-weight: 400;
  margin: 0 10px;
  text-align: center;
  vertical-align: top;
  position: relative;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid #e0e0e0;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.03);
  padding: 18px 28px 10px 28px;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.about:hover,
.contact:hover {
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
  border-color: #b6cbe0;
  background: rgba(255, 255, 255, 0.32);
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: rgb(0, 0, 0) 2px solid;
  margin-left: -35px;
}

.name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 10px;
  color: black;
  margin-left: -25px;
}

.socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
  transition: transform 0.2s;
  margin-left: -35px;
}

.icon .discord {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #222;
}

.discord img {
  width: 38px;
  height: 38px;
}

.icon-soundcloud {
  color: #ff5500;
  font-size: 45px;
}

.icon-instagram {
  background: linear-gradient(45deg, #f58529 0%, #dd2a7b 50%, #515bd4 100%);
  color: white;
  font-size: 45px;
  border-radius: 12px;
  padding: 6px;
  /* Gradientin ikona uygulanabilmesi için aşağıdaki satırları ekle: */
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-youtube {
  color: #ff0000;
  font-size: 45px;
}

.icon-spotify {
  color: #1db954;
  font-size: 45px;
}

.socials i {
  transition: transform 0.2s;
}

.socials i:hover {
  transform: scale(1.15);
}

.spotify-widget {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  width: auto;
  height: 200px;
}
.spotify-widget:hover {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
}

.footer-signature {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #888;
  font-size: 15px;
  opacity: 0.7;
  letter-spacing: 2px;
  z-index: 99;
  pointer-events: none;
}

/* Başlangıçta ok yukarı bakar, çizgi ve metin görünmez */
.interactive {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s;
  transform: rotate(270deg); /* Yukarı bakar */
}

.underline {
  display: block;
  height: 2px;
  width: 0;
  background: #222;
  margin: 6px auto 0 auto;
  transition: width 0.3s;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
  /* underline'ın genişliğini belirleyecek bir max-width ekleyelim */
  max-width: 220px; /* istediğin değeri verebilirsin */
}

.about-text,
.contact-text {
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s;
  color: #444;
  font-size: 15px;
  margin-top: 8px;
  text-align: center;
  letter-spacing: 1px;
  margin-left: auto;
  margin-right: auto;
  max-width: 220px; /* underline ile aynı olmalı */
  white-space: normal;
  word-break: break-word;
}

/* Hover efekti */
.interactive:hover .arrow {
  transform: rotate(0deg); /* Aşağı döner */
}

.interactive:hover .underline {
  width: 100%;
  max-width: 220px; /* underline'ın genişliğiyle aynı */
}

.interactive:hover .about-text,
.interactive:hover .contact-text {
  opacity: 1;
  max-height: 100px;
}

/* Ortak sütun stili */
.side-column,
.top-column {
  position: fixed;
  z-index: 2;
  background: rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sol sütun: about me hizasından */
.left-column {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc((50vw - 220px) / 2);
  height: 120px; /* about me kutusu yüksekliği kadar */
}

/* Sağ sütun: contact hizasından */
.right-column {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc((50vw - 220px) / 2);
  height: 120px; /* contact kutusu yüksekliği kadar */
}

/* Üst sütun: profil hizasından */
.top-column {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 110px; /* profil fotoğrafı kadar */
  height: 80px;
}

/* Sütun içine video eklemek için */
.side-column video,
.top-column video,
.side-column iframe,
.top-column iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* --- Mobil Responsive Düzenlemeler --- */
@media (max-width: 700px) {
  .center-container {
    min-height: unset;
    padding: 24px 0 80px 0;
  }

  .top-row {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 18px;
  }

  .about,
  .contact {
    min-width: 0;
    width: 90vw;
    max-width: 340px;
    font-size: 17px;
    padding: 14px 10px 8px 10px;
    margin: 0 auto;
  }

  .profile-column {
    margin: 0 auto;
  }

  .profile-img {
    width: 80px;
    height: 80px;
    margin-left: 0;
  }

  .name {
    font-size: 18px;
    margin-left: 0;
  }

  .socials {
    flex-direction: row;
    gap: 18px;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .icon-soundcloud,
  .icon-instagram,
  .icon-youtube,
  .icon-spotify {
    font-size: 32px;
    padding: 0;
  }

  .discord {
    font-size: 15px;
    margin-top: 8px;
  }

  .spotify-widget {
    position: static;
    margin: 32px auto 0 auto;
    width: 95vw;
    max-width: 340px;
    height: 120px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    right: unset;
    bottom: unset;
    z-index: 10;
  }
  .spotify-widget iframe {
    width: 100% !important;
    height: 120px !important;
    border-radius: 16px;
  }

  .footer-signature {
    position: static;
    transform: none;
    margin: 24px auto 0 auto;
    text-align: center;
    font-size: 13px;
  }

  /* Sütunları mobilde gizle */
  .side-column,
  .top-column {
    display: none !important;
  }
}
