* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  background:
    radial-gradient(
      circle at top,
      #18243c,
      #080c15 55%
    );

  color: #ffffff;
}

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;
}

.stream-card {
  width: 100%;
  max-width: 700px;

  padding: 55px 35px;

  text-align: center;

  background: #111827;

  border: 1px solid #263244;
  border-radius: 24px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4);
}

.live-badge {
  display: inline-flex;

  align-items: center;
  gap: 8px;

  padding: 8px 15px;

  margin-bottom: 25px;

  background: #dc2626;

  border-radius: 50px;

  font-size: 14px;
  font-weight: bold;
}

.live-dot {
  width: 9px;
  height: 9px;

  background: #ffffff;

  border-radius: 50%;

  animation: blink 1.2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

h1 {
  margin-bottom: 18px;

  font-size: 46px;
  line-height: 1.15;
}

.description {
  max-width: 520px;

  margin:
    0 auto
    35px;

  color: #b9c3d4;

  font-size: 18px;
  line-height: 1.7;
}

.watch-button {
  display: inline-block;

  padding: 17px 34px;

  background: #22c55e;
  color: #ffffff;

  border-radius: 12px;

  font-size: 19px;
  font-weight: bold;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;

  box-shadow:
    0 10px 25px rgba(34, 197, 94, 0.25);
}

.watch-button:hover {
  transform: translateY(-2px);

  opacity: 0.92;

  box-shadow:
    0 14px 32px rgba(34, 197, 94, 0.32);
}

.watch-button:active {
  transform: translateY(0);
}

.status {
  margin-top: 25px;

  color: #94a3b8;

  font-size: 14px;
}

@media (max-width: 600px) {

  .stream-card {
    padding: 40px 20px;
  }

  h1 {
    font-size: 34px;
  }

  .description {
    font-size: 16px;
  }

  .watch-button {
    width: 100%;

    padding:
      16px
      20px;
  }

}