/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

/* Full screen nav */
.menu {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: #111;
  padding: 20px;
  overflow: hidden;
}
.menu a {
  flex: 1;
  border-radius: 12px;
  background: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 2rem;
  transition: background 0.3s, transform 0.2s;
  will-change: transform;
}
.menu a:hover {
  background: #4169E1;
  transform: scale(1.02);
}
.menu-inner {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  flex: 1;
  gap: 16px; /* ✅ Add spacing between links here */
}
