/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  overflow: hidden;
  height: 100vh;
  color: #eee;
}



/* Container */
.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Glass Panel */
.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0,255,255,0.1);
  padding: 3rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0,255,255,0.1);
  max-width: 600px;
  animation: fadeInUp 1.5s ease;
}

/* Logo */
.logo {
  width: 100px;
  margin-bottom: 1.5rem;
  animation: float 5s ease-in-out infinite;
}

/* Metinler */
h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #00e5ff;
  text-shadow: 0 0 15px #00e5ff;
}

.tagline {
  font-size: 1.2rem;
  color: #ccc;
 
}

/* Yükleme noktaları */
.loading-dots span {
  font-size: 2rem;
  animation: bounce 1.5s infinite ease-in-out;
  display: inline-block;
  margin: 0 3px;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Footer */
footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #888;
}

/* Animasyonlar */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .glass {
    padding: 2rem 1.2rem;
  }
}
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.blob,
.blob2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  animation: move 20s ease-in-out infinite;
}

.blob {
  width: 400px;
  height: 400px;
  background: #00bcd4;
  top: -100px;
  left: -100px;
}

.blob2 {
  width: 500px;
  height: 500px;
  background: #006064;
  bottom: -120px;
  right: -120px;
  animation-delay: 10s;
}

@keyframes move {
  0% { transform: translate(0, 0); }
  50% { transform: translate(50px, 80px); }
  100% { transform: translate(0, 0); }
}

