/*
Theme Name: Neo IPTV Custom Styles
Description: Neo IPTV landing page premium styles
Version: 1.0
*/

/* ========== ROOT ========== */
:root{
  --neo-bg: #060b14;
  --neo-bg-2: #08111d;
  --neo-card: rgba(255,255,255,0.05);
  --neo-border: rgba(255,255,255,0.10);
  --neo-text: #ffffff;
  --neo-muted: #94a3b8;
  --neo-cyan: #5de1ff;
  --neo-emerald: #34d399;
  --neo-blue: #60a5fa;
  --neo-shadow: 0 20px 70px rgba(0,0,0,.35);
}

/* ========== BASE ========== */
body{
  background: var(--neo-bg);
  color: var(--neo-text);
}

.neo-home{
  position: relative;
}

.neo-home::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 350px at 15% 10%, rgba(52,211,153,.10), transparent 60%),
    radial-gradient(700px 420px at 85% 0%, rgba(93,225,255,.10), transparent 60%),
    radial-gradient(500px 300px at 50% 60%, rgba(96,165,250,.08), transparent 60%);
  z-index: 0;
}

/* ========== HERO / PREMIUM TV MOCKUP ========== */
.neo-badge-glow{
  box-shadow:
    0 0 0 1px rgba(52,211,153,.06),
    0 0 30px rgba(52,211,153,.12);
}

.neo-tv-stage{
  position: relative;
  z-index: 2;
}

.neo-tv-stage::before{
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 30%, rgba(93,225,255,.16), transparent 45%),
    radial-gradient(circle at 50% 70%, rgba(52,211,153,.12), transparent 45%);
  filter: blur(30px);
  z-index: -2;
}

.neo-tv-stage::after{
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.05);
  box-shadow:
    0 0 40px rgba(93,225,255,.08),
    0 0 80px rgba(52,211,153,.06);
  pointer-events: none;
  z-index: 3;
}

.neo-tv-screen{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00)),
    linear-gradient(180deg, #08111d 0%, #07101a 100%);
}

.neo-tv-screen::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.07) 40%, transparent 70%);
  transform: translateX(-120%);
  animation: neoScreenShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes neoScreenShine{
  0%{ transform: translateX(-120%); opacity: 0; }
  15%{ opacity: 1; }
  50%{ transform: translateX(120%); opacity: .8; }
  100%{ transform: translateX(120%); opacity: 0; }
}

/* ========== CARD EFFECTS ========== */
.neo-home .rounded-2xl,
.neo-home .rounded-3xl,
.neo-home .rounded-\[28px\],
.neo-home .rounded-\[32px\],
.neo-home .rounded-\[36px\]{
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.neo-home .rounded-2xl:hover,
.neo-home .rounded-3xl:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  border-color: rgba(93,225,255,.18);
}

/* ========== CTA BUTTONS ========== */
.neo-home a{
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    opacity .25s ease,
    border-color .25s ease;
}

.neo-home a:hover{
  opacity: 1;
}

.neo-home a[href*="wa.me"]:hover,
.neo-home a[href*="t.me"]:hover{
  box-shadow: 0 12px 40px rgba(93,225,255,.12);
}

/* ========== STICKY WHATSAPP ========== */
.neo-sticky-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #34d399, #5de1ff);
  color: #061019;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow:
    0 12px 35px rgba(52,211,153,.35),
    0 0 0 1px rgba(255,255,255,.08);
}

.neo-sticky-whatsapp:hover{
  transform: translateY(-2px) scale(1.02);
}

.neo-float-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 16px;
  line-height: 1;
}

/* ========== TELEGRAM FLOAT BUTTON ========== */
.neo-floating-telegram{
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(93,225,255,.95), rgba(96,165,250,.95));
  color: #07101a;
  text-decoration: none;
  font-size: 18px;
  box-shadow:
    0 12px 35px rgba(96,165,250,.28),
    0 0 0 1px rgba(255,255,255,.10);
}

.neo-floating-telegram:hover{
  transform: translateY(-2px) scale(1.04);
}

/* ========== FAQ / CONTENT READABILITY ========== */
.neo-home p{
  word-break: break-word;
}

.neo-home h1,
.neo-home h2,
.neo-home h3{
  letter-spacing: -.02em;
}

/* ========== SEO / UX HELPERS ========== */
.neo-home section{
  position: relative;
  z-index: 1;
}

.neo-home img{
  max-width: 100%;
  height: auto;
}

.neo-home .text-slate-400,
.neo-home .text-slate-300{
  text-rendering: optimizeLegibility;
}

/* ========== MOBILE ========== */
@media (max-width: 767px){
  .neo-sticky-whatsapp{
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 16px;
    font-size: 13px;
  }

  .neo-floating-telegram{
    right: 16px;
    bottom: 76px;
    width: 50px;
    height: 50px;
  }

  .neo-tv-stage::before{
    inset: -8px;
    filter: blur(20px);
  }
}

/* ========== ACCESSIBILITY ========== */
.neo-home a:focus-visible,
.neo-sticky-whatsapp:focus-visible,
.neo-floating-telegram:focus-visible{
  outline: 2px solid var(--neo-cyan);
  outline-offset: 3px;
}