@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600);
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  padding: 20px 0;
}
.logo-title {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 20px auto;
  padding: 20px;
  max-width: 1400px;
}
.logo-img {
  height: 100px;
  max-width: 100px;
  vertical-align: middle;
  filter: drop-shadow(0 0 10px rgba(0, 162, 255, 0.5));
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
}
.title-txt {
  color: #ffffff;
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 162, 255, 0.6);
}
table {
  background: rgba(26, 26, 46, 0.8);
  width: 90%;
  max-width: 1400px;
  border-radius: 12px;
  border-collapse: collapse;
  margin: 20px auto;
  box-shadow: 0 8px 32px rgba(0, 162, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 162, 255, 0.2);
  overflow: hidden;
}
.data-heading {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}
th {
  color: #00d4ff;
  border-bottom: 2px solid rgba(0, 162, 255, 0.3);
  font-size: 0.9em;
  font-weight: 600;
  padding: 1em 1.2em;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}
td {
  color: #e0e0e0;
  font-weight: 400;
  padding: 0.9em 1.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
tbody tr {
  transition: all 0.3s ease;
  position: relative;
}
tbody tr:hover {
  background: rgba(0, 162, 255, 0.1);
  transform: translateX(5px);
}
/* Top 3 Styling */
tbody tr:nth-child(1) {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, transparent 100%);
  border-left: 4px solid #ffd700;
}
tbody tr:nth-child(1):hover {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.25) 0%, rgba(0, 162, 255, 0.1) 100%);
}
tbody tr:nth-child(1) td:first-child {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
tbody tr:nth-child(2) {
  background: linear-gradient(90deg, rgba(192, 192, 192, 0.15) 0%, transparent 100%);
  border-left: 4px solid #c0c0c0;
}
tbody tr:nth-child(2):hover {
  background: linear-gradient(90deg, rgba(192, 192, 192, 0.25) 0%, rgba(0, 162, 255, 0.1) 100%);
}
tbody tr:nth-child(2) td:first-child {
  color: #c0c0c0;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}
tbody tr:nth-child(3) {
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.15) 0%, transparent 100%);
  border-left: 4px solid #cd7f32;
}
tbody tr:nth-child(3):hover {
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.25) 0%, rgba(0, 162, 255, 0.1) 100%);
}
tbody tr:nth-child(3) td:first-child {
  color: #cd7f32;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}
/* Responsive Design */
@media (max-width: 768px) {
  .title-txt {
    font-size: 1.5em;
    letter-spacing: 2px;
  }
  .logo-img {
    height: 60px;
    max-width: 60px;
  }
  table {
    width: 95%;
    font-size: 0.85em;
  }
  th, td {
    padding: 0.6em 0.8em;
  }
}
