@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  --green:#2fae38;
  --green-dark:#218d2c;
  --text:#20262b;
  --muted:#717a81;
  --line:#e5e9ec;
  --soft:#f7f9fa;
  --blue:#315f9b;
  --yellow:#f1b61f;
}

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

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  background:#ffffff;
  color:var(--text);
  font-family:'Inter',Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{
  display:block;
  max-width:100%;
}

.page{
  width:100%;
  overflow:hidden;
}

.hero{
  width:100%;
  max-width:470px;
  margin:0 auto;
  padding:10px 12px 0;
  text-align:center;
  animation:fadeIn .45s ease both;
}

h1{
  max-width:430px;
  margin:0 auto 9px;
  color:var(--green);
  font-size:clamp(14px,3.6vw,18px);
  line-height:1.28;
  font-weight:700;
  letter-spacing:.035em;
  text-transform:uppercase;
}

.video-card{
  position:relative;
  width:100%;
  max-width:430px;
  margin:0 auto;
  overflow:hidden;
  border-radius:20px;
  background:#000;
  box-shadow:0 12px 32px rgba(0,0,0,.10);
}

.custom-unmute{
  position:absolute;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  pointer-events:none;
  transition:opacity .2s ease, visibility .2s ease;
}

.custom-unmute.is-hidden{
  opacity:0;
  visibility:hidden;
}

.custom-unmute-box{
  width:min(92%,350px);
  padding:15px 18px;
  border-radius:13px;
  background:rgba(47,174,56,.96);
  color:#fff;
  text-align:center;
  box-shadow:0 10px 28px rgba(0,0,0,.24);
}

.custom-unmute-title{
  font-size:15px;
  font-weight:700;
  line-height:1.25;
}

.custom-unmute-subtitle{
  margin-top:5px;
  font-size:12px;
  font-weight:500;
  line-height:1.35;
}

.video-card vturb-smartplayer{
  display:block;
  width:100%;
}

.viewer-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:12px auto 0;
  color:#5c646b;
  font-size:12px;
  font-weight:500;
}

.viewer-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#e43e3e;
  box-shadow:0 0 0 4px rgba(228,62,62,.10);
}

.authority{
  width:100%;
  max-width:820px;
  margin:22px auto 0;
  padding:0 14px;
}

.authority img{
  width:100%;
  border-radius:12px;
}

.comments{
  width:100%;
  max-width:760px;
  margin:28px auto 0;
  padding:0 14px 34px;
}

.comments-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.comment{
  display:flex;
  gap:12px;
  padding:16px;
  border-bottom:1px solid #edf0f2;
}

.comment:last-child{
  border-bottom:none;
}

.comment-avatar{
  display:flex;
  flex:0 0 38px;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#e8edf2;
  color:#57616a;
  font-size:12px;
  font-weight:700;
}

.comment-content{
  flex:1;
  min-width:0;
}

.comment-top{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  margin-bottom:3px;
}

.comment-top strong{
  color:var(--blue);
  font-size:13px;
  font-weight:700;
}

.comment-top span{
  color:#929aa0;
  font-size:11px;
}

.stars{
  margin-bottom:5px;
  color:var(--yellow);
  font-size:12px;
  letter-spacing:1px;
}

.comment p{
  color:#424a50;
  font-size:13px;
  line-height:1.48;
}

.comment-actions{
  margin-top:7px;
  color:#5877a2;
  font-size:11px;
  font-weight:600;
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(5px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(min-width:700px){
  .hero{
    padding-top:18px;
  }

  h1{
    font-size:18px;
    margin-bottom:12px;
  }

  .authority{
    margin-top:30px;
  }

  .comments{
    margin-top:34px;
  }

  .comment{
    padding:18px 20px;
  }
}

@media(max-width:390px){
  .hero{
    padding-left:8px;
    padding-right:8px;
  }

  h1{
    font-size:13px;
  }

  .video-card{
    border-radius:16px;
  }

  .authority,
  .comments{
    padding-left:10px;
    padding-right:10px;
  }
}
