/* Basic page settings */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  /* Animated mandala background */
  background: url('MainMandala.gif') center center / cover no-repeat fixed;

  color: #ffffff;
  font-family: 'Prototype', monospace;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  text-align: center;
  padding-top: 40px;
}

/* Neon‑framed title (now solid‑black fill) */
.title-frame {
  display: inline-block;
  padding: 20px 40px;
  border: 3px solid #00ff00;
  border-radius: 10px;
  background: #000000;               /* solid black background */
  box-shadow: 0 0 20px #00ff00,
              0 0 40px #00ff00 inset;
  margin-bottom: 30px;
}

.title {
  font-size: 48px;
  color: #00ff00;                    /* neon green text */
  letter-spacing: 2px;
}

/* Boxes container */
.boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

/* Individual box styling */
.box {
  width: 150px;
  height: 100px;
  background: #000000;               /* solid black fill */
  color: #00ff00;                    /* neon green text */
  border: 1px solid #00ff00;
  border-radius: 10px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.box:hover {
  box-shadow: 0 0 12px #00ff00,
              0 0 25px #00ff00 inset;
}

/* Remove brain image */
#brain-img { display: none; }

@media (max-width: 600px) {
  .title { font-size: 36px; }
}
