/* Genel reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  /* Sabit arka plan */
  .background {
    min-height: 100vh;
    background-image: url('../img/arkaplan.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Bu kısmı sabitler */
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background-color: rgba(0, 0, 0, 0.6); /* Saydam siyah zemin */
    color: white;
  }
  
  /* Logo */
  .logo img {
    height: 40px;
    width: auto;
  }
  
 /* Buton grubu */
.buttons {
    display: flex;
    gap: 32px; /* Aradaki boşluğu artırdık (önceden 12px idi) */
    margin-right: 32px; /* Sağ boşluk ekledik */
  }
  
  
 /* Ortak buton stili */
/* Ortak buton stili */
.btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  border: none;
  background: linear-gradient(135deg, #8d6a00, #ffd700); /* Koyu altın ton */
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
}

/* Hover efekti: Tam parlak sarı ve güçlü glow */
.btn:hover {
  background: #fff200;
  box-shadow: 0 0 20px rgba(255, 255, 100, 0.8);
  transform: scale(1.05);
  color: white;
}

  /* Main içerik alanı */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  padding: 20px;
  color: #ffffff;
}

.main-logo img {
  max-width: 400px;
  height: auto;
  margin-bottom: 30px;
}

.main-text {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}

.main-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
}

.main-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 40px;
}

  

/* Bahİ Giriş Butonu */
.bahi-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  margin: 20px 0;
  background: linear-gradient(135deg, #8d6a00, #ffd700); /* Koyu altın gradyan */
  color: white;
  border: none;
  border-radius: 999px; /* Oval */
  font-size: 35px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.3); /* Hafif parlama */
}

  
 .bahi-button:hover {
  background: #fff200; /* Parlak sarı */
  transform: scale(1.05);
  color: white;
  box-shadow: 0 0 20px rgba(255, 255, 100, 0.8); /* Parlak glow efekti */
}

  
  .bahi-button .icon {
    font-size: 20px;
  }
  
/* Sponsor dış çerçeve */
.sponsor-wrapper {
  margin-top: 40px;
  padding: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4); /* Yarı saydam koyuluk */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Görsel */
.sponsor-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Kart bölümü */
.category-section {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 60px auto;
  flex-wrap: wrap; /* Responsive için taşma engeli */
  max-width: 1200px;
}

/* Her kart */
.category-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  width: 300px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* Görseller */
.category-image {
  width: 100%;
  height: 180px;
  object-fit: cover; /* Eşit oran için kırpar */
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Başlık */
.category-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff200; /* Altın sarısı başlık */
}

/* Açıklama */
.category-card p {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.5;
}



/* Dış saran blur kutu */
.section-wrapper {
  margin-top: 80px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* 4'lü kart grid */
.card-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex: 1 1 22%; /* 4 kart için */
  min-width: 220px;
  color: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.card h3 {
  color: #fff200;
  margin-bottom: 10px;
}

/* Alt görsel + metin alanı */
.info-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.info-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
}

.info-text {
  flex: 1;
  color: #d1d5db;
}

.info-text h3 {
  color: #fff200;
  margin-bottom: 16px;
}

.info-text p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.info-text .btn {
  margin-top: 10px;
  background: linear-gradient(135deg, #8d6a00, #ffd700);
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  transition: 0.3s;
}

.info-text .btn:hover {
  background: #fff200;
  box-shadow: 0 0 16px rgba(255, 255, 100, 0.8);
  transform: scale(1.05);
}


.social-section {
  margin: 60px auto 0;
  text-align: center;
  color: #fff;
}

.social-section p {
  font-size: 20px;
  margin-bottom: 16px;
  color: #fff200;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  width: 70px;        /* eski: 60px */
  height: 70px;       /* eski: 60px */
  border-radius: 50%;
  color: #fff;
  font-size: 30px;    /* eski: 26px */
  transition: all 0.3s ease;
  text-decoration: none;
}


.social-icons a:hover {
  background: #fff200;
  color: black;
  transform: scale(1.1);
}

 /* Footer genel alan */
.main-footer {
  background: rgba(0, 0, 0, 0.7); /* Gri olmasın diye siyahımsı transparan */
  padding: 30px 20px;
  backdrop-filter: blur(6px);
  color: #000000;
}


/* İç düzen */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}

/* Sol logo */
.footer-logo img {
  width: 120px;
  height: auto;
}

/* Orta yazı */
.footer-text p {
  font-size: 14px;
  color: #a0a0a0;
  text-align: center;
  line-height: 1.5;
}

/* Sağ sosyal medya ikonları */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #fff200;
  color: black;
  transform: scale(1.1);
}

.payment-support {
  margin-top: 80px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  overflow: hidden;
}

.payment-support h3 {
  font-size: 22px;
  color: #fff200;
  margin-bottom: 30px;
}



@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-right: 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Main içerik */
  .main-content {
    margin-top: 60px;
    padding: 16px;
    text-align: center;
  }

  .main-logo img {
    width: 80%;
    margin-bottom: 20px;
  }

  .main-text {
    padding: 0 10px;
  }

  .main-text h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    word-break: break-word;
  }

  .main-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  /* Bahİ butonu */
  .bahi-button {
    font-size: 24px;
    padding: 12px 20px;
  }

  /* Sosyal medya */
  .social-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .social-section p {
    font-size: 18px;
  }

  /* Sponsor görseli */
  .sponsor-image {
    max-width: 95%;
  }

  /* 3'lü kategori kartlar */
  .category-section {
    flex-direction: column;
    align-items: center;
  }

  .category-card {
    width: 90%;
  }

  /* 4'lü bonus kartlar */
  .card-grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  /* Info bölümü */
  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-image img {
    max-width: 90%;
  }

  .info-text .btn {
    width: 100%;
    font-size: 16px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    width: 100px;
    margin-bottom: 12px;
  }

  .footer-text p {
    font-size: 13px;
  }

  .footer-social {
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
