* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #f1efe9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: url(https://mahinder.sirv.com/Images/gaalle.png) no-repeat center / cover;
}

.stream {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 60px 30px;
}

.stream__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.12);
  color: #ff3b3b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream__icon svg {
  width: 30px;
  height: 30px;
}

.stream h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.stream p {
  color: #a7abb3;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.stream__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.stream__btn:hover {
  background: #d90000;
  transform: translateY(-2px);
}

.stream__btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 480px) {
  .stream {
    padding: 40px 20px;
  }
  .stream h1 {
    font-size: 1.4rem;
  }
}
