:root{
      --dark-red:#f47321;
      --border:#000000;
      --accent:#8b1212;
      --background-image: url(img/bg.jpg);
      --white:#ffffff;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
	  min-height:100vh;
      font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial;
      background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.6)), var(--bg-image) center/cover no-repeat;
      color:var(--white);
      display:flex;
	  align-items:center;
	  justify-content:center;
	  padding:24px;
    }
	
    .wrap{
	width:100%;
	max-width:980px;
	background:#ffffff;
	border-radius:5px;
	overflow:hidden;
	border:1px solid #161616;}
	
    header{
	background: url(../img/header.png);
	display:flex;
	align-items:center;
	padding:66px 15px;
	}
	
	.date-col {
  margin-left: auto;
  width: 160px;
  display: flex;
  justify-content: flex-end;
}
.date-box {
  background: #0d6a93;
  color: #fff; 
  border: 1px solid #ffffff; 
  padding: 8px 12px;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

    main{
	display:grid;
	grid-template-columns:1fr 420px;
	gap:20px;
	padding:22px}
    @media (max-width:900px){main{grid-template-columns:1fr;padding:16px} header{padding:12px} }

    .panel{
	background:#f47321;
	padding:18px;
	border-radius:5px;
	border:1px solid var(--border)}

    .form-row{
	display:flex;
	gap:12px;
	margin-bottom:12px}
    .form-row .field{flex:1}
    
	label{
	display:block;
	color:#161616;
	font-size:12px;
	font-weight:600;
	margin-bottom:6px;
	opacity:0.9}
	
    input[type="text"], select{
	width:100%;
	padding:12px;
	border-radius:5px;
	border:1px solid #161616;
	background:#ffffff;
	color:#161616;
	font-weight:600}

    .btn{
	display:inline-block;
	padding:12px 18px;
	border-radius:9px;
	border:1px solid;
	background:#0d6a93;
	text-transform: uppercase;
	font-weight: 600;
	color:#ffffff;}
	
    .btn:hover{
	display:inline-block;
	padding:12px 18px;
	border-radius:9px;
	border:1px solid;
	background:#fdda9a;
	text-transform: uppercase;
	font-weight: 600;
	color:#161616;}

    /* progress bar */
    #progressWrap{
	position:relative;
	width:100%;
	height:20px;
	background:#111;
	border:1px solid #444;
	border-radius:10px;
	margin:10px 0;
	overflow:hidden}
	
    #progressBar{
	height:100%;
	width:0%;
	background:#f47321;}
	
    #progressText{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color:#fff;
	font-size:12px;
	font-weight:700}
	
	.cmd-header {
    background: url(../img/cmd.png);
    padding: 22px;
    font-size: 14px;
    color: #161616;
    font-weight: bold;}
	
    .terminal{
	background:#060606;
	color:#cfcfcf;
	padding:12px;
	height:260px;
	overflow:hidden;
	position:relative;
	font-family:monospace;
	font-size:14px}
	
    .term-lines{
	position:absolute;
	inset:12px}
	
    .term-line{
	margin-bottom:6px;
	opacity:0;
	
	transform:translateY(6px);
	transition:all .35s ease}

    .disclaimer{
	font-size:12px;
	opacity:0.9;
	margin-top:10px;
	padding:10px;
	border-radius:8px;
	background:rgba(255,255,255,0.02)}

    .overlay{
	position:fixed;
	inset:0;
	display:none;
	align-items:center;
	justify-content:center;
	background:rgba(0,0,0,0.6);
	z-index:50}
	
    .captcha{
	display:flex;
	gap:12px;
	align-items:center}
	
    .captcha img{
	width:299px;
	height:75px;
	border-radius:3px;}	
	
.thumb-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}

.thumb-link {
  display:block;
  position:relative;
  width:100%;
  max-width:420px;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.03);
  text-decoration: none;
}

.thumb-img {
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  vertical-align:middle;
  background:#111;
}
.thumb-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.45) 60%);
  color:var(--white);
  transition: background 220ms ease, transform 220ms ease;
}

.thumb-link:hover .thumb-overlay{
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.6) 60%);
  transform: translateY(-2px);
}
.thumb-play{
  font-size:28px;
  line-height:1;
  padding:8px 12px;
  border-radius:8px;
  background: rgba(255,255,255,0.06);
  color:var(--white);
  font-weight:700;
  backdrop-filter: blur(4px);
}

.thumb-caption{
  font-size:13px;
  font-weight:700;
  opacity:0.95;
  padding:6px 12px;
  border-radius:8px;
  background: rgba(0,0,0,0.35);
}
@media (max-width:900px){
  .thumb-link{ max-width:100%; border-radius:12px; }
  .thumb-play{ font-size:22px; padding:6px 10px; }
  .thumb-caption{ font-size:12px; padding:6px 10px; }
}

.thumbnail-container {
  text-align: center;
  margin-top: 20px;
}
h1 {
  font-family: 'Arial Black', sans-serif;
  font-size: 17px;
  text-align: left;
  color: #161616;
  position: relative;
  display: inline-block;
  margin: 15px auto;
  background: #ffffff;
  border-radius: 5px;
  padding: 11px 5px 11px 5px;
}
h2 {
  font-family: monospace;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: #161616;
}
 h3 {
  font-family: monospace;
  font-size: 15px;
  text-align: left;
  color: #161616;
}
 h4 {
  font-family: monospace;
  font-size: 14px;
  text-align: left;
  color: #161616;
}
 h5 {
  font-family: monospace;
  font-size: 12px;
  text-align: left;
  color: #161616;
}
.instructions{
  font-family: monospace;
  font-size: 14px;
  text-align: left;
  color: #161616;
  margin-top: 15px;
  margin-bottom: 15px;
}

.alert-box {
    font-family: monospace;
    background:#0d6a93;
    color:#fff;
    font-size:15px;
    text-align:left;
    padding:14px 16px;
    border-radius:5px;
    margin-top:16px;
  }
  .review-card {
background:#ffffff;
padding:10px;
border-radius:5px;
border:1px solid #161616;  
}
.name1 {
font-weight:700;
font-size:13px;
color:#161616;
}
.name2 {
font-size:12px;
opacity:0.9;
color:#161616; 
}
.stars {
font-weight:800;
color:#0d6a93
}

.site-footer{
  width:100%;
  background-color: #0d6a93;
  border-radius:5px;
  color:var(--white);
  padding:18px 22px;
  box-sizing:border-box;
  margin-top:24px;
}
.footer-inner{
  max-width:980px;
  margin:0 auto;
  display:flex;
  gap:18px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer-col{
  min-width:0;
  flex:1 1 240px;
}
.footer-left .brand{
  font-weight:800;
  font-size:15px;
  margin-bottom:6px;
}
.footer-left .copyright{
  font-size:13px;
  opacity:0.95;
}
.footer-center{
  display:flex;
  align-items:center;
  justify-content:center;
}
.footer-nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}
.footer-link{
  color:var(--white);
  text-decoration:none;
  font-size:13px;
  padding:6px 8px;
  border-radius:6px;
  transition:all .18s ease;
  background: #f47321;
  border:1px solid #ffffff;
}
.footer-link:hover{
  background: #0d6a93;
  border:1px solid #ffffff;
}
.footer-right{
  text-align:right;
}
.contact-title{ font-weight:700; font-size:13px; margin-bottom:6px; }
.contact-line{ font-size:13px; opacity:0.95; margin-bottom:6px; }
.small-note{ font-size:12px; opacity:0.85; }

/* Mobile adjustments */
@media (max-width:880px){
  .footer-inner{ padding-top:6px; gap:10px; }
  .footer-center{ order:3; width:100%; justify-content:flex-start; }
  .footer-right{ text-align:left; }
  .footer-left{ order:1; }
  .footer-right{ order:2; }
  .footer-link{ font-size:13px; padding:8px 10px; }
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; 
	height: 100%;
    background: #7e7878;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .popup-box {
    background: #ffffff;
    border: 1px solid #e15967;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    color: #fff;
    max-width: 400px;
  }
  .popup-box img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
  }