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

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
  margin: 0;
  padding: 20px;
  max-width: 900px;
  margin: auto;
  background-image: linear-gradient(to bottom, #0d0d0d 0%, #1a1a1a 100%);
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header img {
  max-height: 120px;
  filter: drop-shadow(0 0 8px #ff3c3c);
}

h1 {
  font-size: 2rem;
  color: #ff3c3c;
  text-shadow: 2px 2px 5px #000;
  margin-top: 10px;
}

input, button, select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: #1f1f1f;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 16px;
}

input:focus, select:focus {
  border-color: #ff3c3c;
  box-shadow: 0 0 5px #ff3c3c;
  outline: none;
}

button {
  background-color: #ff3c3c;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #ff5e5e;
  transform: scale(1.03);
}

section, #submission, #team-login {
  background: #141414;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.15);
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #1e1e1e;
  color: #f0f0f0;
}

th, td {
  border: 1px solid #333;
  padding: 12px;
  text-align: center;
}

th {
  background-color: #292929;
  color: #ff3c3c;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #202020;
}

#leaderboard tr:hover {
  background-color: #2a2a2a;
}

footer {
  text-align: center;
  color: #555;
  font-size: 14px;
  margin-top: @keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

#matchPointBanner {
  animation: pulse 1.5s infinite;
}