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

html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: "Inter", serif, sans-serif;
}
main {
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #1b1b3a 0%, #0a0a1f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.board {
  min-height: 50%;
  max-height: 90%;
  width: 80%;
  max-width: 950px;
  background: linear-gradient(
    145.9deg,
    rgba(28, 28, 63, 0.753) 0%,
    rgba(19, 19, 44, 0.616) 100%
  );
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  box-shadow:
  /* Outer glow */ 0 4px 24px -1px rgba(0, 0, 0, 0.2),
    /* Inner subtle highlight */ inset 0 1px 1px rgba(255, 255, 255, 0.08),
    /* Bottom inner shadow */ inset 0 -1px 1px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 32px;
  flex-wrap: wrap;
}

.board-element {
  /* min-width: 100px; */
  font-family: "inter", serif;
  max-width: 200px;
  flex-shrink: 0;
  flex-grow: 1;
  color: white;
  padding: 1.5rem 3rem;
  /* margin:  0 1.5rem; */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: linear-gradient(
    145.9deg,
    rgba(28, 28, 63, 0.753) 0%,
    rgba(19, 19, 44, 0.616) 100%
  );
  box-shadow:
  /* Outer glow */ 0 4px 24px -1px rgba(0, 0, 0, 0.2),
    /* Inner subtle highlight */ inset 0 1px 1px rgba(255, 255, 255, 0.08),
    /* Bottom inner shadow */ inset 0 -1px 1px rgba(0, 0, 0, 0.15);

  /* Subtle border */
  border: 2px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.board-element:hover {
  /* Slightly lighter background on hover */
  background: linear-gradient(
    145.9deg,
    rgba(33, 33, 73, 0.4) 0%,
    rgba(24, 24, 54, 0.5) 100%
  );

  /* Enhanced box-shadow on hover */
  box-shadow:
    /* Outer glow becomes more pronounced */ 0 8px 32px -1px rgba(0, 0, 0, 0.3),
    /* Colored glow for depth */ 0 0 20px rgba(130, 130, 255, 0.05),
    /* Inner highlight becomes more visible */ inset 0 1px 1px
      rgba(255, 255, 255, 0.12),
    /* Bottom inner shadow deepens */ inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .board-element {
    max-width: 140px;
  }
}
