

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.legacycontainer {
  text-align: center;
}



body {
  margin: 0;
  padding: 40px 20px;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  color: #ddd;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
}

.container {
  max-width: 700px;
  background: #121212cc;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffcc88;
  text-align: left;
  
}
.button-container {

  text-align: center;
}

.title {
  font-size: 3em;
  margin-bottom: 0.3em;
  letter-spacing: 2px;
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffcc, 0 0 15px #00ffccbb;
}

.subtitle {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 2em;
}

h2 {
  font-weight: 700;
  font-size: 1.6em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  color: #00e6b8;
}

p, ul {
  font-weight: 400;
  font-size: 1.05em;
  line-height: 1.5;
  margin-bottom: 1em;
  color: #ccc;
}

ul {
  padding-left: 1.2em;
}

ul ul {
  margin-top: 0.3em;
  margin-bottom: 0.8em;
  color: #aaa;
  font-size: 0.95em;
}

a {
  color: #00ffcc;
  text-decoration: none;
  border-bottom: 1px dotted #00ffcc;
  transition: color 0.3s ease;
}

a:hover {
  color: #00e6b8;
  border-bottom: 1px solid #00e6b8;
}

em {
  font-style: normal;
  color: #777;
  font-weight: 500;
}

.glow {
  font-size: 2em;
  color: #00ffcc;
  text-shadow: 0 0 10px #b0cf27, 0 0 20px #eeff00, 0 0 30px #d0ff00;
  animation: pulse 2s infinite ease-in-out;
}
.glowy {
  font-size: 2em;
  color: #f1d42d;
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc;
  }
  50% {
    text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
  }
}

.button {
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: #fff;
  color: #007bff;
  font-weight: 700;
  text-transform: uppercase;
  align-self: center;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 8px #00aaff, 0 0 20px #00aaff;
}

.button:hover {
  background-color: #e0f0ff;
  color: #005fbb;
  box-shadow: 0 0 15px #00ccff, 0 0 35px #00ccff;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.hall-card {
  width: 180px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffcc66;
  padding: 16px;
  text-align: center;
}

.hall-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}
