* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(0,118,206,0.45), transparent 60%),
    #050505;
}

.overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.tagline {
  color: #8dc9ff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

h1 {
  font-size: 5rem;
  margin-bottom: 20px;
  font-weight: 900;
}

h1 span {
  color: #0076CE;
}

.intro {
  font-size: 1.3rem;
  color: #d0d0d0;
  margin-bottom: 40px;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary {
  background: #0076CE;
  color: white;
}

.primary:hover {
  background: #1b8fe4;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  background: rgba(255,255,255,0.05);
}

.secondary:hover {
  background: rgba(255,255,255,0.1);
}

.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section p {
  color: #c0c0c0;
  font-size: 1.1rem;
}

.dark {
  background: #101010;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #0076CE;
}

.card h3 {
  margin-bottom: 15px;
  color: #0076CE;
}

.card p {
  color: #c0c0c0;
}

footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #777;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .intro {
    font-size: 1rem;
  }
}.player-box {
  margin-top: 30px;
}

audio {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
}

.live-note {
  margin-top: 20px;
  color: #8dc9ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}