/* Arka plan ayarı */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url('Adsız.png'); /* Görsel yolunu doğru gir! */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

/* Sayfa üstü logo ve menü */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(0, 0, 0, 0.8);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #ffd700; /* Altın sarısı */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.logo:hover {
  color: #ffffff;
  transform: scale(1.05);
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

#connectButton {
  background-color: #FFD700;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

main {
  text-align: center;
  padding: 140px 20px 80px;
}

.hero-text h1 {
  font-size: 3em;
  text-shadow: 2px 2px 4px #000;
}

.hero-text p {
  font-size: 1.3em;
  margin-top: 10px;
  text-shadow: 1px 1px 2px #000;
}

/* Satın alma kutusu */
.buy-section {
  background-color: rgba(0, 0, 0, 0.7);
  display: inline-block;
  padding: 30px 40px;
  border-radius: 12px;
  margin-top: 40px;
}

.buy-section h2 {
  font-size: 1.8em;
}

.buy-section input {
  padding: 10px;
  margin: 15px 10px;
  width: 180px;
  font-size: 1em;
}

.buy-section button {
  padding: 10px 20px;
  background-color: #FFD700;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

footer {
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: space-around;
  padding: 20px;
  margin-top: 80px;
  color: #fff;
  font-size: 0.9em;
}

/* Sayfa içeriği kutusu */
.section {
  max-width: 800px;
  margin: 40px auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.section h2 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 12px;
  text-align: center;
}

.section p {
  font-size: 0.95em;
  line-height: 1.5em;
  margin-bottom: 10px;
}
