/* Galeri Lightbox Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s;
}
.gallery-modal-content {
  max-width: 100vw;
  max-height: 98vh;
  border-radius: 16px;
  box-shadow: 0 0 32px #ff4d4d;
  margin-bottom: 18px;
}
.gallery-modal-caption {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
  text-align: center;
}
.gallery-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #ff4d4d;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.gallery-close:hover {
  color: #fff;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: #ff4d4d;
  border: none;
  font-size: 48px;
  padding: 12px 24px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s, color 0.2s;
}
.gallery-prev {
  left: 32px;
}
.gallery-next {
  right: 32px;
}
.gallery-nav:hover {
  background: #ff4d4d;
  color: #fff;
}
/* style.css - Cursed In Eternity */
body {
  margin: 0;
  padding: 0;
  background-image: url('background.png');
  background-size: cover;
  background-repeat: repeat-y;
  background-position: top center;
  font-family: 'Arial', sans-serif;
  color: white;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: rgba(0, 0, 0, 0.7);
}
.top-logo {
  width: 120px;
  height: auto;
}
.menu-center {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}
.menu-center a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  position: relative;
}
.menu-center a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ff4d4d;
}
.menu-center a .rope-effect {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: auto;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.menu-center a:hover .rope-effect {
  animation: ropeFadeDown 1.5s ease-in-out forwards;
}
.logo-kan-wrapper {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
  z-index: 2;
}
.logo-kan-wrapper:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #ff4d4d);
}
.logo-kan-wrapper .rope-effect {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: auto;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.logo-kan-wrapper:hover .rope-effect {
  animation: ropeFadeDown 1.5s ease-in-out forwards;
}
@keyframes ropeFadeDown {
  0% { top: 100%; opacity: 0; }
  50% { top: 110%; opacity: 0.8; }
  100% { top: 120%; opacity: 1; }
}
.page-section {
  padding: 60px 40px;
  text-align: center;
  display: none;
}
.page-section.active {
  display: block;
}
.bio-logo {
  width: 100px;
  margin: 10px 0;
}
.spotify-section {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px;
  background-color: rgba(0, 0, 0, 0.6);
  flex-wrap: wrap;
  gap: 40px;
}
.player-box {
  width: 80%;
  text-align: center;
  position: relative;
  overflow: visible;
}
#sosyal {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  text-align: center;
}
#iletisim {
  background-image: url('background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  min-height: 100vh;
}
.form-container {
  width: 100%;
  max-width: 800px;
  background-color: rgba(0,0,0,0.85);
  padding: 50px;
  border-radius: 16px;
  color: white;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  text-align: center;
  margin: 0 auto;
}
.form-container h2 {
  margin-bottom: 40px;
  font-size: 32px;
}
.form-container label {
  font-size: 20px;
  display: block;
  text-align: left;
  margin-bottom: 10px;
}
.form-container select,
.form-container textarea,
.form-container input {
  width: 100%;
  padding: 14px;
  margin-bottom: 30px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  resize: vertical;
}
.form-container button {
  width: 100%;
  padding: 16px;
  background-color: #0f9d58;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
}
.diskografi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}
.album-card {
  width: 240px;
  position: relative;
  text-align: center;
  color: white;
}
.album-cover {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}
.album-cover img {
  width: 100%;
  border-radius: 10px;
}
.album-info {
  margin-top: 10px;
}
.tracklist {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.85);
  padding: 10px;
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  color: white;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
}
.album-cover:hover .tracklist {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.countdown-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #000;
  padding: 10px 0;
  border-radius: 8px;
  margin: 18px 0;
}
.countdown-unit {
  text-align: center;
}
.count-num {
  font-size: 28px;
  font-weight: bold;
  color: #ff4d4d;
  display: block;
  letter-spacing: 1px;
}
.count-label {
  font-size: 12px;
  color: white;
  letter-spacing: 1px;
}
.coming-soon-section {
  text-align: center;
  margin: 40px auto 0 auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 24px 16px 16px 16px;
  border-radius: 12px;
  max-width: 600px;
}
.coming-soon-title {
  font-size: 28px;
  font-weight: bold;
  color: #ff4d4d;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.presave-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff4d4d;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 10px;
  font-size: 18px;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 40px 0;
}
.gallery-grid img {
  width: 320px;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 0 16px #000;
  transition: transform 0.3s, box-shadow 0.3s;
  object-fit: contain;
  background: #000;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 32px #ff4d4d;
}
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  .menu-center {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
  }
  .menu-center a {
    padding: 10px;
    font-size: 16px;
  }
  .bio-logo {
    width: 80px;
  }
  .spotify-section {
    flex-direction: column;
    padding: 20px 10px;
  }
  .player-box {
    width: 100%;
  }
  .form-container {
    padding: 30px;
  }
  .form-container h2 {
    font-size: 28px;
  }
  .form-container label {
    font-size: 18px;
  }
  .form-container select,
  .form-container textarea,
  .form-container input {
    padding: 12px;
    font-size: 16px;
  }
  .form-container button {
    padding: 14px;
    font-size: 18px;
  }
  .diskografi-grid {
    flex-direction: column;
    align-items: center;
  }
  .album-card {
    width: 90%;
    max-width: 300px;
  }
  .coming-soon-section {
    width: 90%;
    margin: 40px auto;
  }
}
