/* ===== RESET ===== */
*{
  box-sizing:border-box;
}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f2f2f2;
}

/* ===== HEADER / LOGO ===== */
header{
  background:#16a085;
  color:#fff;
  text-align:center;
  padding:14px;
  font-size:22px;
  font-weight:900;
  letter-spacing:1px;
}

/* ===== GRID (HOME + RELATED) ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  padding:10px;
}

/* ===== CARD (POSTER BOX) ===== */
.card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  text-decoration:none;
  color:#000;
  box-shadow:0 2px 5px rgba(0,0,0,0.15);
}

/* ===== POSTER IMAGE (4:3 NO CROP) ===== */
.card img,
.post img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;   /* 🔥 no crop */
  background:#000;
  display:block;
}

/* ===== CARD TITLE ===== */
.card span{
  display:block;
  padding:8px;
  font-size:14px;
  font-weight:800;      /* extra bold */
  text-align:center;
}

/* ===== DETAILS PAGE ===== */
.post{
  background:#fff;
  margin:10px;
  padding:10px;
  border-radius:6px;
}

.post h2{
  font-size:20px;
  font-weight:900;
  margin:10px 0;
  text-align:center;
}

/* ===== INFO / UNDERLINE BOX ===== */
.info-box{
  text-align:center;
  font-weight:900;
  font-size:15px;
  padding:8px;
  margin-top:12px;
  border-bottom:2px solid #000;
}

.subinfo{
  text-align:center;
  font-size:13px;
  font-weight:700;
  margin:6px 0 10px;
}

/* ===== BUTTONS ===== */
.btn{
  display:block;
  margin:10px 0;
  padding:12px;
  text-align:center;
  color:#fff;
  text-decoration:none;
  border-radius:25px;
  font-weight:800;
  font-size:14px;
}

.tera{
  background:#e53935;
}

.tg{
  background:#0088cc;
}

/* ===== TELEGRAM TEXT ===== */
.tgtext{
  text-align:center;
  font-size:13px;
  font-weight:700;
  color:#555;
  margin-bottom:10px;
}

/* ===== HOW TO WATCH VIDEO ===== */
.video-box{
  margin:10px 0;
}

.video-box iframe{
  width:100%;
  height:220px;
  border-radius:6px;
}

/* ===== SECTION TITLES ===== */
h3{
  margin:12px 10px 6px;
  font-size:16px;
  font-weight:800;
}
/* ===== FOOTER & POLICY PAGES ===== */

footer{
  width:100%;
  background:#f2f2f2;
  padding:12px 5px;
  text-align:center;
  font-size:13px;
  font-weight:600;
}

footer a{
  color:#000;
  text-decoration:none;
  margin:0 6px;
}

footer a:hover{
  text-decoration:underline;
}

/* About / Privacy / Contact pages */
.page-box{
  max-width:900px;
  margin:15px auto;
  padding:15px;
  background:#fff;
  border-radius:6px;
}

.page-box h2{
  font-size:20px;
  font-weight:800;
  margin-bottom:10px;
}

.page-box p{
  font-size:14px;
  line-height:1.6;
}
