/* index.css */

/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body: black background with a subtle gradient effect */
body {
  font-family: 'Poppins', sans-serif;
  background: #000;  /* pure black for a sleek look */
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(64,224,208,0.1), rgba(0,0,0,1));
  box-shadow: inset 0 0 50px rgba(64,224,208,0.2);
}

.hero h1 {
  font-size: 2.5rem;
  color: #40e0d0;  /* teal neon accent */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(64,224,208,0.8);
}

.hero p {
  font-size: 1.2rem;
  color: #bfbfbf;
}

/* Scoreboard Section */
.scoreboard-section {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.scoreboard-section h2 {
  font-size: 2rem;
  color: #40e0d0;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(64,224,208,0.5);
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 0 15px rgba(64,224,208,0.3);
  overflow: hidden;
  border-radius: 8px;
}

table thead {
  background-color: #0d0d0d;
}

table th, table td {
  padding: 15px;
  text-align: center;
}

table th {
  color: #40e0d0;
  font-size: 1.2rem;
  border-bottom: 1px solid #40e0d0;
  text-shadow: 0 0 5px rgba(64,224,208,0.8);
}

table td {
  background-color: #141414;
  color: #f0f0f0;
  border-bottom: 1px solid #333;
}

/* Footer */
footer {
  background-color: #0d0d0d;
  text-align: center;
  color: #bfbfbf;
  padding: 20px;
  margin-top: auto;
}

footer p {
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .scoreboard-section h2 {
    font-size: 1.5rem;
  }
  table th, table td {
    padding: 10px;
    font-size: 0.9rem;
  }
}