body {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Logo */
img[alt="Site Logosu"] {
  max-height: 80px;
  margin-top: 20px;
}

/* Başlık */
h1 {
  margin-top: 20px;
  color: #388e3c;
}

/* Reklam Alanı */
.ad-banner {
  margin: 20px auto;
  padding: 10px;
  max-width: 600px;
  background: #fff3cd;
  border: 1px dashed #ffa726;
  border-radius: 8px;
  font-size: 14px;
}

/* Çark Alanı */
.wheel-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 20px auto;
}

.pointer {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 30px solid #e53935;
  position: absolute;
  top: 275px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

svg {
  width: 100%;
  height: 100%;
  transition: transform 4s ease-out;
}

/* Çevir Butonu */
.spin-button {
  margin: 20px auto;
  padding: 12px 30px;
  background-color: #fb8c00;
  color: white;
  border: none;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}

/* Menü Sonuçları */
.result-box {
  margin: 10px auto;
  padding: 10px;
  max-width: 400px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  cursor: pointer;
}

.result-box:hover {
  background-color: #dcedc8;
}

/* Sosyal Paylaşım */
.sosyal-paylasim {
  margin: 20px auto;
  font-size: 24px;
}

.sosyal-paylasim a {
  margin: 0 10px;
  color: #555;
  text-decoration: none;
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  overflow: auto;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: left;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.popup .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #888;
}

/* Yorum Formu */
.yorum-formu {
  margin: 30px auto;
  max-width: 500px;
  background: #f9fbe7;
  padding: 20px;
  border-radius: 10px;
}

.yorum-formu input,
.yorum-formu textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.yorum-formu button {
  background: #7cb342;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

/* Yorumlar */
.yorumlar {
  margin: 20px auto;
  max-width: 600px;
  background: #fffde7;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.yorum {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

/* Beğen Butonu */
.begen-buton {
  background-color: #7cb342 !important;
  color: #fff !important;
  border: none !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 14px !important;
  cursor: pointer;
  margin-top: 5px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.begen-buton:hover {
  background-color: #558b2f !important;
}
