/* —— V Sayfası Stil —— */

.v-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 20px;
  text-align: center;
  background: linear-gradient(135deg, #000 0%, #111 90%);
}

/* Alt Başlık */
.v-subtitle {
  font-size: 1rem;
  color: #FFD600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.1s;
}

/* V harfi */
.v-header {
  font-size: 5rem;
  color: #FFD600;
  text-shadow: 0 4px 10px rgba(0,0,0,0.7);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.2s;
}
.v-header:hover {
  transform: scale(1.05);
}

/* Kelime */
.v-word {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.4s;
}
.v-word:hover {
  text-shadow: 0 0 12px #d4af37;
}

/* Soru */
.v-question {
  font-size: 1.25rem;
  color: #bbb;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.6s;
}

/* İpucu */
.v-hint {
  display: none;
  font-size: 1rem;
  color: #888;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.8s;
}

/* Notlar */
.v-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 1s;
}

/* Fade-in Animasyonu */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobil Optimizasyon */
@media (max-width: 480px) {
  .v-subtitle { font-size: 0.9rem; }
  .v-header   { font-size: 4rem; }
  .v-word     { font-size: 2rem; }
  .v-question { font-size: 1rem; }
}
