.stream-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:150px 20px 90px;
  background:#efe4d2;
  position:relative;
  overflow:hidden;
}

.stream-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.stream-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.25);
  filter:blur(42px) saturate(1.18) brightness(.92);
  opacity:.48;
}

.stream-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(239,228,210,.62),
    rgba(239,228,210,.92)
  );
}

.stream-card{
  position:relative;
  z-index:2;
  width:min(1200px,92vw);
  margin:0 auto;
  padding:70px;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.22);
  border-radius:30px;
  text-align:center;
  box-shadow:0 30px 90px rgba(0,0,0,.10);
}

.stream-content{
  width:100%;
  max-width:1000px;
  margin:0 auto;
}

.stream-content h1{
  font-size:38px;
  line-height:1;
  margin:0 0 10px;
  color:#3b3535;
  letter-spacing:-2px;
}

.stream-content p{
  margin:0 0 28px;
  color:rgba(59,53,53,.7);
  font-size:20px;
  font-weight:700;
}

.stream-player{
  width:100%;
}

.stream-player iframe{
  width:100%;
  height:520px;
  border:0;
  border-radius:18px;
  background:#000;
  display:block;
}

.stream-links{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.stream-links a{
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#332d2d;
  color:#fff;
  font-weight:800;
}

.back-link{
  display:inline-block;
  margin-top:24px;
  color:#3b3535;
  font-size:13px;
  font-weight:800;
}

@media(max-width:900px){
  .stream-page{
    padding:120px 16px 70px;
  }

  .stream-card{
    width:min(460px,92vw);
    padding:28px;
  }

  .stream-content h1{
    font-size:38px;
  }

  .stream-content p{
    font-size:16px;
  }

  .stream-player iframe{
    height:220px;
  }
}