* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}
body {
  background: radial-gradient(circle at top,
    #0f2027,
    #050505,
    #000000);
  color: white;
  
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

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

nav a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

nav a:hover {
  color: #00ffd5;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
  color: white;
  padding-top: 80px;
}

.hero-text h2 {
  font-size: 3.5rem;
}

.hero-text span {
  color: #00ffd5;
}

.hero-text p {
  margin-top: 15px;
  color: #b5b5b5;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  margin-top: 25px;
  padding: 12px 25px;
  background: #00ffd5;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  box-shadow: 0 0 20px #00ffd5;
  transform: translateY(-2px);
}

/* CARD */
.hero-card {
  width: 320px;
  height: 400px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 213, 0.3);
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.2);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  text-align: center;
}

/* صورة اللاعب */
.player-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: url("assets/images/download.jfif") center/cover no-repeat;
  border: 3px solid #00ffd5;
  box-shadow: 0 0 15px #00ffd5;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}