/* Font + Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background: url('bg-pubg.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

/* Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: -1;
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.spinner {
  width: 70px;
  height: 70px;
  border: 6px solid #222;
  border-top: 6px solid #ffb400;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 30px #ffb400;
}
.loading-text {
  color: #ffb400;
  margin-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-size: 1.7rem;
  font-weight: 500;
}
.neon-text {
  text-shadow: 0 0 10px #ffae00, 0 0 20px #ff6a00, 0 0 30px #ffe600;
}

/* Language buttons */
.lang-toggle button {
  margin-left: 0.5rem;
  padding: 0.5rem 0.9rem;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.lang-toggle button.active {
  background: linear-gradient(90deg, #ffb400, #ff6a00);
  color: #000;
  font-weight: 700;
}
.lang-toggle button:hover { transform: scale(1.1); }

/* Hero */
.hero {
  text-align: center;
  padding: 8rem 1rem 5rem;
}
.hero h2 {
  font-size: 2rem;
  text-shadow: 0 0 20px #ffb400, 0 0 40px #ff6a00;
}
.hero p {
  margin-top: 1rem;
  color: #ccc;
  font-size: 1.0rem;
}
.btn-glow {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 40px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ffb400, #ff6a00);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 20px #ffb400;
  transition: all 0.3s ease;
}
.btn-glow:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px #ffe600;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  text-align: center;
}
.feature {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 15px rgba(255,200,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255,230,0,0.5);
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(255,255,255,0.1);
}
footer p { margin-bottom: 0.7rem; color: #ccc; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.0rem; }
  .hero p { font-size: 1rem; }
}