
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #05030a;
  color: white;
  overflow-x: hidden;
}

/* BACKGROUND */
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(168,85,247,0.25), transparent 60%),
              rgba(0,0,0,0.65);
  z-index: -2;
}

/* NAV */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
}

.logo {
  color: #a855f7;
  font-weight: bold;
}

.links a {
  margin-left: 15px;
  color: white;
  opacity: 0.6;
  text-decoration: none;
  transition: 0.2s;
}

.links a:hover {
  opacity: 1;
  color: #a855f7;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.glow-text {
  font-size: 72px;
  color: #a855f7;
  text-shadow: 0 0 30px rgba(168,85,247,0.5);
  animation: float 4s ease-in-out infinite;
}

.subtitle {
  opacity: 0.8;
  max-width: 700px;
  margin: auto;
}

.cta {
  margin-top: 20px;
}

.btn {
  padding: 10px 15px;
  margin: 5px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-6px);
}

.glow {
  background: #a855f7;
  box-shadow: 0 0 25px rgba(168,85,247,0.5);
}

.ip {
  opacity: 0.4;
  margin-top: 10px;
}

/* SECTIONS */
.section {
  padding: 120px 20px;
  max-width: 1100px;
  margin: auto;
}

/* TITLES */
.section-title {
  text-align: center;
  font-size: 38px;
  color: #a855f7;
  margin-bottom: 40px;
}

/* GRID */
.grid, .store {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* CARDS */
.card, .rank {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(168,85,247,0.25);
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
}

.card:hover, .rank:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(168,85,247,0.2);
}

/* STORE BUTTON */
.rank a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #a855f7;
  border-radius: 8px;
  color: white;
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  opacity: 0.3;
}

/* ANIMATIONS */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
