* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #020204;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .04em;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 12px 4vw;
  border-bottom: 1px solid #8b00ff;
  background: rgba(2,2,4,.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #00d9ff;
  box-shadow: 0 0 18px #ff00c8;
  flex: 0 0 auto;
}

.brand-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.9);
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex: 1;
}

nav a, .live-button, .cta, .social a {
  color: white;
  text-decoration: none;
}

nav a {
  text-transform: uppercase;
  font-size: 14px;
}

nav a:hover { color: #ff00c8; }

.live-button {
  border: 2px solid #ff00c8;
  padding: 14px 20px;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 0 14px rgba(255,0,200,.55);
}

.live-button:first-letter { color: #62ff00; }

.hero {
  width: 100%;
  background: #000;
  border-bottom: 1px solid #00d9ff;
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
}

.intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px 54px;
  text-align: center;
}

.eyebrow {
  color: #ff00c8;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: bold;
  margin: 0 0 22px;
}

h1 {
  color: #62ff00;
  font-size: clamp(34px, 6vw, 62px);
  margin: 0 0 20px;
  text-shadow: 0 0 18px rgba(98,255,0,.35);
}

.intro p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 12px auto;
  color: #ddd;
}

.tagline { color: #00d9ff !important; }

.cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.cta {
  min-width: 260px;
  padding: 20px 26px;
  border: 2px solid #ff00c8;
  font-weight: bold;
  line-height: 1.4;
  box-shadow: 0 0 18px rgba(255,0,200,.35);
  transition: .2s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(255,0,200,.7);
}

.cta.youtube {
  border-color: #00d9ff;
  box-shadow: 0 0 18px rgba(0,217,255,.3);
}

.cta span {
  font-size: 12px;
  color: #aaa;
}

.social {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social span { color: #62ff00; }
.social a { color: #00d9ff; }

.cards {
  max-width: 1050px;
  margin: 0 auto;
  padding: 20px 24px 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  padding: 34px;
  min-height: 190px;
  border: 1px solid #ff00c8;
  background: linear-gradient(135deg, rgba(255,0,200,.05), rgba(0,0,0,.9));
}

.card.green {
  border-color: #62ff00;
  background: linear-gradient(135deg, rgba(98,255,0,.04), rgba(0,0,0,.9));
}

.card h2 {
  margin-top: 0;
  color: #ff00c8;
  font-size: 23px;
}

.card.green h2 { color: #62ff00; }

.card .big {
  color: #00d9ff;
  font-weight: bold;
}

footer {
  border-top: 1px solid #8b00ff;
  padding: 36px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #aaa;
  background: #000;
}

.footer-logo {
  font-size: 42px;
  font-weight: 900;
  color: #62ff00;
  text-shadow: 0 0 16px #62ff00;
}

.values { color: #ff00c8; }

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  nav {
    order: 3;
    flex-basis: 100%;
    gap: 18px;
    overflow-x: auto;
  }

  .live-button { font-size: 12px; padding: 11px 14px; }

  .cards { grid-template-columns: 1fr; }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
