* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: radial-gradient(circle at 40% 40%, #2b004f, #0e0e0e 80%);
  color: white;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(10px);
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  color: #9d4edd;
}

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

nav ul li {
  cursor: pointer;
  color: #ccc;
  transition: 0.3s;
}

nav ul li:hover,
nav ul li.active {
  color: #9d4edd;
}

.btn-orange {
  background: #9d4edd;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orange:hover {
  background: #c77dff;
}

.btn-outline {
  border: 2px solid #9d4edd;
  color: #9d4edd;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 15px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #9d4edd;
  color: white;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 100px 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: -150px;
  top: 100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(157, 78, 221, 0.3), transparent 70%);
  z-index: 0;
}

.hero-left {
  flex: 1;
  position: relative;
  z-index: 2;
}

.intro {
  color: #aaa;
  font-weight: 300;
}

.name {
  font-size: 28px;
  color: white;
  font-weight: 500;
}

.title {
  font-size: 64px;
  font-weight: 700;
  color: #9d4edd;
  margin: 10px 0 30px;
}

.social {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.social a {
  color: #ccc;
  font-size: 20px;
  transition: 0.3s;
}

.social a:hover {
  color: #9d4edd;
}

.buttons {
  margin-bottom: 40px;
}

/* --- STATS BOX --- */
.stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, rgba(157,78,221,0.15), rgba(0,0,0,0.4));
  padding: 20px 60px;
  border-radius: 10px;
  width: fit-content;
  gap: 60px;
  box-shadow: 0 0 25px rgba(157,78,221,0.15);
  border: 1px solid rgba(255,255,255,0.05);
}

.stats div {
  text-align: center;
  position: relative;
}

.stats div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 10px;
  height: 40px;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stats h3 {
  color: #c77dff;
  font-size: 26px;
  font-weight: 700;
}

.stats p {
  color: #ddd;
  font-size: 15px;
  font-weight: 400;
}

.stats:hover {
  box-shadow: 0 0 35px rgba(157,78,221,0.25);
  transition: 0.4s;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(157, 78, 221, 0.15);
}

.image-circle img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(157, 78, 221, 0.25);
}
