/* GLOBAL */
.home {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: .05em;
  background: linear-gradient(90deg, #ff4d4d, #ffb347);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: 20px;
  color: #ccc;
  margin-top: 6px;
}

.hero-description {
  margin-top: 20px;
  max-width: 420px;
  color: #aaa;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

/* CRT Retro Art */
.crt-frame {
  width: 260px;
  height: 180px;
  background: #111;
  border: 4px solid #333;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px #000 inset;
}

.crt-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 2px,
    rgba(0,0,0,0.1) 4px
  );
}

.crt-text {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: #ff4d4d;
}

/* FEATURED */
.section-title {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.featured-card {
  background: #14141d;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #26263a;
  text-align: center;
}

.retro-thumb {
  height: 180px;
  background: #26263a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-family: 'Press Start 2P', monospace;
  letter-spacing: .1em;
  margin-bottom: 15px;
}

/* PILLARS */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.pillar-card {
  background: #1a1a24;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #26263a;
}

.pillar-link {
  display: inline-block;
  margin-top: 10px;
  color: #ffb347;
  font-weight: 600;
}

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.news-card {
  background: #1a1a24;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #26263a;
}

.news-link {
  display: inline-block;
  margin-top: 10px;
  color: #ffb347;
  font-weight: 600;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: #ff4d4d;
  color: #fff;
}

.btn-secondary {
  background: #26263a;
  color: #fff;
}
