/* === Coskaaz Games - Accueil === */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f4f4f4;
  color: #111;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.container {
  text-align: center;
  padding: 24px;
}

.site-title {
  font-size: 44px;
  margin: 0 0 32px 0;
  font-weight: 800;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.btn:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn:active { transform: translateY(-1px) scale(.99); }

.demineur-btn { background: #e74c3c; }
.snake-btn    { background: #27ae60; }
.morpion-btn  { background: #2980b9; }

.btn-icon {
  width: 24px;
  height: 24px;
  display: block;
}

/* Responsive */
@media (max-width: 600px) {
  .site-title { font-size: 34px; margin-bottom: 24px; }
  .buttons { gap: 14px; }
  .btn { width: 100%; justify-content: center; }
}
