/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* BODY */
body {
  background: radial-gradient(circle at top, #020024 0%, #050b3a 50%, #000 100%);
  color: white;
}

/* HEADER */
.site-header {
  text-align: center;
  padding: 20px;
  border-bottom: 2px solid #00c3ff;
  background: black;
}

.site-title {
  font-size: 2.5rem;
  color: #00c3ff;
  text-shadow: 0 0 20px #00c3ff;
}

.tagline {
  opacity: 0.7;
  font-size: 1rem;
}

/* MAIN PLAYER PAGE */
.player-page {
  padding: 40px 8%;
}

/* PLAYER HEADER BOX */
.player-header {
  display: flex;
  gap: 25px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(0,195,255,0.4);
  box-shadow: 0 0 15px rgba(0,195,255,0.2);
}

/* PLAYER IMAGE */
.player-photo {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #00c3ff;
}

/* PLAYER NAME */
.player-name {
  font-size: 2.2rem;
  color: #00c3ff;
  margin-bottom: 10px;
}

/* ABOUT TEXT */
.player-about {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* SECTION BOXES */
.section {
  margin-top: 35px;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,195,255,0.3);
  box-shadow: 0 0 10px rgba(0,195,255,0.15);
}

/* SECTION HEADERS */
.section h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #00c3ff;
  border-left: 5px solid #00c3ff;
  padding-left: 10px;
}

.section h3 {
  margin-top: 10px;
  color: #00c3ff;
}

/* TABLE STATS */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95rem;
}

.stats-table th,
.stats-table td {
  padding: 10px;
  border: 1px solid rgba(0,195,255,0.3);
  text-align: center;
}

.stats-table th {
  background: rgba(0,195,255,0.2);
  font-weight: bold;
}

.stats-table tr:hover {
  background: rgba(0,195,255,0.1);
}

/* LISTS */
.section ul {
  margin-left: 20px;
  margin-top: 10px;
}

.section li {
  margin-bottom: 6px;
}

/* BACK BUTTON */
.back-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 22px;
  background: #00c3ff;
  color: black;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.back-btn:hover {
  background: white;
  box-shadow: 0 0 15px #00c3ff;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #00c3ff;
  background: black;
  margin-top: 40px;
}
