* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('../img/placeholder-1920x1080.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.btn {
  padding: 12px 25px;
  background: gold;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
}

/* WAKE */
.wake {
  padding: 100px 20px;
  text-align: center;
}

.wake h2 {
  font-size: 2rem;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

/* PILLARS */
.pillars {
  display: flex;
  justify-content: space-around;
  padding: 80px 20px;
  text-align: center;
}

.pillar {
  transition: 0.3s;
}

.pillar:hover {
  transform: scale(1.1);
  color: gold;
}

/* CONTENT */
.content {
  padding: 80px 20px;
}

.scroll-row {
  display: flex;
  overflow-x: auto;
  gap: 20px;
}

.card {
  min-width: 250px;
  height: 150px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* JOIN */
.join {
  padding: 100px 20px;
  text-align: center;
}

.join input {
  padding: 10px;
  width: 250px;
}

.join button {
  padding: 10px 20px;
  background: gold;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}