/* ── Base & Cyber Table ── */
body {
  margin: 0;
  padding: 20px;
  background: radial-gradient(circle at center, #10101a 0%, #000000 100%);
  min-height: 100vh;
  font-family: 'Courier New', Courier, monospace;
  color: #fff;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cyber-table {
  position: relative;
  width: 95%;
  max-width: 750px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(10, 10, 25, 0.85);
  border: 3px solid #00f3ff;
  box-shadow:
    0 0 20px rgba(0, 243, 255, 0.5),
    inset 0 0 30px rgba(0, 243, 255, 0.3),
    0 0 60px rgba(255, 0, 85, 0.2);
  backdrop-filter: blur(5px);
}

.cyber-table::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  pointer-events: none;
  border-radius: 17px;
  z-index: 0;
}
