@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700&display=swap');
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Unbounded', sans-serif;
  background: linear-gradient(135deg, #2c001e, #4a0045);
  color: #eee;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.construction-banner {
  background: linear-gradient(90deg, #e60000, #ff4d4d);
  color: #fff;
  text-align: center;
  padding: 18px 30px;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.8px;
  text-shadow: 1px 1px 5px #000;
  box-shadow: 0 8px 15px rgba(255, 0, 0, 0.6);
  border-bottom: 4px solid #a00000;
  z-index: 1000;
  position: relative;
  animation: pulse 2s infinite;
  border-radius: 0 0 12px 12px;
}

/* Discord kullanıcı isimleri özel biçim */
.discord-name {
  display: inline-block;
  background-color: #a00000;;
  color: white;
  padding: 2px 8px;
  margin: 0 2px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  box-shadow: 0 0 8px #ffef99;
  transition: transform 0.2s ease;
}

.discord-name:hover {
  transform: scale(1.1) rotate(-1deg);
  box-shadow: 0 0 12px #fff99a;
  cursor: pointer;
}


/* Hafif nefes alan animasyon */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}

header {
  text-align: center;
  padding: 100px 20px 80px;
  background: url('0a41175e84fb506189c90d32d05207a6.png') center center / cover no-repeat;
  backdrop-filter: blur(3px);
  position: relative;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  overflow: hidden;
}
header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 0, 0, 0.4);
  z-index: 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
header h1,
header p {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 8px #ff0000cc;
}
header h1 {
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 12px;
}
header p {
  opacity: 0.95;
  font-size: 1.4rem;
  line-height: 1.5;
  font-style: italic;
}
main {
  flex: 1;
  max-width: 800px;
  margin: 40px auto 60px;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}
section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.6s ease-out forwards;
  margin-bottom: 50px;
}
section:nth-of-type(1) { animation-delay: 0.2s; }
section:nth-of-type(2) { animation-delay: 0.4s; }
section:nth-of-type(3) { animation-delay: 0.6s; }
section:nth-of-type(4) { animation-delay: 0.8s; }
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 18px;
  border-left: 5px solid #ff0000;
  padding-left: 12px;
  text-shadow: 0 0 6px #ff0000aa;
}
.download .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ff2e2e;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 40px;
  box-shadow: 0 4px 12px #ff2e2eaa;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.download .btn:hover {
  background: #ff0000;
  box-shadow: 0 6px 18px #ff0000dd;
  transform: translateY(-2px);
}
.instructions ol {
  padding-left: 24px;
  font-size: 1.1rem;
}
.screenshots {
  margin-top: 60px;
  text-align: center;
  color: #fff;
}

.screenshots img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  border-radius: 10px;
}

.screenshots h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
  border-left: 5px solid #ff0000;
  padding-left: 12px;
  display: inline-block;
  text-shadow: 0 0 6px #ff0000aa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
  padding: 0 10px;
}

.gallery-grid figure {
  background: rgba(255, 0, 0, 0.2);
  border: 3px solid #ff0000;
  border-radius: 18px;
  box-shadow: 0 4px 15px #ff0000aa;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.gallery-grid figure:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 30px #ff0000dd;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 2px solid #ff0000cc;
}

.gallery-grid figcaption {
  padding: 8px 12px;
  font-size: 0.9rem;
  color: #eee;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-style: italic;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid #ff0000;
  border-radius: 18px;
  box-shadow: 0 0 30px #ff0000bb;
}
footer {
  text-align: center;
  background: #180000;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #f1f1f1cc;
  letter-spacing: 0.06em;
  user-select: none;
}

.tiktok-promo {
  background: rgba(255, 0, 0, 0.15);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  margin: 50px auto;
  max-width: 700px;
  box-shadow: 0 0 15px #ff0000aa;
}

.tiktok-promo h2 {
  color: #ff4444;
  font-size: 2rem;
  margin-bottom: 12px;
  text-shadow: 0 0 6px #ff0000aa;
}

.tiktok-promo p {
  font-size: 1.1rem;
  color: #f1f1f1;
  margin-bottom: 16px;
}

.tiktok-promo .btn {
  background: #ff2e2e;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 12px #ff2e2eaa;
  transition: all 0.3s ease;
}

.tiktok-promo .btn:hover {
  background: #ff0000;
  box-shadow: 0 6px 20px #ff0000cc;
}

.image-container {
  border: 2px solid red;
  border-radius: 20px; /* resmin köşe yuvarlaklığıyla aynı yap */
  display: inline-block;
  margin: 10px;
  text-align: center;
  overflow: hidden; /* içeriğin dışa taşmasını engeller */
}


.image-container img {
  max-width: 300px; /* ya da istediğin başka bir genişlik */
  height: auto;
  display: block;
  margin: 0 auto;
}

.caption {
  margin-top: 5px;
  font-size: 14px;
  color: black;
}

.spoiler {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  max-width: 320px;
  margin: 20px auto;
  outline: none;
}

.spoiler img {
  filter: blur(12px);
  transition: filter 0.4s ease;
  width: 100%;
  display: block;
  border-bottom: 2px solid #ff0000cc;
}

.spoiler-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 0, 0, 0.85);
  color: white;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  text-shadow: 0 0 4px black;
  user-select: none;
  pointer-events: none;
  z-index: 10; /* Öne çıkar */
}

#spoiler-warning {
  z-index: 99999; /* aşırı yüksek yap */
}

.modal-visible {
  display: flex;
  opacity: 1;
  /* varsa transition: opacity 0.5s; gibi şeyler geciktirebilir */
}


/* Modal gizli */
.modal-hidden {
  display: none;
}

.modal-visible {
  display: flex;
  position: fixed;
  z-index: 3000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #330000;
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 0 20px #ff0000aa;
  font-size: 1.1rem;
}

.modal-content button {
  margin: 12px 8px 0;
  padding: 10px 18px;
  background: #ff0000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content button:hover {
  background: #cc0000;
}


#language-switcher {
  position: fixed;
  top: 15px;
  right: 20px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 25px;
  box-shadow: 0 0 10px #ff0000cc;
  padding: 5px 12px;
  z-index: 5000;
  user-select: none;
  font-family: 'Unbounded', sans-serif;
}

#language-switcher button {
  background: transparent;
  border: none;
  color: white;
  font-weight: 700;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#language-switcher button:hover {
  background-color: #ff4d4d;
  color: #fff;
}

#language-switcher button.active {
  background-color: #ff0000;
  box-shadow: 0 0 12px #ff0000cc;
  cursor: default;
}

.full-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Çerçeveyi tam kaplar */
  display: block;
  border-bottom: 2px solid #ff0000cc;
}

.yorumlar {
  background-color: #1a001acc; /* Daha koyu, sayfaya uyumlu koyu mor */
  padding: 25px 30px;
  border-radius: 16px;
  margin: 40px auto;
  max-width: 650px;
  color: #f1e6f1; /* Hafif pembe ton, göz yormaz */
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6); /* Kırmızı ışıltı */
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  user-select: text;
  transition: box-shadow 0.3s ease;
}

.yorumlar:hover {
  box-shadow: 0 12px 45px rgba(255, 0, 0, 0.9);
}

.yorumlar h2 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 2rem;
  font-weight: 700;
  color: #ff2e2e; /* Sayfadaki canlı kırmızı */
  text-shadow: 0 0 8px #ff2e2e99;
}

.yorumlar form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yorumlar input,
.yorumlar textarea {
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: #4a0045; /* Koyu mor arka plan */
  color: #ffcccc; /* Açık kırmızı-pembe tonları */
  font-size: 1rem;
  font-weight: 500;
  box-shadow: inset 0 0 8px #ff0000aa;
  transition: background-color 0.3s ease;
  resize: vertical;
  min-height: 45px;
}

.yorumlar textarea {
  min-height: 90px;
}

.yorumlar input:focus,
.yorumlar textarea:focus {
  outline: none;
  background-color: #720072; /* Daha parlak mor */
  box-shadow: 0 0 12px #ff0000cc;
  color: #fff;
}

.yorumlar button {
  background: linear-gradient(90deg, #ff2e2e, #ff0000);
  color: white;
  padding: 14px 0;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px #ff0000cc;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.yorumlar button:hover {
  background: linear-gradient(90deg, #ff0000, #ff2e2e);
  box-shadow: 0 8px 30px #ff4444dd;
}

#commentsList {
  margin-top: 28px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #ff2e2e55 transparent;
}

#commentsList::-webkit-scrollbar {
  width: 8px;
}

#commentsList::-webkit-scrollbar-thumb {
  background-color: #ff2e2e88;
  border-radius: 6px;
}

.comment-item {
  background: #4a004599; /* Transparan koyu mor */
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px #ff000077;
  transition: background 0.3s ease;
  word-wrap: break-word;
}

.comment-item:hover {
  background: #720072cc;
}

.comment-item strong {
  color: #ffcccc;
  font-weight: 700;
  font-size: 1.1rem;
  user-select: text;
}

.comment-item em {
  color: #ff9999cc;
  font-size: 0.85rem;
  margin-left: 8px;
  user-select: none;
}

.comment-item p {
  margin-top: 6px;
  line-height: 1.4;
  color: #ffdede;
  font-size: 1rem;
}
