:root {
  --bg: #000;
  --fg: #f2f2f2;
  --accent: #ff1e1e;
  --gothic: 'UnifrakturCook', serif;
}

@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap');

* { margin:0; padding:0; box-sizing:border-box; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Üst kırmızı bant */
.top-bar {
  background: var(--accent);
  padding: 10px 0;
}
.top-bar .top-content {
  color: #000;
  font-weight: bold;
  letter-spacing: 6px;
  font-size: 18px;
}

/* NAV */
.nav-centered {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.nav-centered .tab {
  font-family: var(--gothic);
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(255,30,30,0.4);
  transition: 0.2s;
  cursor: pointer;
}
.nav-centered .tab.active,
.nav-centered .tab:hover {
  color: var(--accent);
  text-shadow: 0 0 16px var(--accent);
}

/* Ortak panel alanı */
.panel-inner {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HOME sayfası */
.logo-wrap {
  max-width: 470px;
}
.logo-img {
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;    /* sağ tık + tıklama olaylarını engeller */
}

/* MUSIC sayfası */
.gothic-link {
	
  font-family: var(--gothic);
  font-size: 26px;
  color: var(--accent);
  text-shadow: 0 0 16px var(--accent);
  margin-bottom: 20px;
}
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;  /* videonun maksimum genişliği */
  padding-bottom: 56.25%; /* 16:9 oranı */
  height: 0;
  margin: 0 auto; /* ortalama */
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-footer {
  position: fixed;       /* sabitlenmiş */
  bottom: 0;             /* ekranın en altına */
  left: 0;
  width: 100%;           /* tam genişlik */
  padding: 10px 0;
  font-size: 12px;
  color: #888;
  text-align: center;
  background: transparent; /* arka plan istemezsen şeffaf */
  pointer-events: none;    /* tıklanmasın / seçilemesin */
}

.video-wrap iframe {
  width: 90%;
  max-width: 800px;
  height: 450px;
  border: none;
}

/* CONTACT sayfası */
.contact-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
}
.contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.profile-link {
  font-family: var(--gothic);
  color: var(--fg);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 2px;
  transition: 0.2s;
}
.profile-link:hover {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    gap: 30px;
  }
  .video-wrap iframe {
    height: 250px;
  }
}
