html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #0f172a, #1e293b);
  color: #f1f5f9;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  font-family: 'Orbitron', sans-serif;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #f1f5f9;
  padding: 8px 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
}

header {
  text-align: center;
  padding: 160px 20px 100px;
  background: url('https://cdn2.unrealengine.com/egs-rocketleague-psyonixllc-s1-2560x1440-319115682.jpg') center/cover no-repeat;
  position: relative;
  color: white;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

header h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  text-shadow: 0 0 20px rgba(96,165,250,0.7);
}

header p {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 20px auto;
  color: #dbeafe;
}

section {
  padding: 100px 20px;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  color: #93c5fd;
  border-left: 4px solid #3b82f6;
  padding-left: 10px;
  margin-bottom: 20px;
}

section p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

section:nth-child(even) {
  background-color: rgba(15,23,42,0.6);
  border-radius: 12px;
}

.rank-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.rank-card {
  text-align: center;
  background: rgba(30,41,59,0.8);
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.rank-card img {
  width: 120px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(59,130,246,0.7));
}

.rank-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.4);
}

.rank-card p {
  font-weight: bold;
  color: #f1f5f9;
}

.MMR {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.MMR th {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.MMR td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  color: #e2e8f0;
  font-weight: 500;
}

.MMR tr:last-child td {
  border-bottom: none;
}

.MMR tr:hover {
  background: rgba(59, 130, 246, 0.1);
  transition: 0.3s;
}

.MMR thead {
  border-bottom: 2px solid #3b82f6;
}

#faq {
  text-align: center;
  background: rgba(30,41,59,0.8);
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


footer {
  text-align: center;
  padding: 40px;
  color: #94a3b8;
  font-size: 0.9rem;
  background: #0f172a;
}
img { width : 100%
}
