@ {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d;
  color: #fff;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #ff4500, #ffcc00);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-family: 'Press Start 2P', cursive;
  font-size: 18px;
  color: #fff;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #000;
}

/* Hero Section (Home) */
.hero {
  height: 100vh;
  background: url('https://i.imgur.com/H3Kpfh6.jpeg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.hero-buttons {
  margin: 20px 0;
}

.hero-button {
  background-color: #ff8a00;
  color: #fff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  margin: 5px;
  border-radius: 5px;
  font-size: 16px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.hero-button:hover {
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.7);
  transform: scale(1.05);
}

.players-online {
  margin-top: 20px;
  font-size: 1.2em;
  color: #00e5ff;
}

/* Ranks Page */
.ranks {
  text-align: center;
  padding: 40px;
}

.ranks h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 28px;
  margin-bottom: 30px;
  background: linear-gradient(to right, #ff0080, #7928ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

table {
  width: 95%;
  margin: auto;
  border-collapse: collapse;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.1);
}

th, td {
  padding: 15px;
  border: 1px solid #333;
}

th {
  background: #222;
  color: #ffcc00;
}

tr:hover {
  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.not-allowed {
  color: #888;
  text-decoration: line-through;
}

/* Rank colors */
tr.titan td:first-child { color: gold; font-weight: bold; }
tr.elite td:first-child { color: #1e90ff; font-weight: bold; }
tr.svip td:first-child { color: #da70d6; font-weight: bold; }
tr.vip td:first-child { color: #32cd32; font-weight: bold; }

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  background: #111;
  border-top: 2px solid #ff4500;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}
.auth-container {
  width: 300px;
  margin: 100px auto;
  padding: 20px;
  background: rgba(0,0,0,0.7);
  border-radius: 10px;
  text-align: center;
}

.auth-container h2 {
  margin-bottom: 15px;
}

.auth-container input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 5px;
  border: none;
}

.auth-container button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #ff6600;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.auth-container button:hover {
  background: #e65c00;
}
