/* Yumurta Teması Genel Stil */
:root {
  --bg: #FFFDF7;
  --ink: #2D2D2D;
  --panel: #FFFFFF;
  --accent: #FFB703;
  --accent-2: #FDD85D;
  --btn-shadow: 0 6px 14px rgba(0,0,0,.1);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Baloo 2", "Comic Sans MS", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

/* Kabuk */
.shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px;
}

/* Panel kutusu */
.panel {
  background: var(--panel);
  border: 2px dashed #FCE8B2;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: var(--btn-shadow);
}

.hero-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  text-align: center;
  color: #B85C00;
}
.hero-sub {
  text-align: center;
  font-size: clamp(14px, 3vw, 18px);
  margin: 8px 0 16px;
}

/* Yumurtalı buton */
.btn-flame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, var(--accent-2), var(--accent));
  border: none;
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%; /* yumurta şekli */
  padding: 18px 28px;
  font-weight: 900;
  color: #4B2E00;
  font-size: 16px;
  text-decoration: none;
  margin: 6px;
  box-shadow: var(--btn-shadow), inset 0 2px 0 rgba(255,255,255,.6);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-flame:hover { transform: translateY(-2px); }
.btn-flame:active { transform: translateY(1px); }

/* Oyun kartları (Diğer Oyunlar bölümü) */
.games-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.game-card {
  background: #FFF8E6;
  border: 2px solid #FFD77A;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.game-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #9B4A00;
}
.game-card p {
  font-size: 14px;
  margin: 0 0 12px;
  color: #5B3B00;
}
.btn-wa {
  display: inline-block;
  margin: 10px auto;
  padding: 12px 20px;
  background-color: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa:hover {
  background-color: #1ebe5b;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.info-note {
  background: #fffdf5;
  border: 2px solid #f0e6d2;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}
.info-note h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #7a4b1c;
}
.info-note p {
  margin: 0;
  line-height: 1.6;
  color: #444;
  font-size: 1rem;
}
