
:root{
  --navy:#06162b;
  --navy-2:#0a2446;
  --blue:#1774c8;
  --red:#e53333;
  --green:#25d366;
  --gold:#f5b544;
  --white:#fff;
  --muted:#9fb3c8;
  --line:rgba(255,255,255,.12);
}

*{box-sizing:border-box}
html,body{margin:0;min-height:100%;background:#020811;color:#fff;font-family:Arial,Helvetica,sans-serif}
body{overflow-x:hidden}
button,a{font:inherit}
a{text-decoration:none;color:inherit}

.app-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(260px,20vw) minmax(0,80vw);
  background:
    radial-gradient(circle at 80% 10%,rgba(23,116,200,.22),transparent 28%),
    linear-gradient(135deg,#071831,#02070f 68%);
}

.sidebar{
  min-height:100vh;
  padding:26px 22px 20px;
  display:flex;
  flex-direction:column;
  gap:18px;
  background:linear-gradient(180deg,rgba(10,36,70,.96),rgba(3,12,25,.98));
  border-right:1px solid var(--line);
  box-shadow:16px 0 35px rgba(0,0,0,.22);
  z-index:2;
}

.brand{display:flex;gap:12px;align-items:center}
.brand-icon{
  width:46px;height:46px;border-radius:14px;display:grid;place-items:center;
  background:linear-gradient(145deg,var(--red),#ff725d);
  box-shadow:0 10px 22px rgba(229,51,51,.3);
}
.brand strong{display:block;font-size:18px}
.brand span{display:block;color:var(--muted);font-size:11px;line-height:1.35;margin-top:3px}

.live-badge{
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(229,51,51,.12);
  border:1px solid rgba(229,51,51,.35);
  color:#ff8d84;
  font-weight:800;
  font-size:12px;
  letter-spacing:.8px;
}
.live-badge span{
  display:inline-block;width:8px;height:8px;border-radius:50%;background:#ff4137;
  margin-right:8px;box-shadow:0 0 0 6px rgba(255,65,55,.1)
}

.intro h1{font-size:clamp(27px,2.3vw,42px);line-height:1.02;margin:0 0 12px}
.intro p{margin:0;color:#bdcada;font-size:14px;line-height:1.55}

.action-list{display:grid;gap:10px}
.action{
  border:1px solid var(--line);
  border-radius:13px;
  padding:13px 15px;
  text-align:left;
  background:rgba(255,255,255,.055);
  color:#fff;
  cursor:pointer;
  transition:.2s ease;
}
.action:hover{transform:translateX(4px);background:rgba(255,255,255,.1)}
.action.primary{background:var(--red);border-color:transparent;font-weight:800}
.action.whatsapp{background:var(--green);color:#062c17;border-color:transparent;font-weight:800}
.action.florida{background:var(--blue);border-color:transparent;font-weight:800}

.contact-box{
  padding:15px;border-radius:15px;background:rgba(255,255,255,.045);border:1px solid var(--line);
  display:grid;gap:7px;font-size:13px
}
.contact-box strong{margin-bottom:4px}
.contact-box a{color:#bfd0e2;word-break:break-word}
.contact-box a:hover{color:#fff}

.advertise{
  display:block;text-align:center;border-radius:13px;padding:13px 15px;
  background:linear-gradient(135deg,var(--gold),#ffd477);color:#231603;font-weight:900
}
.sidebar footer{margin-top:auto;color:#7890a8;font-size:11px;text-align:center}

.stage{
  min-width:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  padding:18px;
  gap:14px;
}

.topbar,.bottom-strip{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  min-height:58px;padding:0 8px
}
.topbar strong{display:block;font-size:18px}
.topbar span,.bottom-strip span{display:block;color:var(--muted);font-size:12px;margin-top:3px}
.site-link{
  padding:10px 14px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.05);
  font-size:13px;font-weight:700
}

.player-area{
  position:relative;
  flex:1;
  min-height:0;
  border-radius:24px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 24px 60px rgba(0,0,0,.42);
}

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

.center-play{
  position:absolute;inset:0;display:grid;place-content:center;text-align:center;gap:12px;
  background:radial-gradient(circle,rgba(5,20,37,.18),rgba(0,0,0,.54));
  cursor:pointer;transition:.25s ease
}
.center-play.hidden{opacity:0;pointer-events:none}
.center-play span{
  width:96px;height:96px;border-radius:50%;display:grid;place-items:center;
  background:rgba(229,51,51,.95);font-size:39px;padding-left:7px;margin:auto;
  box-shadow:0 0 0 15px rgba(229,51,51,.13),0 20px 45px rgba(0,0,0,.42)
}
.center-play small{font-weight:900;letter-spacing:1.2px}

.player-status{
  position:absolute;left:18px;top:18px;padding:9px 12px;border-radius:999px;
  background:rgba(0,0,0,.55);backdrop-filter:blur(10px);font-size:12px;font-weight:800
}
.dot{display:inline-block;width:8px;height:8px;background:#ff4036;border-radius:50%;margin-right:7px}

.bottom-strip{
  min-height:50px;
  padding:0 4px;
}
.bottom-strip strong{display:block}
.bottom-strip button{
  border:1px solid var(--line);border-radius:999px;padding:10px 15px;
  background:rgba(255,255,255,.06);color:#fff;cursor:pointer
}

@media(max-width:900px){
  .app-shell{grid-template-columns:1fr}
  .sidebar{min-height:auto;border-right:0;border-bottom:1px solid var(--line)}
  .stage{min-height:75vh;padding:12px}
  .player-area{min-height:58vw}
  .site-link{display:none}
}

@media(max-width:560px){
  .sidebar{padding:20px 16px}
  .action-list{grid-template-columns:1fr 1fr}
  .action{font-size:13px;padding:12px}
  .action.primary,.action.florida{grid-column:1/-1}
  .player-area{min-height:60vw;border-radius:16px}
  .center-play span{width:72px;height:72px;font-size:29px}
  .bottom-strip{align-items:flex-start}
}
