header {
  position: static;
  top: 0;
  background: rgba(255, 20, 147, 0.08);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 20, 147, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-index: 1000;
}

header nav a {
  color: #f8dfff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0d0d0d;
  color: #ffffff00;
  line-height: 1.5;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 40px;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff3c78;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff3c78;
}

.register-section {
  max-width: 500px;
  margin: 60px auto;
  padding: 30px;
  background: #111;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 60, 120, 0.5);
}

.register-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ff3c78;
}

.register-form {
  display: flex;
  flex-direction: column;
}

.register-form label {
  margin: 10px 0 5px;
}

.register-form input {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #0d0d0d;
  color: #fff;
  margin-bottom: 15px;
}

.register-form input:focus {
  outline: 2px solid #ff3c78;
}

.btn {
  background: #ff3c78;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ff1f63;
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  background: #111;
}

footer a {
  color: #ff3c78;
  margin: 0 8px;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 64px 16px;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: #ff3c78;
}

.btn-primary {
  background: #ff3c78;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 15px rgba(255, 60, 120, 0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 60, 120, 0.6);
}

.countdown {
  font-size: 1.5rem;
  margin: 16px 0;
  color: #fff;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 32px auto;
  max-width: 960px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 60, 120, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.leaderboard-container {
  padding: 16px;
}
.search-bar {
  margin-bottom: 16px;
}
.search-bar input {
width: 100%;
max-width: 300px;
padding: 8px;
border-radius: 4px;
border: 1px solid var(--stroke);
background: var(--panel);
color: var(--text);
    }
.table {
      width: 100%;
      border-collapse: collapse;
    }
    .thead {
      position: sticky;
      top: 0;
      background: var(--panel);
    }
    .th, td {
      padding: 12px;
      text-align: left;
    }
    .tbody tr:nth-child(even) {
      background: rgba(255,255,255,0.03);
    }
    .th.sortable {
      cursor: pointer;
    }
    .th.sortable::after {
      content: " ⇅";
      font-size: 0.8em;
      color: var(--muted);
    }

