/* =====================================
   MouseTV – ARCADE NEON EDITION
   Colors:
   Neon Green: #39FF14
   Magenta Purple: #FF00FF
   Light Gray: #C0C0C0
   Dark Gray: #808080
   ===================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------------------------
   Core Variables
   --------------------------- */
:root{
  --bg:#2a2a2a;          /* medium-dark gray */
  --bg2:#3a3a3a;         /* card gray */
  --fg:#C0C0C0;          /* silver text */
  --muted:#B0B0B0;       /* muted gray */

  /* REQUIRED COLORS */
  --neon-green:#39FF14;
  --neon-purple:#FF00FF;
  --gray-light:#C0C0C0;
  --gray-dark:#808080;

  --border:#555555;
  --rad:14px;

  /* Neon glows */
  --glow-green:0 0 10px #39FF14aa, 0 0 20px #39FF1466;
  --glow-purple:0 0 10px #FF00FFaa, 0 0 20px #FF00FF66;
}

/* ---------------------------
   Base
   --------------------------- */
html, body {
  margin: 0;
  padding: 0;
}

body{
  /* …keep your existing font/color/line-height… */

  background:
    /* tiny, near-transparent green glow in bottom-left */
    radial-gradient(1200px 900px at 0% 100%,
      rgba(57,255,20,0.035) 0%,
      rgba(57,255,20,0.00) 55%),

    /* tiny, near-transparent magenta glow in top-right */
    radial-gradient(900px 700px at 100% 0%,
      rgba(255,0,255,0.025) 0%,
      rgba(255,0,255,0.00) 50%),

    /* main gray gradient (dominant) */
    linear-gradient(180deg,
      #333333 0%,
      #2f2f2f 30%,
      #2b2b2b 60%,
      #292929 100%);
  background-color: #2b2b2b; /* fallback */
}


/* Container */
.wrap{
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px;
}

/* ---------------------------
   Header
   --------------------------- */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px;
  border-bottom:1px solid var(--border);
  background:#333333cc;
  backdrop-filter:blur(6px);
  position:sticky;
  top:0;
  z-index:100;
}

.header nav a{
  margin-left:18px;
  color:var(--gray-light);
  transition:.2s;
}
.header nav a:hover{
  color:var(--neon-green);
  text-shadow:var(--glow-green);
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.brand i{
  width:18px;
  height:18px;
  border-radius:50%;
  display:inline-block;

  background:radial-gradient(circle,
    var(--neon-green),
    var(--neon-purple)
  );

  box-shadow:var(--glow-green),var(--glow-purple);
}

/* ---------------------------
   Buttons
   --------------------------- */
/* =========================================================
   SOLID NEON TUBE BUTTON (.btn)
   ========================================================= */
.btn{
  --green:#39FF14;
  --purple:#FF00FF;

  position: relative;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 16px;

  background:#111;
  color: var(--green);                    /* DEFAULT TEXT COLOR: NEON GREEN */
  font-weight:700;
  letter-spacing:0.4px;
  text-transform:uppercase;

  border: 2px solid var(--green);

  /* Deep neon glow stack */
  box-shadow:
    0 0 4px var(--green),
    0 0 8px var(--green),
    0 0 14px var(--green),
    0 0 22px var(--purple),
    0 0 44px rgba(255,0,255,0.35);

  cursor:pointer;
  transition:
    color .25s linear,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

/* Tube inner reflection */
.btn::before{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:14px;

  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.12) 30%,
    rgba(255,255,255,0.03) 55%,
    rgba(255,255,255,0.18) 100%
  );

  opacity:0.7;
  pointer-events:none;
}

/* Curved highlight strip */
.btn::after{
  content:"";
  position:absolute;
  top:6%;
  left:8%;
  width:84%;
  height:18%;
  border-radius:50%;

  background:rgba(255,255,255,0.85);
  filter:blur(8px);
  opacity:0.22;

  pointer-events:none;
}

/* Hover — tube fully powers up */
.btn:hover,
.btn:focus-visible,
.btn:active{
  color: var(--purple);                 /* TEXT → FUCHSIA ON HIGHLIGHT */
  border-color: var(--purple);

  transform:scale(1.08);

  box-shadow:
    0 0 6px var(--green),
    0 0 12px var(--green),
    0 0 24px var(--green),
    0 0 42px var(--purple),
    0 0 78px rgba(57,255,20,0.6),
    0 0 120px rgba(255,0,255,0.55);
}

/* Keyboard focus ring */
.btn:focus{
  outline:2px solid var(--purple);
  outline-offset:4px;
}


/* =========================================================
   GHOST NEON TUBE BUTTON (.ghost-btn)
   ========================================================= */
.ghost-btn{
  --green:#39FF14;
  --purple:#FF00FF;

  position: relative;
  display: inline-block;
  padding: 12px 28px;

  background: transparent;
  color: var(--green);                    /* DEFAULT TEXT COLOR: NEON GREEN */
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  border-radius: 16px;
  border: 2px solid var(--green);

  /* Neon tube outer glow */
  box-shadow:
    0 0 6px var(--green),
    0 0 12px var(--green),
    0 0 20px rgba(57,255,20,0.40),
    0 0 26px rgba(255,0,255,0.45);

  cursor: pointer;
  transition:
    color .25s linear,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

/* Inner tube shine */
.ghost-btn::before{
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 14px;
  pointer-events: none;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.30) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.03) 60%,
    rgba(255,255,255,0.15) 100%
  );

  opacity: 0.45;
}

/* Curved glass highlight */
.ghost-btn::after{
  content:"";
  position:absolute;
  top: 8%;
  left: 10%;
  width: 80%;
  height: 16%;
  border-radius: 50%;

  background: rgba(255,255,255,0.75);
  filter: blur(7px);
  opacity: 0.22;

  pointer-events:none;
}

/* Hover: tube fully fires up like transformer current */
.ghost-btn:hover,
.ghost-btn:focus-visible,
.ghost-btn:active{
  color: var(--purple);                 /* TEXT → FUCHSIA ON HIGHLIGHT */
  border-color: var(--purple);

  transform: scale(1.08);

  box-shadow:
    0 0 8px var(--green),
    0 0 18px var(--green),
    0 0 32px var(--green),
    0 0 46px var(--purple),
    0 0 88px rgba(57,255,20,0.55),
    0 0 120px rgba(255,0,255,0.50);
}

/* Keyboard focus ring */
.ghost-btn:focus{
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

a {
    text-decoration: none !important;
}



/* ---------------------------
   Cards
   --------------------------- */
.card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:var(--rad);
}

/* ---------------------------
   Hero
   --------------------------- */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:34px;
  gap:28px;

  border-radius:var(--rad);
  background:
    radial-gradient(600px at 10% 0%, rgba(57,255,20,0.15), transparent 60%),
    radial-gradient(600px at 90% 0%, rgba(255,0,255,0.15), transparent 60%),
    #3b3b3b;

  border:1px solid var(--border);
  box-shadow:0 8px 32px rgba(0,0,0,.4);
}

.hero h1{
  font-size:32px;
  margin-bottom:6px;
  color:var(--gray-light);
}
.hero p{
  color:var(--muted);
}
.hero .cta-row{
  margin-top:14px;
  display:flex;
  gap:12px;
}
.hero .hero-art{
  width:5vw;
  max-width:40vw;
  border-radius:12px;
  border:1px solid var(--border);
  box-shadow:var(--glow-purple),var(--glow-green);
}

/* ---------------------------
   Rows
   --------------------------- */
.row{
  margin-top:40px;
}
.row h2{
  margin-bottom:12px;
  font-size:22px;
  color:var(--gray-light);
}

/* ---------------------------
   Scroller & Tiles
   --------------------------- */
.scroller{
  display:flex;
  gap:18px;
  overflow-x:auto;
  padding-bottom:10px;
}
.scroller::-webkit-scrollbar{ height:8px; }
.scroller::-webkit-scrollbar-thumb{
  background:var(--gray-dark);
  border-radius:8px;
}

.tile{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:var(--rad);
  width:220px;
  flex:0 0 auto;
  cursor:pointer;
  transition:.25s;
}
.tile:hover{
  transform:translateY(-6px) scale(1.06);
  border-color:var(--neon-green);
  box-shadow:var(--glow-green),var(--glow-purple);
}

.tile img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:var(--rad) var(--rad) 0 0;
}

.badge{
  color:var(--neon-green);
  font-size:12px;
  text-shadow:var(--glow-green);
}

.tile > div{
  padding:12px;
}
.tile h3{
  margin:6px 0 4px;
  font-size:16px;
}
.tile p{
  margin:0;
  font-size:13px;
  color:var(--muted);
}

/* ---------------------------
   Footer
   --------------------------- */
.foot{
  padding:24px 18px;
  margin-top:60px;
  text-align:center;
  color:var(--gray-light);
  border-top:1px solid var(--border);
  background:#303030cc;
  backdrop-filter:blur(4px);
}

/* ---------------------------
   Player Modal
   --------------------------- */
dialog#player{
  border:0;
  background:transparent;
}
dialog#player::backdrop{
  background:rgba(0,0,0,.7);
}

.player-wrap{
  display:grid;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:var(--rad);
  padding:18px;
  max-width:min(980px,92vw);
  margin:4vh auto;
  box-shadow:var(--glow-purple),var(--glow-green);
}

#cfStream{
  width:100%;
  height:min(56vw,550px);
  border-radius:12px;
  background:#000;
  border:0;
}

#closePlayer{
  justify-self:end;
  background:#2d2d2d;
  color:var(--gray-light);
  border:1px solid var(--border);
  border-radius:10px;
  padding:6px 12px;
  cursor:pointer;
  transition:.25s;
}
#closePlayer:hover{
  background:#444444;
  box-shadow:var(--glow-green);
  color:#fff;
}

/* Responsive */
@media(max-width:720px){
  .hero{
    flex-direction:column;
    text-align:center;
  }
  .hero .hero-art{
    width:100%;
    max-width:100%;
  }
}

/* App/Player page background (match TV app) */
body.app-theme{
  background: url("../assets/images/1920x1080BG.png") no-repeat center center fixed;
  background-size: cover;
}

/* Small pricing card styles for subscribe.html (uses your neon theme) */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  margin-top:12px;
}
.pricing{
  padding:16px;
}
.pricing-head h3{
  font-size:28px;
  margin:8px 0 2px;
}
.pricing-list{
  list-style:none;
  margin:12px 0;
  padding-left:0;
  color:var(--muted);
}
.pricing-list li{
  padding:6px 0;
  border-bottom:1px dashed var(--border);
}
.pricing-cta{
  display:block;
  text-align:center;
  margin-top:12px;
}
.small{ font-size: 12px; }
.muted{ color: var(--muted); }

/* --- SIMPLE RESET --- */
html, body { margin:0; padding:0; }

/* --- BANNERS (fixed) --- */
.banner{
  position: fixed;
  z-index: 9;
  pointer-events: none;
  height: auto; width: auto;
  display: block;
}

/* Top: centered and flush to top */
.banner.top{
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 500px;        /* << set exact height you want */
  width: 1000px;
}

/* Bottom: bottom-right, with a bit of inset */
.banner.bottom{
  right: 16px;
  bottom: 16px;
  height: 320px;        /* << set exact size you want */
}

/* --- PAGE CANVAS PADDING so nothing overlaps banners --- */
.app-canvas{
  position: relative;
  background: transparent;
  width: 100vw; height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;

  /* Push content below top banner and above bottom banner */
  padding-top: 120px;   /* ≈ top banner height + a little gap */
  padding-bottom: 140px;/* ≈ bottom banner height + a little gap */
}

/* --- RAIL: use margin, not absolute top --- */

/* Background for watch page */
body.app-theme{
  background: url("/assets/images/1920x1080BG.png") no-repeat center center fixed;
  background-size: cover;
}

#app { position:relative; height:100dvh; overflow:hidden; }
.view { position:absolute; inset:0; opacity:0; transform:translateY(20px); 
        transition:opacity .28s ease, transform .28s ease; pointer-events:none; }
.view.active { opacity:1; transform:translateY(0); pointer-events:auto; }


