@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Poppins:wght@500&display=swap');


body {
  margin: 0;
  background-color: #000;
  color: #fff;
font-family: 'Orbitron', 'Poppins', sans-serif;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.loaded {
  opacity: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  border-bottom: 1px solid #222;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 60px;
}

.neon-text {
  font-size: 28px;
  color: #fff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #0ff,
    0 0 40px #0ff,
    0 0 80px #0ff;
}

nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 25px;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #0ff;
}

main {
  text-align: center;
  padding: 80px 20px;
}

.intro h2 {
  font-size: 32px;
  color: #0ff;
  margin-bottom: 10px;
}

.content {
  max-width: 900px;
  margin: auto;
  text-align: left;
  line-height: 1.8;
}

.email a {
  color: #0ff;
  text-decoration: none;
}

/* ---- Coming Soon Bölümü ---- */
.coming-soon {
  font-size: 26px;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 30px #0ff;
  animation: pulse 2s infinite alternate;
  margin-top: 50px;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; text-shadow: 0 0 20px #0ff, 0 0 60px #0ff; }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #777;
}
/* --- Sosyal Medya Butonları --- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid #0ff;
  box-shadow: 0 0 10px #0ff;
  transition: all 0.3s ease;
}

.social i {
  font-size: 22px;
}

/* Instagram Rengi */
.social.instagram:hover {
  color: #fff;
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
  box-shadow: 0 0 20px #d62976;
}

/* TikTok Rengi */
.social.tiktok:hover {
  color: #fff;
  background: linear-gradient(45deg, #25F4EE, #000, #FE2C55);
  box-shadow: 0 0 20px #25F4EE;
}
/* YouTube Rengi */
.social.youtube:hover {
  color: #fff;
  background: #FF0000;
  box-shadow: 0 0 20px #FF0000;
}

/* X (Twitter) Rengi */
.social.x:hover {
  color: #000;
  background: #fff;
  box-shadow: 0 0 20px #fff;
}
/* Sosyal medya bölümleri */
.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid #0ff;
  box-shadow: 0 0 10px #0ff;
  transition: all 0.3s ease;
  width: 220px;
}

.social i {
  font-size: 22px;
}

.social-label {
  margin-top: 10px;
  font-size: 15px;
  color: #aaa;
  letter-spacing: 1px;
}

/* Hover renkleri */
.social.instagram:hover {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
  box-shadow: 0 0 20px #d62976;
}

.social.tiktok:hover {
  background: linear-gradient(45deg, #25F4EE, #000, #FE2C55);
  box-shadow: 0 0 20px #25F4EE;
}

.social.youtube:hover {
  background: #FF0000;
  box-shadow: 0 0 20px #FF0000;
}

.social.x:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px #fff;
}
/* --- Ana Sayfa Destek Butonu --- */
.cta-container {
  margin-top: 60px; /* Üstteki yazı ile arasını açar */
  margin-bottom: 40px; /* Alttaki 'coming-soon' ile arasını açar */
}

.cta-container p {
  font-family: 'Poppins', sans-serif; /* Daha okunabilir bir font */
  font-size: 18px;
  color: #ccc;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  font-family: 'Orbitron', 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  border: 2px solid #0ff;
  background-color: rgba(0, 255, 255, 0.1); /* Hafif neon iç dolgu */
  box-shadow: 0 0 15px #0ff, inset 0 0 10px rgba(0, 255, 255, 0.3);
  text-shadow: 0 0 10px #0ff;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #0ff;
  color: #000; /* Vurguyu artırmak için siyah metin */
  box-shadow: 0 0 25px #0ff, 0 0 50px #0ff;
  text-shadow: none; /* Dolgu renkliyken metin gölgesine gerek yok */
}
