/* --- TEMEL AYARLAR --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff0f3;
  color: #333;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

/* --- HERO (KARŞILAMA EKRANI) --- */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1518199266791-5375a83190b7?q=80&w=2070")
    no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.title {
  font-family: "Dancing Script", cursive;
  font-size: 4rem;
  z-index: 1;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.2rem;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* SAYAÇ */
#counter-container {
  margin: 30px 0;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.time-box {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  min-width: 70px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  z-index: 1;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

.arrow {
  font-size: 2rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* --- EXTRA BÖLÜM & BUTONLAR --- */
.extra-section {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: "Dancing Script", cursive;
  font-size: 3.5rem;
  color: #ff4757;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.game-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.game-buttons button {
  background: white;
  border: 2px solid #ff4757;
  color: #ff4757;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 71, 87, 0.15);
  cursor: pointer;
}

.game-buttons button:hover {
  background: #ff4757;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
}

/* --- MOBİL UYUMLULUK (ANA İSKELET İÇİN) --- */
@media screen and (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  .section-title {
    font-size: 2.5rem;
  }
}