*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#f4fff7;
  font-family:'Inter',sans-serif;
  padding:40px 15px;
}

.tv-wrap{
  max-width:1300px;
  margin:auto;
}

.tv-top{
  text-align:center;
  margin-bottom:45px;
}

.tv-badge{
  display:inline-block;
  background:#dcfce7;
  color:#16a34a;
  padding:8px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-bottom:18px;
}

.tv-top h1{
  font-size:52px;
  font-weight:800;
  color:#111827;
  margin-bottom:14px;
}

.tv-top p{
  max-width:760px;
  margin:auto;
  color:#6b7280;
  line-height:1.8;
  font-size:17px;
}

.tv-grid{
  display:grid;
  grid-template-columns:430px 1fr;
  gap:25px;
}

.tv-card{
  background:#fff;
  border-radius:30px;
  padding:30px;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 40px rgba(0,0,0,.05);
  position:relative;
}

.tv-title{
  font-size:26px;
  font-weight:800;
  margin-bottom:25px;
}

.tv-field{
  margin-bottom:18px;
}

.tv-field label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:700;
  color:#111827;
}

.tv-field input,
.tv-field textarea,
.tv-field select{
  width:100%;
  border:1px solid #d1d5db;
  background:#f9fafb;
  border-radius:18px;
  padding:15px;
  font-size:15px;
  outline:none;
  transition:.3s;
}

.tv-field textarea{
  min-height:140px;
  resize:none;
}

.tv-field input:focus,
.tv-field textarea:focus,
.tv-field select:focus{
  border-color:#16a34a;
  background:#fff;
  box-shadow:0 0 0 4px rgba(22,163,74,.10);
}

.tv-btns{
  display:flex;
  gap:14px;
  margin-top:10px;
}

.tv-btn{
  border:none;
  border-radius:18px;
  height:58px;
  cursor:pointer;
  transition:.3s;
  font-size:15px;
  font-weight:700;
}

.tv-generate{
  flex:1;
  background:#16a34a;
  color:#fff;
}

.tv-generate:hover{
  background:#15803d;
}

.tv-copy{
  width:130px;
  background:#111827;
  color:#fff;
}

.tv-output-card{
  background:#0f172a;
  border:none;
}

.tv-output-badge{
  display:inline-block;
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:9px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-bottom:20px;
}

.tv-output{
  color:#e5e7eb;
  line-height:2;
  font-size:15px;
  white-space:pre-wrap;

  /* SMALL RESULT BOX */
  min-height:400px;
  max-height:500px;

  overflow-y:auto;
  padding-right:10px;
}

.tv-hidden-link{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  overflow:hidden;
}

@media(max-width:950px){

  .tv-grid{
    grid-template-columns:1fr;
  }

  .tv-top h1{
    font-size:36px;
  }

}