* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
  background: #02073d;
  color: white;
  font-family: 'Patrick Hand SC', cursive;
}

/* Navbar */
.navbar {
  background: #162067;
  border-bottom: 4px solid #00a2ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 26px;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;

}

.nav-buttons {
  display: flex;
  gap: 16px;
}

.nav-btn {
  text-decoration: none;
  background: #f1f1f1;
  color: #222;
  padding: 10px 28px;
  border-radius: 12px;
  border: 2px solid #999;
  font-size: 1.1rem;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* Hero */
.hero {
  width: 100%;
  height: calc(100vh - 80px);
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* fake flame glow */
/* .hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.7;
}

.hero::before {
  width: 260px;
  height: 260px;
  background: rgba(255, 180, 0, 0.6);
  top: 40px;
  right: 120px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(255, 80, 0, 0.55);
  bottom: 40px;
  left: 90px;
} */

.hero-overlay {
  position: absolute;
  left: 40px;
  bottom: 30px;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 3.4rem;
  line-height: 1.25;
  font-weight: 500;
  color: #d8e4ff;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Intro */
.intro {
  padding: 30px 50px 50px;
  text-align: center;
}

.intro-card {
  background: #6ac4ef;
  color: #10213b;
  max-width: 920px;
  margin: 0 auto 30px;
  border-radius: 16px;
  border: 3px solid #c8c8c8;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
}

.intro-text {
  font-size: 1.35rem;
  line-height: 1.7;
  text-align: center;
  flex: 1;
}

/* Trophy placeholder */
.trophy {
  width: 110px;
  min-width: 110px;
  height: 170px;
  position: relative;
}

.trophy-base {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 70px;
  height: 90px;
  background: linear-gradient(to right, #6d4917, #c8a05b);
  border-radius: 3px;
}

.trophy-base::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: -10px;
  width: 90px;
  height: 14px;
  background: #d9c26a;
}

.player-figure {
  position: absolute;
  bottom: 82px;
  left: 34px;
  width: 40px;
  height: 70px;
  background: linear-gradient(to bottom, #d4d4d4, #9ea2aa);
  border-radius: 20px 20px 10px 10px;
}

.player-figure::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: #c4a36f;
  border-radius: 50%;
}

.learn-btn,
.see-btn {
  background: #e63946;
  color: white;
  border: 3px solid #f1d1d1;
  border-radius: 14px;
  padding: 16px 34px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}

.learn-btn {
  min-width: 220px;
}

/* Featured */
.featured {
  padding: 20px 50px 70px;
}

.section-title {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #eef3ff;
  text-shadow: 0 0 8px rgba(255,255,255,0.25);
}

.featured-subtitle {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.featured-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.arrow-btn {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 3px solid #d6d6d6;
  background: #9ca3af;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.arrow-btn.right {
  background: #e63946;
}

.player-card {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
}

.player-image {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  background: linear-gradient(180deg, #7d3aa8, #5f2f88);
  position: relative;
}

/* Portrait Placeholder */
.player-image::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: #c7815d;
  border-radius: 50%;
  top: 42px;
  left: 65px;
}

.player-image::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 90px;
  background: #f2c74d;
  border-radius: 50% 50% 20px 20px;
  bottom: 20px;
  left: 50px;
}

.player-info h4 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.player-info ul {
  margin-bottom: 28px;
  padding-left: 22px;
  line-height: 2;
  font-size: 1.2rem;
}

.see-btn {
  font-size: 1.1rem;
  padding: 14px 24px;
}

/* Responsive */
/* @media (max-width: 900px) {
  .hero-overlay h1 {
    font-size: 2.4rem;
  }

  .intro-card {
    flex-direction: column;
    text-align: center;
  }

  .featured-content {
    flex-direction: column;
  }

  .player-card {
    flex-direction: column;
    text-align: center;
  }
} */