* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow: hidden;
}

/* ---------- POZADÍ ---------- */

#menu-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('images/menu-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.1);
}

#menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(194, 24, 91, 0.25);
}

/* ---------- OBSAH MENU ---------- */

#menu-content {
  position: relative;
  z-index: 2;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px;
  text-align: center;
}

#menu-title {
  color: white;
  font-size: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ---------- TLAČÍTKA ---------- */

#menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 320px;
}

.menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 30px;
  background: #C2185B;
  border: 2px solid white;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.menu-button.pressed,
.menu-button:active {
  transform: scale(0.93);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.menu-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: rgba(194, 24, 91, 0.5);
}