
/* ==========================================================
   DARK VIDEO UI — BLACK / ORANGE PREMIUM LAYOUT
   Inspired by the supplied reference screenshot.
   ========================================================== */

:root{
  --black:#050505;
  --header:#111111;
  --panel:#171717;
  --panel2:#202020;
  --line:#2b2b2b;
  --orange:#ffa000;
  --orange2:#ffb300;
  --white:#f5f5f5;
  --gray:#a6a6a6;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:#050505;
  color:var(--white);
  font-family:Arial,Helvetica,sans-serif;
}

body{
  min-height:100vh;
}

/* HEADER */
.site-header{
  background:#111;
  border-bottom:1px solid #252525;
  box-shadow:0 3px 18px rgba(0,0,0,.6);
}

.header-inner{
  width:min(1180px,calc(100% - 28px));
  margin:auto;
  min-height:108px;
  padding:15px 0 13px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:12px;
}

.brand-logo{
  text-decoration:none;
  line-height:1;
  text-align:center;
}

.brand-name{
  color:#fff;
  font-size:27px;
  font-weight:900;
  letter-spacing:-1.3px;
}

.brand-tagline{
  color:var(--orange);
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-left:9px;
}

.header-ad{
  color:#d2d2d2;
  font-size:14px;
}

/* MAIN */
.container{
  width:min(1180px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 70px;
}

.status{
  text-align:center;
  color:#aaa;
  margin:5px 0 18px;
}

.status.error{color:#ff5b5b}

/* TOP CTA CARDS */
.top-buttons{
  width:100%;
  max-width:900px;
  margin:0 auto 24px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.top-button-wrap{min-width:0}

.top-ad-button{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  border-radius:5px;
  border:1px solid #555;
  text-decoration:none!important;
  color:#fff!important;
  font-size:15px;
  font-weight:900;
  background:linear-gradient(#262626,#191919);
  box-shadow:0 5px 18px rgba(0,0,0,.45);
  overflow:hidden;
  transition:.18s ease;
}

.onlyfans-button{
  background:linear-gradient(180deg,#ffb21a,#ed8200);
  border-color:#ffb72c;
}

.telegram-button{
  background:linear-gradient(180deg,#1b9be0,#1479b2);
  border-color:#43b6ed;
}

.top-ad-button:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 35%,rgba(255,255,255,.16) 50%,transparent 65%);
  transform:translateX(-120%);
  animation:shine 3.8s ease-in-out infinite;
}

.top-ad-button span{
  position:relative;
  z-index:2;
}

.top-ad-button:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
  box-shadow:0 8px 25px rgba(0,0,0,.6);
}

@keyframes shine{
  0%,45%{transform:translateX(-120%)}
  70%,100%{transform:translateX(120%)}
}

/* VIDEO GRID */
.video-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.video-card{
  position:relative;
  min-width:0;
  padding:9px;
  background:#151515;
  border:1px solid #2d2d2d;
  border-radius:6px;
  box-shadow:0 7px 25px rgba(0,0,0,.48);
}

.video-card:hover{
  border-color:#3b3b3b;
}

.video-title{
  color:#fff;
  font-size:15px;
  font-weight:800;
  padding:4px 4px 10px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.video-wrap{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:4px;
  background:#000;
}

.video-player{
  display:block;
  width:100%;
  height:100%;
  background:#000;
  object-fit:cover;
}

/* CENTER PLAY */
.center-play{
  position:absolute;
  left:50%;
  top:50%;
  width:64px;
  height:64px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  border:2px solid rgba(255,255,255,.8);
  background:rgba(255,145,0,.92);
  box-shadow:0 0 0 7px rgba(255,160,0,.13),0 8px 25px rgba(0,0,0,.5);
  cursor:pointer;
  transition:.18s ease;
}

.center-play:hover{
  transform:translate(-50%,-50%) scale(1.08);
  background:var(--orange2);
}

.play-triangle{
  display:block;
  width:0;
  height:0;
  margin-left:5px;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:15px solid #fff;
}

.center-play.is-hidden{
  opacity:0;
  pointer-events:none;
}

/* DOWNLOAD BUTTON — HEADER-LOGO STYLE + GLOW */
.actions{
  display:flex;
  justify-content:center!important;
  align-items:center!important;
  width:100%;
  padding:14px 0 4px;
}

.download-now-centered{
  position:relative;
  display:flex!important;
  width:260px!important;
  max-width:92%;
  min-height:48px;
  margin:0 auto!important;
  align-items:center!important;
  justify-content:center!important;
  border-radius:12px;
  border:1px solid rgba(255,176,0,.75);
  background:linear-gradient(135deg,#161616 0%,#0d0d0d 52%,#1b1205 100%);
  color:#fff!important;
  text-decoration:none!important;
  font-size:15px;
  font-weight:900;
  letter-spacing:.15px;
  text-shadow:0 0 10px rgba(255,255,255,.22);
  box-shadow:
    0 0 7px rgba(255,160,0,.45),
    0 0 18px rgba(255,145,0,.30),
    0 0 38px rgba(255,145,0,.16),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(255,145,0,.18);
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.download-now-centered:before{
  content:"⇩";
  position:relative;
  z-index:3;
  color:#ffa000;
  font-size:20px;
  line-height:1;
  margin-right:9px;
  text-shadow:0 0 7px rgba(255,160,0,.9),0 0 16px rgba(255,145,0,.55);
}

.download-now-centered:after{
  content:"";
  position:absolute;
  top:-80%;
  left:-65%;
  width:32%;
  height:260%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.12),
    rgba(255,176,0,.28),
    rgba(255,255,255,.12),
    transparent
  );
  transform:rotate(20deg);
  animation:downloadLogoShine 3.2s ease-in-out infinite;
  pointer-events:none;
}

.download-now-centered:hover{
  transform:translateY(-2px) scale(1.025);
  border-color:#ffb300;
  box-shadow:
    0 0 10px rgba(255,170,0,.7),
    0 0 26px rgba(255,145,0,.48),
    0 0 52px rgba(255,145,0,.25),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.download-now-centered:active{
  transform:translateY(0) scale(.98);
}

@keyframes downloadLogoShine{
  0%,38%{left:-65%}
  72%,100%{left:135%}
}

/* PAGINATION */
.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
}

.page-btn{
  min-width:40px;
  height:38px;
  border:1px solid #3b3b3b;
  border-radius:5px;
  background:#191919;
  color:#ddd;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}

.page-btn:hover:not(:disabled){
  border-color:var(--orange);
  color:#fff;
}

.page-btn.active,
.page-btn:disabled{
  background:var(--orange);
  border-color:var(--orange);
  color:#111;
}

/* FOOTER */
.site-footer{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-top:1px solid #242424;
  background:#101010;
}

.footer-brand{
  color:#999;
  font-size:11px;
  font-weight:700;
}

/* MOBILE */
@media(max-width:800px){
  .video-list{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:9px;
  }

  .video-card{
    padding:5px;
    border-radius:7px;
  }

  .video-title{
    font-size:11px;
    line-height:1.25;
    padding:2px 2px 6px;
  }

  .video-wrap{
    aspect-ratio:16/9;
    border-radius:5px;
  }
}

@media(max-width:520px){
  .container{
    width:calc(100% - 16px);
    padding-top:16px;
  }

  .header-inner{
    width:calc(100% - 20px);
    min-height:100px;
  }

  .brand-name{font-size:24px}
  .brand-tagline{font-size:9px}

  .top-buttons{
    gap:9px;
    margin-bottom:18px;
  }

  .top-ad-button{
    min-height:48px;
    padding:8px 5px;
    font-size:12px;
  }

  .video-card{
    padding:4px;
    border-radius:6px;
  }

  .video-title{
    font-size:10px;
    line-height:1.2;
    padding:2px 2px 5px;
  }

  .video-wrap{
    aspect-ratio:9/16 !important;
    border-radius:4px;
  }

  .center-play{
    width:38px;
    height:38px;
    border-width:2px;
  }

  .play-triangle{
    border-top-width:9px;
    border-bottom-width:9px;
    border-left-width:14px;
    margin-left:3px;
  }

  .download-now-centered{
    width:94%!important;
  }
}


/* ===== Reference-style logo + download button ===== */

.brand-logo{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:0 !important;
  text-decoration:none !important;
  line-height:1 !important;
}

.brand-name{
  display:inline-block;
  color:#fff !important;
  font-size:30px !important;
  font-weight:900 !important;
  letter-spacing:-1.5px !important;
  text-shadow:none !important;
}

.brand-name::first-letter{
  color:#fff;
}

.brand-tagline{
  display:inline-flex !important;
  align-items:center;
  margin-left:0 !important;
  padding:6px 8px 7px;
  background:#f5a000;
  color:#111 !important;
  border-radius:2px;
  font-size:22px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:-1px !important;
  text-transform:none !important;
}

/* Keep the tagline visually as an orange logo block */
.download-now-centered{
  position:relative !important;
  width:230px !important;
  max-width:90% !important;
  min-height:46px !important;
  margin:12px auto 3px !important;
  padding:0 22px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:0 !important;
  border-radius:24px !important;
  background:linear-gradient(180deg,#ffb000 0%,#f38a00 100%) !important;
  color:#111 !important;
  text-decoration:none !important;
  font-size:15px !important;
  font-weight:900 !important;
  letter-spacing:.1px;
  box-shadow:0 4px 16px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.28) !important;
  transition:transform .18s ease,filter .18s ease,box-shadow .18s ease !important;
}

.download-now-centered:before{
  content:"⇩" !important;
  color:#111 !important;
  font-size:18px !important;
  font-weight:900 !important;
  margin-right:8px !important;
}

.download-now-centered:hover{
  transform:translateY(-2px) !important;
  filter:brightness(1.08) !important;
  box-shadow:0 7px 22px rgba(255,160,0,.28), inset 0 1px 0 rgba(255,255,255,.3) !important;
}

@media(max-width:520px){
  .brand-name{
    font-size:25px !important;
  }
  .brand-tagline{
    font-size:18px !important;
    padding:5px 7px 6px;
  }
  .download-now-centered{
    width:220px !important;
    min-height:44px !important;
  }
}

@media(max-width:700px){
  .video-list{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .video-wrap{aspect-ratio:9/16 !important;}
}
