body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url("img/arka.webp") no-repeat center center fixed;
  background-size: cover;
  color: #FFD700; /* Sarı font */
  text-align: center;
}

.container {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background: rgba(0, 0, 50, 0.6); /* arka planı biraz karartmak için */
  border-radius: 12px;
}

.logo {
  max-width: 150px;
  margin: 20px auto;
  display: block;
}

/* Genel buton stilleri */
.btn {
  display: block;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  margin: 10px 0;
  transition: 0.3s;
}

.btn i {
  margin-right: 8px;
}

/* Özel buton renkleri */
.phone {
  background: #FFD700;
  color: #000;
}

.whatsapp {
  background: #25D366 !important;
}


.telegram {
  background: #0088cc;
}

.support {
  background: #d9534f;
}

.call {
  background: #28a745;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.info-text {
  margin: 20px 0;
  line-height: 1.6;
}

.info-text a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: underline;
}

footer {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  font-size: 22px;
  color: #FFD700;
  transition: 0.3s;
  background: none;
}

.social-icon:hover {
  color: #fff;
  transform: scale(1.2);
}

/* 📱 Mobil uyumluluk */
@media (max-width: 600px) {
  .container {
    width: 95%;
    padding: 15px;
  }

  .btn {
    font-size: 18px;
    width: 100%; /* Tam genişlik butonlar */
  }

  .logo {
    max-width: 120px;
  }
}
.support-image {
  margin: 20px auto;
  max-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.support-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;

}
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #001f4d; /* senin mavi arka plan */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #FFD700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





