/*
Theme Name: CatchON TV
Theme URI: https://catchontviptv.us
Author: CatchON TV
Author URI: https://catchontviptv.us
Description: CatchON TV - Vibrant IPTV streaming theme with teal / coral / yellow accent palette, Roboto typography, soft pastel gradient backdrop, full SEO optimization, device-count pricing, direct Bitcoin payment, live BTC conversion. Includes complete page templates for Home, Plans, App, Order, Payment, Instructions, About, Support, Reseller, Blog and policy pages.
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.5
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: catchontv
Tags: streaming, iptv, light, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, blog
*/

/* =========================================================================
   1. ROOT VARIABLES - Teal primary / coral accent / sunny yellow highlights
   ========================================================================= */
:root{
  /* Brand colours - inspired by the CatchON TV logo */
  --primary:#0FB5A8;            /* deep teal primary */
  --primary-light:#3FCBC0;
  --primary-soft:#D4F4F1;       /* very light teal surface */
  --primary-pale:#EAFAF8;
  --primary-dark:#089487;       /* hover only */

  --accent:#FFB627;             /* sunny yellow-orange */
  --accent-light:#FFD584;
  --accent-soft:#FFF6E1;

  --highlight:#FF4D7E;           /* coral pink - very sparingly for special accents */
  --highlight-soft:#FFE3EC;

  /* Surfaces */
  --bg:#FFFFFF;
  --bg-soft:#F6FBFA;            /* page bg subtle teal tint */
  --bg-section:#EFF8F7;         /* section alt bg */
  --bg-card:#FFFFFF;

  /* Borders */
  --border:#DEEEEC;
  --border-soft:#E9F4F3;

  /* Text */
  --text:#1F3331;               /* primary text - deep teal-grey, never black */
  --text-soft:#465A57;
  --text-mute:#7B8E8B;
  --text-dim:#A8B3B1;

  /* States */
  --success:#43A047;
  --danger:#E53935;

  /* Typography */
  --font-body:'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:1180px;
  --radius:10px;
  --radius-lg:14px;
  --radius-sm:6px;

  /* Shadow - soft, blue-tinted */
  --shadow-sm:0 1px 2px rgba(74,144,226,0.05);
  --shadow:0 2px 8px rgba(74,144,226,0.08);
  --shadow-md:0 4px 16px rgba(74,144,226,0.10);
  --shadow-lg:0 12px 32px rgba(74,144,226,0.14);
}

/* =========================================================================
   2. RESET / BASE
   ========================================================================= */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:14px;
  line-height:1.6;
  color:var(--text);
  background:linear-gradient(135deg, #E0F7F5 0%, #FFF1D9 100%);
  background-attachment:fixed;
  min-height:100vh;
  position:relative;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-weight:400;
}
/* Soft white glow shapes for a modern SaaS feel */
body::before{
  content:"";
  position:fixed;
  width:340px;height:340px;
  background:rgba(255,255,255,.42);
  border-radius:50%;
  filter:blur(110px);
  top:18%;left:8%;
  z-index:-1;
  pointer-events:none;
  will-change:transform;
}
body::after{
  content:"";
  position:fixed;
  width:380px;height:380px;
  background:rgba(255,255,255,.32);
  border-radius:50%;
  filter:blur(130px);
  bottom:8%;right:8%;
  z-index:-1;
  pointer-events:none;
  will-change:transform;
}
img,svg{max-width:100%;display:block;height:auto}
a{color:var(--primary);text-decoration:none;transition:color .2s ease}
a:hover{color:var(--primary-dark)}
ul,ol{margin:0;padding:0}
li{list-style:none}
h1,h2,h3,h4,h5,h6{
  margin:0 0 .65rem;
  font-weight:700;
  color:var(--text);
  line-height:1.25;
  letter-spacing:-.01em;
}
h1{font-size:1.85rem;font-weight:700}
h2{font-size:1.45rem;font-weight:700}
h3{font-size:1.15rem;font-weight:600}
h4{font-size:1rem;font-weight:600}
p{margin:0 0 1rem;font-size:14px;line-height:1.7;color:var(--text-soft)}
strong,b{color:var(--text);font-weight:600}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,select,textarea{font-family:inherit}

::selection{background:var(--accent);color:var(--text)}

.container{max-width:var(--container);margin:0 auto;padding:0 1.25rem;padding-left:max(1.25rem, env(safe-area-inset-left, 1.25rem));padding-right:max(1.25rem, env(safe-area-inset-right, 1.25rem))}
.content-narrow{max-width:780px;margin:0 auto}

/* Skip link */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{position:fixed;left:1rem;top:1rem;width:auto;height:auto;background:var(--primary);color:#fff;padding:.6rem 1rem;font-weight:500;z-index:10000;border-radius:var(--radius-sm)}
.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden;word-wrap:normal!important}

/* =========================================================================
   3. BUTTONS - Small & elegant
   ========================================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  padding:.55rem 1.1rem;
  border-radius:var(--radius);
  font-family:inherit;
  font-size:13px;
  font-weight:500;
  letter-spacing:.01em;
  cursor:pointer;
  transition:all .2s ease;
  border:1px solid transparent;
  text-decoration:none;
  line-height:1.3;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 1px 3px rgba(74,144,226,.25);
}
.btn-primary:hover{background:var(--primary-dark);color:#fff;box-shadow:0 3px 10px rgba(74,144,226,.35)}
.btn-accent{
  background:var(--accent);
  color:var(--text);
  box-shadow:0 1px 3px rgba(252,233,106,.4);
  font-weight:600;
}
.btn-accent:hover{background:#FFD700;color:var(--text)}
.btn-outline{
  background:#fff;
  color:var(--primary);
  border-color:var(--border);
}
.btn-outline:hover{border-color:var(--primary);color:var(--primary-dark);background:var(--primary-pale)}
.btn-ghost{
  background:var(--primary-soft);
  color:var(--primary-dark);
}
.btn-ghost:hover{background:#CCE3F8;color:var(--primary-dark)}
.btn-block{display:flex;width:100%}
.btn-sm{padding:.4rem .85rem;font-size:12px}
.btn-lg{padding:.7rem 1.4rem;font-size:14px}

/* =========================================================================
   4. SITE HEADER
   ========================================================================= */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:all .3s ease;
}
.site-header.scrolled{
  background:rgba(255,255,255,.98);
  border-bottom-color:var(--border);
  box-shadow:0 1px 6px rgba(74,144,226,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:var(--container);
  margin:0 auto;
  padding:.7rem 1rem;
  padding-left:max(1rem, env(safe-area-inset-left, 1rem));
  padding-right:max(1rem, env(safe-area-inset-right, 1rem));
  gap:1.5rem;
}
@media (min-width:768px){
  .header-inner{padding:.7rem 2rem}
}
@media (min-width:1200px){
  .header-inner{padding:.7rem 1.25rem}
}
.brand{display:flex;align-items:center;flex-shrink:0}
.brand img{height:46px;width:auto;display:block;transition:height .25s ease}
.site-header.scrolled .brand img{height:40px}

.main-nav .nav-list,.main-nav ul{display:flex;gap:1.6rem}
.main-nav a{
  color:var(--text-soft);
  font-size:13px;
  font-weight:500;
  transition:color .2s ease;
  position:relative;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-6px;
  height:2px;
  background:var(--primary);
  transform:scaleX(0);
  transition:transform .25s ease;
  transform-origin:center;
}
.main-nav a:hover,.main-nav .current-menu-item a{color:var(--primary)}
.main-nav a:hover::after,.main-nav .current-menu-item a::after{transform:scaleX(1)}
.header-cta{padding:.5rem 1rem;font-size:12.5px}

@media (max-width:880px){
  .main-nav{display:none}
  .header-cta{display:none}
}

/* Mobile toggle - 3 bars */
.mobile-toggle{
  position:relative;
  width:40px;height:40px;
  background:transparent;
  border:1px solid var(--border);
  cursor:pointer;
  display:none;
  border-radius:var(--radius-sm);
  transition:all .2s ease;
  padding:0;
}
@media (max-width:880px){.mobile-toggle{display:block}}
.mobile-toggle:hover{background:var(--primary-pale);border-color:var(--primary-light)}
.mobile-toggle span{
  position:absolute;
  left:11px;
  width:18px;height:2px;
  background:var(--text);
  border-radius:2px;
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
.mobile-toggle span:nth-child(1){top:13px}
.mobile-toggle span:nth-child(2){top:19px;width:14px}
.mobile-toggle span:nth-child(3){top:25px}
.mobile-toggle.active{background:var(--primary);border-color:var(--primary)}
.mobile-toggle.active span{background:#fff}
.mobile-toggle.active span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.mobile-toggle.active span:nth-child(2){opacity:0;transform:translateX(-10px)}
.mobile-toggle.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg);width:18px}

/* =========================================================================
   5. MOBILE MENU - Full-screen, small left-aligned text
   ========================================================================= */
.mobile-menu{
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  width:100%;height:100vh;
  background:#fff;
  z-index:200;
  transform:translateY(-100%);
  opacity:0;
  visibility:hidden;
  transition:transform .4s cubic-bezier(.4,0,.2,1), opacity .3s ease, visibility .4s;
  overflow-y:auto;
}
.mobile-menu.active{transform:translateY(0);opacity:1;visibility:visible}

.mobile-menu-inner{
  display:flex;
  flex-direction:column;
  min-height:100vh;
  padding:1rem 0 1.5rem;
}
.mobile-brand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.45rem 1.25rem 1rem;
  border-bottom:1px solid var(--border-soft);
}
.mobile-brand img{height:42px;width:auto}
.mobile-close{
  width:36px;height:36px;
  background:var(--bg-section);
  border:1px solid var(--border);
  color:var(--text);
  font-size:20px;
  font-weight:300;
  border-radius:var(--radius-sm);
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all .2s ease;
}
.mobile-close:hover{background:var(--primary);color:#fff;border-color:var(--primary)}

.mobile-menu ul{
  display:flex;
  flex-direction:column;
  padding:.5rem 0;
}
.mobile-menu li{
  opacity:0;
  transform:translateX(-15px);
  transition:opacity .35s ease, transform .35s ease;
}
.mobile-menu.active li{opacity:1;transform:translateX(0)}
.mobile-menu.active li:nth-child(1){transition-delay:.05s}
.mobile-menu.active li:nth-child(2){transition-delay:.10s}
.mobile-menu.active li:nth-child(3){transition-delay:.15s}
.mobile-menu.active li:nth-child(4){transition-delay:.20s}
.mobile-menu.active li:nth-child(5){transition-delay:.25s}
.mobile-menu.active li:nth-child(6){transition-delay:.30s}
.mobile-menu.active li:nth-child(7){transition-delay:.35s}
.mobile-menu.active li:nth-child(8){transition-delay:.40s}
.mobile-menu a{
  display:block;
  padding:.85rem 1.25rem;
  color:var(--text);
  font-size:13px;
  font-weight:400;
  text-align:left;
  border-bottom:1px solid var(--border-soft);
  transition:all .2s ease;
}
.mobile-menu a:hover{
  background:var(--primary-pale);
  color:var(--primary);
  padding-left:1.5rem;
}
.mobile-menu .nav-cta{
  margin:1rem 1.25rem 0;
  padding:.7rem 1rem;
  background:var(--primary);
  color:#fff;
  text-align:center;
  border-radius:var(--radius);
  border-bottom:none;
  font-weight:500;
}
.mobile-menu .nav-cta:hover{background:var(--primary-dark);padding-left:1rem}

.mobile-footer{
  margin-top:auto;
  padding:1.25rem;
  border-top:1px solid var(--border-soft);
  font-size:12px;
  color:var(--text-mute);
}
.mobile-footer p{margin:.2rem 0;font-size:12px}
.mobile-footer a{color:var(--primary);font-weight:500}

.nav-overlay{display:none}

/* =========================================================================
   6. MAIN / SECTIONS / PAGE HEADER
   ========================================================================= */
.site-main{padding-top:60px;min-height:50vh;background:transparent}

.section{padding:3.5rem 0}
.section-alt{background:rgba(255,255,255,.55);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}

.page-header{
  padding:4rem 0 2rem;
  background:transparent;
  border-bottom:1px solid rgba(226,238,251,.6);
  text-align:center;
}
.page-header .eyebrow{
  display:inline-block;
  color:var(--primary);
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:.6rem;
}
.page-header h1{
  font-size:clamp(1.6rem, 3vw, 2.25rem);
  margin:0 0 .8rem;
  color:var(--text);
}
.page-header p{
  color:var(--text-soft);
  font-size:15px;
  max-width:680px;
  margin:0 auto;
}

.section-head{text-align:center;max-width:680px;margin:0 auto 2.5rem}
.section-head .eyebrow{
  display:inline-block;
  color:var(--primary);
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:.5rem;
}
.section-head h2{
  font-size:clamp(1.35rem, 2.5vw, 1.75rem);
  margin:0 0 .6rem;
}
.section-head p{font-size:14px;color:var(--text-soft);margin:0}

.eyebrow{
  display:inline-block;
  color:var(--primary);
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:.5rem;
}

/* =========================================================================
   7. HERO
   ========================================================================= */
.hero{
  position:relative;
  padding:5rem 0 3.5rem;
  overflow:hidden;
  background:transparent;
}
.hero::before{
  content:"";
  position:absolute;
  width:520px;height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(74,144,226,.12) 0%, transparent 65%);
  top:-180px;left:-120px;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  width:420px;height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(252,233,106,.18) 0%, transparent 65%);
  bottom:-160px;right:-100px;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:2.5rem;
  align-items:center;
}
.hero-content{display:flex;flex-direction:column;gap:1rem}
.chip{
  display:inline-flex;
  align-items:center;
  padding:.3rem .85rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:99px;
  color:var(--primary);
  font-size:11.5px;
  font-weight:500;
  letter-spacing:.02em;
  align-self:flex-start;
  box-shadow:var(--shadow-sm);
}
.text-brand{color:var(--primary)}
.hero-title{
  font-size:clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.02em;
  color:var(--text);
  margin:0;
}
.hero-sub{
  font-size:15px;
  color:var(--text-soft);
  line-height:1.7;
  max-width:540px;
  margin:.25rem 0 0;
}
.hero-actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.6rem}
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:1.25rem;
  margin-top:1rem;
}
.hero-trust li{
  color:var(--text-mute);
  font-size:12.5px;
  font-weight:500;
}
.hero-trust li::before{
  content:"";
  display:inline-block;
  width:14px;height:14px;
  margin-right:.4rem;
  vertical-align:-2px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A90E2'%3E%3Cpath d='M6.4 11.4 2.8 7.8l1.4-1.4 2.2 2.2L11.6 4l1.4 1.4z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero-img-wrap{
  position:relative;
  width:100%;
  max-width:520px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border);
  background:#fff;
}
.hero-img-wrap img{
  width:100%;
  height:auto;
  display:block;
}
/* When hero image is a phone/screenshot, give it more breathing room and no border */
.hero-img-mobile{
  background:transparent;
  border:none;
  box-shadow:none;
  max-width:560px;
  overflow:visible;
}
.hero-img-mobile img{
  filter:drop-shadow(0 18px 40px rgba(74,144,226,.18));
}
.hero-badge{
  position:absolute;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:.7rem .9rem;
  display:flex;
  align-items:center;
  gap:.6rem;
  box-shadow:var(--shadow-md);
  font-size:12px;
  min-width:140px;
}
.hero-badge strong{display:block;font-size:13px;color:var(--text);font-weight:600}
.hero-badge span{color:var(--text-mute);font-size:11px}
.hero-badge-1{top:8%;left:-20px;animation:float 5s ease-in-out infinite}
.hero-badge-2{bottom:10%;right:-18px;animation:float 5s ease-in-out infinite reverse}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

@media (max-width:880px){
  .hero{padding:4rem 0 2.5rem}
  .hero-inner{grid-template-columns:1fr;text-align:center;gap:2rem}
  .hero-content{align-items:center}
  .hero-actions{justify-content:center}
  .hero-trust{justify-content:center}
  .hero-badge-1{left:0}
  .hero-badge-2{right:0}
}

/* =========================================================================
   8. CARDS / GRIDS - Features, advantages, steps, testimonials
   ========================================================================= */
.advantages-grid,.features-grid,.app-features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}
.advantage-card,.feature-card{
  padding:1.4rem 1.2rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  transition:all .25s ease;
}
.advantage-card:hover,.feature-card:hover{
  border-color:var(--primary-light);
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}
.adv-icon,.feat-icon{
  width:42px;height:42px;
  background:var(--primary-pale);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.85rem;
  color:var(--primary);
}
.adv-icon svg,.feat-icon svg{width:20px;height:20px;fill:var(--primary)}
.advantage-card h3,.feature-card h3{
  font-size:14.5px;
  font-weight:600;
  margin:0 0 .4rem;
  color:var(--text);
}
.advantage-card p,.feature-card p{
  font-size:13px;
  color:var(--text-soft);
  line-height:1.6;
  margin:0;
}

/* Split grid */
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem;
  align-items:center;
}
@media (max-width:880px){.split-grid{grid-template-columns:1fr;gap:1.5rem}}
.split-content h2{font-size:clamp(1.3rem,2.4vw,1.7rem);margin:0 0 .8rem}
.split-content p{font-size:14px;color:var(--text-soft);line-height:1.7;margin-bottom:.8rem}
.split-visual img{
  width:100%;
  height:auto;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  border:1px solid var(--border);
}

.check-list{display:flex;flex-direction:column;gap:.55rem;margin:1rem 0}
.check-list li{
  position:relative;
  padding-left:1.5rem;
  color:var(--text-soft);
  font-size:13.5px;
  line-height:1.55;
}
.check-list li::before{
  content:"";
  position:absolute;
  left:0;top:.15rem;
  width:1rem;height:1rem;
  background:var(--primary);
  border-radius:50%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M6.4 11.4 2.8 7.8l1.4-1.4 2.2 2.2L11.6 4l1.4 1.4z'/%3E%3C/svg%3E");
  background-size:80%;
  background-position:center;
  background-repeat:no-repeat;
}

/* Steps */
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}
.step-card{
  padding:1.5rem 1.25rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  position:relative;
  transition:all .25s ease;
}
.step-card:hover{border-color:var(--primary-light);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.step-num{
  display:inline-flex;
  align-items:center;justify-content:center;
  width:32px;height:32px;
  background:var(--accent);
  color:var(--text);
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  margin-bottom:.7rem;
}
.step-card h3{font-size:14.5px;font-weight:600;margin:0 0 .4rem}
.step-card p{font-size:13px;color:var(--text-soft);line-height:1.6;margin:0}

/* Testimonials */
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem}
.testimonial-card{
  padding:1.4rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  transition:all .25s ease;
}
.testimonial-card:hover{border-color:var(--primary-light);box-shadow:var(--shadow-md)}
.t-stars{color:#F4B400;font-size:14px;letter-spacing:.1em;margin-bottom:.6rem}
.testimonial-card p{font-size:13.5px;color:var(--text-soft);font-style:italic;line-height:1.65;margin-bottom:1rem}
.t-author strong{display:block;font-size:13px;color:var(--text);font-weight:600}
.t-author span{display:block;font-size:11.5px;color:var(--text-mute)}

/* =========================================================================
   9. FAQ
   ========================================================================= */
.faq-wrap{max-width:800px;margin:0 auto}
.faq-list{display:flex;flex-direction:column;gap:.55rem}
.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all .2s ease;
}
.faq-item:hover,.faq-item.active{border-color:var(--primary-light)}
.faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:.9rem 1.1rem;
  background:transparent;
  color:var(--text);
  font-size:13.5px;
  font-weight:500;
  text-align:left;
  cursor:pointer;
  gap:.8rem;
}
.faq-icon{
  font-size:18px;
  color:var(--primary);
  font-weight:300;
  transition:transform .3s ease;
  flex-shrink:0;
  line-height:1;
}
.faq-item.active .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;padding:0 1.1rem}
.faq-item.active .faq-a{max-height:500px;padding:0 1.1rem .95rem}
.faq-a p{font-size:13px;color:var(--text-soft);line-height:1.65;margin:0}
.faq-a a{color:var(--primary)}

/* =========================================================================
   10. PRICING
   ========================================================================= */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:.85rem;
  align-items:stretch;
}
.pricing-grid-6{grid-template-columns:repeat(6, 1fr)}
.pricing-grid-4{grid-template-columns:repeat(4, 1fr)}
@media (max-width:1280px){
  .pricing-grid-6{grid-template-columns:repeat(3, 1fr)}
}
@media (max-width:1100px){
  .pricing-grid{grid-template-columns:repeat(2, 1fr)}
  .pricing-grid-4{grid-template-columns:repeat(2, 1fr)}
  .pricing-grid-6{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width:560px){
  .pricing-grid,.pricing-grid-4,.pricing-grid-6{grid-template-columns:1fr}
}
/* Renewal card tag - small label above the plan title */
.card-tag{
  display:inline-block;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--primary-dark);
  background:var(--primary-soft);
  padding:.2rem .55rem;
  border-radius:99px;
  margin-bottom:.55rem;
  align-self:flex-start;
}
.pricing-card{
  padding:1.4rem 1.1rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  transition:all .25s ease;
  position:relative;
  display:flex;
  flex-direction:column;
}
.pricing-card:hover{border-color:var(--primary-light);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.pricing-card-featured{
  background:linear-gradient(180deg, var(--primary-pale) 0%, #fff 100%);
  border-color:var(--primary);
  box-shadow:var(--shadow-md);
}
.pop-badge{
  position:absolute;
  top:-9px;left:50%;
  transform:translateX(-50%);
  background:var(--accent);
  color:var(--text);
  font-size:10.5px;
  font-weight:700;
  padding:.25rem .7rem;
  border-radius:99px;
  text-transform:uppercase;
  letter-spacing:.06em;
  white-space:nowrap;
  box-shadow:var(--shadow-sm);
}
.pricing-card h3{
  font-size:14px;
  font-weight:600;
  color:var(--primary);
  margin:0 0 .55rem;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.price{margin-bottom:1rem;display:flex;align-items:baseline;gap:.25rem}
.price-amount{font-size:1.8rem;font-weight:700;color:var(--text);line-height:1}
.price-period{color:var(--text-mute);font-size:12px}
.price-features{margin:0 0 1rem;flex:1;display:flex;flex-direction:column;gap:.4rem}
.price-features li{
  position:relative;
  padding:.05rem 0 .05rem 1.1rem;
  font-size:12.5px;
  color:var(--text-soft);
  line-height:1.45;
}
.price-features li::before{
  content:"";
  position:absolute;
  left:0;top:.4rem;
  width:.6rem;height:.6rem;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A90E2'%3E%3Cpath d='M6.4 11.4 2.8 7.8l1.4-1.4 2.2 2.2L11.6 4l1.4 1.4z'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* Device counter inside pricing card */
.device-counter{
  margin:.55rem 0 .85rem;
  padding:.55rem .7rem;
  background:var(--primary-pale);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
}
.device-counter-label{font-size:11.5px;color:var(--text-soft);line-height:1.3}
.device-counter-label small{display:block;color:var(--text-mute);font-size:10.5px}
.device-controls{display:inline-flex;align-items:center;gap:.3rem}
.dc-btn{
  width:24px;height:24px;
  border-radius:6px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--primary);
  font-weight:600;
  font-size:14px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:all .15s ease;
  padding:0;
  line-height:1;
}
.dc-btn:hover{border-color:var(--primary);background:var(--primary);color:#fff}
.dc-btn:disabled{opacity:.4;cursor:not-allowed}
.dc-btn:disabled:hover{background:#fff;color:var(--primary);border-color:var(--border)}
.dc-value{
  font-size:13px;
  font-weight:600;
  color:var(--text);
  min-width:18px;
  text-align:center;
}

/* =========================================================================
   11. FOOTER
   ========================================================================= */
.site-footer{
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-top:1px solid var(--border);
  padding:3rem 0 1.5rem;
  margin-top:3rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:1.75rem;
  margin-bottom:2rem;
}
@media (max-width:880px){.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr}}
.footer-about p{font-size:12.5px;color:var(--text-soft);margin:.7rem 0;line-height:1.6;max-width:300px}
.footer-contact a{color:var(--primary);font-size:13px;font-weight:500}
.footer-col h4{
  font-size:12px;
  font-weight:600;
  color:var(--text);
  margin:0 0 .85rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.footer-col ul{display:flex;flex-direction:column;gap:.45rem}
.footer-col a{color:var(--text-soft);font-size:12.5px;transition:color .2s ease}
.footer-col a:hover{color:var(--primary)}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:1.25rem;
  border-top:1px solid var(--border-soft);
  flex-wrap:wrap;
  gap:.85rem;
}
.footer-bottom p{font-size:12px;color:var(--text-mute);margin:0}
.footer-policies{display:flex;gap:1rem;flex-wrap:wrap}
.footer-policies a{font-size:12px;color:var(--text-mute);transition:color .2s ease}
.footer-policies a:hover{color:var(--primary)}

/* =========================================================================
   12. CTA BANNER
   ========================================================================= */
.cta-banner{
  padding:3rem 0;
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-top:1px solid rgba(226,238,251,.6);
  border-bottom:1px solid rgba(226,238,251,.6);
}
.cta-inner{max-width:680px;margin:0 auto;text-align:center}
.cta-inner h2{font-size:clamp(1.3rem, 2.5vw, 1.7rem);margin:0 0 .6rem}
.cta-inner p{font-size:14px;color:var(--text-soft);margin:0 0 1.25rem}
.cta-actions{display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap}

/* =========================================================================
   13. ORDER PAGE
   ========================================================================= */
.order-steps{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  justify-content:center;
  margin:0 0 2rem;
}
.order-steps li{
  display:flex;
  align-items:center;
  gap:.45rem;
  color:var(--text-mute);
  font-size:12.5px;
  font-weight:500;
}
.order-steps li.active{color:var(--text)}
.os-num{
  width:24px;height:24px;
  border-radius:50%;
  background:var(--bg-section);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  font-size:11.5px;
}
.order-steps li.active .os-num{background:var(--primary);color:#fff;border-color:var(--primary)}

.order-grid,.payment-grid{display:grid;grid-template-columns:1.65fr 1fr;gap:1.5rem;align-items:start}
@media (max-width:880px){.order-grid,.payment-grid{grid-template-columns:1fr}}

.content-block{
  padding:1.5rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  margin-bottom:1rem;
}
.content-block h2{font-size:1.1rem;font-weight:600;margin:0 0 .8rem}
.content-block h3{font-size:14px;font-weight:600;margin:1rem 0 .5rem}
.content-block p{font-size:13.5px;color:var(--text-soft);line-height:1.7}

.order-summary{
  padding:1.4rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  margin-bottom:1rem;
}
.order-summary-sticky{position:sticky;top:80px}
.order-summary h3{
  font-size:13px;
  font-weight:600;
  margin:0 0 1rem;
  padding-bottom:.65rem;
  border-bottom:1px solid var(--border-soft);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.os-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:.5rem 0;
  border-bottom:1px solid var(--border-soft);
  font-size:13px;
  gap:.5rem;
}
.os-row:last-of-type{border-bottom:0}
.os-row span{color:var(--text-mute);font-size:12px}
.os-row strong{color:var(--text);text-align:right;font-weight:500;word-break:break-word}
.os-total{
  margin-top:.5rem;
  padding-top:.85rem;
  border-top:1px solid var(--border);
  border-bottom:0!important;
}
.os-total span{font-weight:600;color:var(--text);font-size:13px}
.os-total strong{color:var(--primary);font-weight:700;font-size:1.1rem}
.os-note{
  font-size:11.5px;
  color:var(--text-mute);
  text-align:center;
  margin:.85rem 0 0;
  line-height:1.5;
}
.os-note::before{
  content:"";
  display:inline-block;
  width:11px;height:11px;
  margin-right:.3rem;
  vertical-align:-1px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237C8AA0'%3E%3Cpath d='M8 1a3 3 0 0 0-3 3v3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-1V4a3 3 0 0 0-3-3zm-1 6V4a1 1 0 1 1 2 0v3z'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* Plan selector (radio cards) */
.plan-selector{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:.5rem}
.plan-option{cursor:pointer;display:block}
.plan-option input{position:absolute;opacity:0;pointer-events:none}
.plan-option-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:.85rem .5rem;
  background:#fff;
  border:2px solid var(--border);
  border-radius:var(--radius);
  text-align:center;
  transition:all .2s ease;
  height:100%;
}
.plan-option-inner strong{font-size:13px;font-weight:600;margin-bottom:.2rem;color:var(--text)}
.po-duration{font-size:11px;color:var(--text-mute);margin-bottom:.4rem}
.po-price{font-size:1.05rem;color:var(--primary);font-weight:700}
.plan-option:hover .plan-option-inner{border-color:var(--primary-light);transform:translateY(-1px)}
.plan-option input:checked + .plan-option-inner{
  border-color:var(--primary);
  background:var(--primary-pale);
  box-shadow:0 0 0 3px rgba(74,144,226,.12);
}

.order-trust{
  padding:1rem 1.25rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  margin-top:1rem;
}
.order-trust ul{display:flex;flex-direction:column;gap:.4rem}
.order-trust li{
  font-size:12px;
  color:var(--text-soft);
  position:relative;
  padding-left:1.1rem;
  line-height:1.5;
}
.order-trust li::before{
  content:"";
  position:absolute;
  left:0;top:.2rem;
  width:.85rem;height:.85rem;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2343A047'%3E%3Cpath d='M6.4 11.4 2.8 7.8l1.4-1.4 2.2 2.2L11.6 4l1.4 1.4z'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* =========================================================================
   14. PAYMENT PAGE - Direct BTC, QR, rotating addresses
   ========================================================================= */
.btc-payment-box{
  padding:1.5rem;
  background:linear-gradient(180deg, var(--primary-pale) 0%, #fff 100%);
  border:1px solid var(--primary-light);
  border-radius:var(--radius-lg);
  margin-bottom:1rem;
}
.btc-payment-box h2{font-size:1.05rem;font-weight:600;margin:0 0 .35rem}
.btc-payment-box .lead{font-size:13px;color:var(--text-soft);margin:0 0 1rem;line-height:1.6}

.btc-info-grid{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:1.25rem;
  align-items:start;
  margin-bottom:1rem;
}
@media (max-width:560px){.btc-info-grid{grid-template-columns:1fr;justify-items:center;text-align:center}}
.btc-qr{
  width:160px;height:160px;
  padding:.6rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center;
}
.btc-qr img{width:100%;height:auto;display:block}
.btc-details{display:flex;flex-direction:column;gap:.85rem;min-width:0}
.btc-detail{display:flex;flex-direction:column;gap:.25rem;min-width:0}
.btc-detail-label{
  font-size:11px;
  color:var(--text-mute);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:600;
}
.btc-amount-value{
  font-size:1.1rem;
  font-weight:700;
  color:var(--primary);
  font-variant-numeric:tabular-nums;
  word-break:break-all;
  line-height:1.2;
}
.btc-usd-value{
  font-size:13px;
  color:var(--text-soft);
  font-weight:500;
}
.btc-address-wrap{
  display:flex;
  align-items:stretch;
  gap:.4rem;
  padding:.4rem .55rem .4rem .7rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  min-width:0;
}
.btc-address-value{
  flex:1;
  font-family:'Roboto Mono', 'Courier New', monospace;
  font-size:11.5px;
  color:var(--text);
  overflow-wrap:anywhere;
  word-break:break-all;
  line-height:1.4;
  padding:.2rem 0;
  min-width:0;
}
.copy-btn{
  flex-shrink:0;
  padding:.4rem .65rem;
  font-size:11.5px;
  background:var(--primary);
  color:#fff;
  border-radius:var(--radius-sm);
  border:none;
  cursor:pointer;
  font-weight:500;
  transition:all .15s ease;
  align-self:center;
}
.copy-btn:hover{background:var(--primary-dark)}
.copy-btn.copied{background:var(--success)}

.btc-status-bar{
  display:flex;
  align-items:center;
  gap:.4rem;
  padding:.5rem .75rem;
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:var(--radius-sm);
  font-size:11.5px;
  color:var(--text-mute);
  margin-top:.7rem;
}
.btc-dot{
  display:inline-block;
  width:7px;height:7px;
  background:var(--success);
  border-radius:50%;
  animation:pulse 1.5s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.55;transform:scale(.85)}}

.payment-notice{
  padding:.85rem 1rem;
  background:var(--accent-soft);
  border:1px solid var(--accent);
  border-radius:var(--radius);
  font-size:12.5px;
  color:var(--text-soft);
  line-height:1.6;
  margin-top:.85rem;
}
.payment-notice strong{color:var(--text)}

.payment-instructions ol{padding-left:1.25rem;margin:.5rem 0 0;color:var(--text-soft);font-size:13px}
.payment-instructions li{padding:.2rem 0;line-height:1.65}
.payment-instructions a{color:var(--primary)}

.support-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:.75rem;margin-top:.75rem}
.support-card{
  padding:1.1rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:all .2s ease;
}
.support-card:hover{border-color:var(--primary-light);box-shadow:var(--shadow-sm)}
.support-card h3{font-size:13px;font-weight:600;margin:0 0 .35rem;color:var(--text)}
.support-card p{font-size:12px;color:var(--text-mute);margin:0 0 .65rem;line-height:1.5}
.support-card ol{padding-left:1.1rem;font-size:12px;color:var(--text-soft);margin:0}
.support-card ol li{padding:.15rem 0;line-height:1.5}

.chat-notice{
  margin-top:1.25rem;
  padding:1rem 1.2rem;
  background:#fff;
  border:1px solid var(--primary-light);
  border-left:3px solid var(--primary);
  border-radius:var(--radius);
  font-size:13px;
  color:var(--text-soft);
  line-height:1.6;
}
.chat-notice strong{color:var(--text);font-weight:600}

/* =========================================================================
   15. INSTRUCTIONS PAGE
   ========================================================================= */
.device-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:.35rem;
  margin-bottom:1.5rem;
  padding:.4rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}
.device-tab{
  padding:.5rem .9rem;
  background:transparent;
  border:none;
  border-radius:var(--radius-sm);
  color:var(--text-mute);
  font-family:inherit;
  font-size:12.5px;
  font-weight:500;
  cursor:pointer;
  transition:all .2s ease;
  white-space:nowrap;
}
.device-tab:hover{background:var(--primary-pale);color:var(--primary)}
.device-tab.active{background:var(--primary);color:#fff}
.device-panel{display:none}
.device-panel.active{display:block}

.guide-card{
  padding:1.75rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}
.guide-card h2{font-size:1.2rem;font-weight:600;margin:0 0 .7rem}
.guide-card>p{font-size:13.5px;color:var(--text-soft);line-height:1.7;margin:0 0 1.25rem}
.guide-card .device-img{
  width:100%;
  max-width:300px;
  height:auto;
  margin:0 auto 1.5rem;
  display:block;
  border-radius:var(--radius);
}
.guide-steps{counter-reset:guide-step;display:flex;flex-direction:column;gap:.6rem}
.guide-step{
  position:relative;
  padding:1rem 1rem 1rem 3.25rem;
  background:var(--bg-soft);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  counter-increment:guide-step;
}
.guide-step::before{
  content:counter(guide-step);
  position:absolute;
  top:1rem;left:1rem;
  width:1.65rem;height:1.65rem;
  background:var(--primary);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  font-size:12px;
}
.guide-step h3{font-size:13.5px;font-weight:600;margin:0 0 .25rem}
.guide-step p{font-size:12.5px;color:var(--text-soft);line-height:1.6;margin:0}
.guide-step a{color:var(--primary)}
.guide-step strong{color:var(--text)}

/* Guide header with device logo */
.guide-header{
  display:flex;
  align-items:center;
  gap:1.25rem;
  margin-bottom:1.25rem;
  padding-bottom:1.1rem;
  border-bottom:1px solid var(--border-soft);
}
.guide-header h2{margin:0 0 .35rem !important;font-size:1.15rem !important}
.guide-header p{margin:0 !important;font-size:13px !important;color:var(--text-soft) !important;line-height:1.55 !important}
.guide-logo{
  width:auto !important;
  height:48px !important;
  max-width:180px !important;
  object-fit:contain !important;
  flex-shrink:0;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
}
@media (max-width:560px){
  .guide-header{flex-direction:column;align-items:flex-start;gap:.85rem}
  .guide-logo{height:40px !important}
}

/* Download box - shown for Firestick / Android / Windows */
.download-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.85rem;
  padding:.85rem 1.1rem;
  background:linear-gradient(135deg, var(--primary-pale) 0%, #fff 100%);
  border:1px solid var(--primary-light);
  border-radius:var(--radius);
  margin-bottom:.7rem;
}
.download-info{display:flex;flex-direction:column;gap:.15rem;min-width:0;flex:1}
.download-label{
  font-size:10.5px;
  color:var(--text-mute);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:600;
}
.download-code{
  font-family:'Roboto Mono', 'Courier New', monospace;
  font-size:1.2rem;
  font-weight:700;
  color:var(--primary-dark);
  letter-spacing:.06em;
}
.download-link{
  font-family:'Roboto Mono', 'Courier New', monospace;
  font-size:13px;
  color:var(--primary);
  font-weight:500;
  word-break:break-all;
  text-decoration:none;
}
.download-link:hover{text-decoration:underline}
.download-box .copy-btn{flex-shrink:0;padding:.45rem .75rem;font-size:12px}
.download-box .btn-sm{flex-shrink:0;padding:.45rem .9rem;font-size:12px}
@media (max-width:560px){
  .download-box{flex-direction:column;align-items:flex-start;gap:.7rem}
  .download-box .copy-btn,.download-box .btn-sm{align-self:stretch;text-align:center;justify-content:center}
}

.firestick-notice{
  padding:1rem 1.2rem;
  background:var(--accent-soft);
  border:1px solid var(--accent);
  border-radius:var(--radius);
  font-size:13px;
  color:var(--text-soft);
  margin-bottom:1.25rem;
  line-height:1.6;
}
.firestick-notice strong{color:var(--text);font-weight:600}

/* =========================================================================
   16. APP / COMPATIBILITY GRIDS
   ========================================================================= */
.compat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:.75rem}
.compat-grid-4{grid-template-columns:repeat(4,1fr)}
@media (max-width:880px){.compat-grid-4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:420px){.compat-grid-4{grid-template-columns:1fr}}
.compat-card{
  padding:1.6rem 1rem 1.4rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  text-align:center;
  transition:all .2s ease;
}
.compat-card:hover{border-color:var(--primary-light);transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.compat-card img{width:64px;height:64px;margin:0 auto .65rem;object-fit:contain}
/* Logo-style images: keep transparent, no frame, no shadow */
.compat-logo{
  width:auto !important;
  height:42px !important;
  max-width:160px !important;
  margin:0 auto .9rem !important;
  object-fit:contain !important;
  display:block !important;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  filter:none !important;
}
.compat-icon{
  width:64px;
  height:64px;
  margin:0 auto .65rem;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-pale);
  color:var(--primary);
  border-radius:14px;
}
.compat-icon svg{width:32px;height:32px;fill:var(--primary)}
.compat-card h4{font-size:13px;font-weight:600;margin:0 0 .15rem}
.compat-card p{font-size:11.5px;color:var(--text-mute);margin:0;line-height:1.4}

/* =========================================================================
   17. CHANNELS LOGOS / TRUST BAR
   ========================================================================= */
.channels-bar{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2.5rem;
  padding:1.25rem 0;
  flex-wrap:wrap;
  filter:grayscale(.2);
  opacity:.85;
}
.channels-bar img{
  max-height:32px;
  max-width:120px;
  width:auto;
  height:auto;
  object-fit:contain;
  transition:all .25s ease;
}
.channels-bar img:hover{filter:none;opacity:1}

/* Leagues grid - circular logo badges */
.leagues-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
  gap:1rem;
  align-items:center;
  justify-items:center;
  max-width:980px;
  margin:0 auto;
}
.league-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
  text-align:center;
  transition:transform .25s ease;
  width:100%;
}
.league-card:hover{transform:translateY(-3px)}
.league-logo{
  width:74px;
  height:74px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--border);
  padding:6px;
  box-shadow:var(--shadow-sm);
  transition:all .25s ease;
  object-fit:contain;
  display:block;
}
.league-card:hover .league-logo{box-shadow:var(--shadow-md);border-color:var(--primary-light)}
.league-card span{
  font-size:11.5px;
  color:var(--text-soft);
  font-weight:500;
}
@media (max-width:560px){
  .leagues-grid{grid-template-columns:repeat(4,1fr);gap:.75rem}
  .league-logo{width:58px;height:58px;padding:4px}
  .league-card span{font-size:10.5px}
}

/* Sport posters - vertical poster cards (16:9 portrait) */
.posters-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(165px,1fr));
  gap:1rem;
}
.poster-card{
  position:relative;
  aspect-ratio:2/3;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:all .3s ease;
  background:var(--primary-pale);
}
.poster-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
  display:block;
}
.poster-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--primary-light)}
.poster-card:hover img{transform:scale(1.05)}
.poster-card-label{
  position:absolute;
  inset:auto 0 0 0;
  padding:.6rem .75rem;
  background:linear-gradient(180deg,transparent 0%,rgba(36,49,68,.85) 70%,rgba(36,49,68,.95) 100%);
  color:#fff;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.05em;
  text-align:left;
}

/* Country flags strip */
.country-strip{
  text-align:center;
  margin-top:1.5rem;
}
.country-strip img{
  max-width:280px;
  width:100%;
  height:auto;
  margin:0 auto;
  display:block;
}
.country-strip-label{
  font-size:11.5px;
  color:var(--text-mute);
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-top:.6rem;
}

/* =========================================================================
   18. FORMS
   ========================================================================= */
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
@media (max-width:560px){.form-row{grid-template-columns:1fr}}
.form-group{margin-bottom:.85rem}
.form-group label{
  display:block;
  font-size:12px;
  font-weight:500;
  color:var(--text);
  margin-bottom:.3rem;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:.6rem .85rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  color:var(--text);
  font-family:inherit;
  font-size:13px;
  transition:all .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(74,144,226,.12);
}
.form-group textarea{min-height:110px;resize:vertical}
.form-hint{display:block;color:var(--text-mute);font-size:11px;margin-top:.3rem}

/* =========================================================================
   19. BLOG
   ========================================================================= */
.blog-layout{display:grid;grid-template-columns:1fr 260px;gap:2rem;align-items:start}
@media (max-width:880px){.blog-layout{grid-template-columns:1fr}}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.25rem}
.blog-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:all .25s ease;
  display:flex;
  flex-direction:column;
}
.blog-card:hover{border-color:var(--primary-light);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.blog-card-img{display:block;aspect-ratio:16/9;overflow:hidden;background:var(--primary-pale)}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.blog-card:hover .blog-card-img img{transform:scale(1.04)}
.blog-card-img-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--primary-pale), var(--accent-soft));
  color:var(--primary);
  font-weight:700;
  font-size:1.2rem;
  letter-spacing:.05em;
}
.blog-card-body{padding:1.1rem;display:flex;flex-direction:column;flex:1}
.blog-card-meta{font-size:11px;color:var(--text-mute);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.45rem;font-weight:500}
.blog-card-title{font-size:14.5px;font-weight:600;line-height:1.3;margin:0 0 .55rem}
.blog-card-title a{color:var(--text);transition:color .2s ease}
.blog-card-title a:hover{color:var(--primary)}
.blog-card-excerpt{font-size:12.5px;color:var(--text-soft);line-height:1.6;margin:0 0 .85rem;flex:1}
.blog-card-link{color:var(--primary);font-size:12px;font-weight:500;align-self:flex-start}

.sidebar-widget{
  padding:1.2rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  margin-bottom:1rem;
}
.sidebar-widget h3{
  font-size:12px;
  font-weight:600;
  margin:0 0 .85rem;
  padding-bottom:.65rem;
  border-bottom:1px solid var(--border-soft);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.sidebar-widget p{font-size:12.5px;color:var(--text-soft);margin:0 0 .85rem;line-height:1.6}
.sidebar-list{display:flex;flex-direction:column;gap:.4rem}
.sidebar-list li{
  padding:.45rem 0;
  border-bottom:1px solid var(--border-soft);
  font-size:12.5px;
}
.sidebar-list li:last-child{border-bottom:none}
.sidebar-list a{color:var(--text-soft);transition:color .2s ease}
.sidebar-list a:hover{color:var(--primary)}

.pagination-wrap{margin-top:2rem;text-align:center}
.pagination-wrap .nav-links{display:flex;justify-content:center;gap:.4rem;flex-wrap:wrap}
.pagination-wrap .page-numbers{
  display:inline-flex;
  align-items:center;justify-content:center;
  min-width:34px;height:34px;
  padding:0 .65rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  color:var(--text);
  font-size:12.5px;
  font-weight:500;
  transition:all .2s ease;
}
.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current{background:var(--primary);color:#fff;border-color:var(--primary)}

/* Single post */
.page-header-post{padding:5rem 0 2rem}
.post-meta{font-size:12px;color:var(--text-mute);margin-top:.5rem}
.post-content{padding:1.75rem}
.post-thumb{margin:-1.75rem -1.75rem 1.5rem;border-radius:var(--radius-lg) var(--radius-lg) 0 0;overflow:hidden}
.post-thumb img{width:100%}
.post-body h2{font-size:1.25rem;margin:1.75rem 0 .65rem}
.post-body h3{font-size:1.05rem;margin:1.25rem 0 .55rem}
.post-body p{font-size:13.5px;line-height:1.75;margin-bottom:.95rem;color:var(--text-soft)}
.post-body ul,.post-body ol{margin:0 0 1rem 1.25rem;color:var(--text-soft)}
.post-body ul li,.post-body ol li{margin-bottom:.4rem;line-height:1.7;font-size:13.5px;list-style:disc}
.post-body ol li{list-style:decimal}
.post-body strong{color:var(--text);font-weight:600}
.post-body a{color:var(--primary);text-decoration:underline;text-decoration-color:rgba(74,144,226,.3)}
.post-body a:hover{text-decoration-color:var(--primary)}
.post-body blockquote{
  border-left:3px solid var(--primary);
  padding:.4rem 0 .4rem 1rem;
  margin:1.25rem 0;
  color:var(--text);
  font-style:italic;
  background:var(--primary-pale);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}

.post-cta{
  margin-top:2rem;
  padding:1.5rem;
  background:linear-gradient(135deg, var(--primary-pale) 0%, var(--accent-soft) 100%);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  text-align:center;
}
.post-cta h3{font-size:1.05rem;margin-bottom:.4rem}
.post-cta p{font-size:13px;color:var(--text-soft);margin-bottom:1rem}

.post-nav{display:grid;grid-template-columns:1fr 1fr;gap:.85rem;margin:1.75rem 0}
@media (max-width:560px){.post-nav{grid-template-columns:1fr}}
.post-nav-link{
  display:block;
  padding:1rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:all .2s ease;
}
.post-nav-link:hover{border-color:var(--primary-light);transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.post-nav-link span{display:block;font-size:11px;color:var(--text-mute);margin-bottom:.2rem;text-transform:uppercase;letter-spacing:.06em;font-weight:600}
.post-nav-link strong{display:block;font-size:13px;color:var(--text);font-weight:500;line-height:1.4}
.post-nav-next{text-align:right}

/* =========================================================================
   20. MISC - Stats, contact, error 404, legal
   ========================================================================= */
.contact-info-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}
.contact-card{
  padding:1.5rem 1.2rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  text-align:center;
  transition:all .25s ease;
}
.contact-card:hover{border-color:var(--primary-light);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.contact-icon{
  width:40px;height:40px;
  background:var(--primary-pale);
  color:var(--primary);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto .85rem;
}
.contact-icon svg{width:20px;height:20px}
.contact-card h3{font-size:14px;font-weight:600;margin:0 0 .4rem}
.contact-card p{font-size:12.5px;color:var(--text-mute);margin:0 0 .9rem;min-height:2.4em}

.stats-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.75rem;
  padding:1.5rem;
  background:linear-gradient(135deg, var(--primary-pale) 0%, var(--accent-soft) 100%);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}
.stats-card .stat{
  padding:.85rem;
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  text-align:center;
}
.stats-card .stat strong{
  display:block;
  font-size:1.55rem;
  color:var(--primary);
  font-weight:700;
  line-height:1;
  margin-bottom:.2rem;
}
.stats-card .stat span{font-size:11.5px;color:var(--text-mute)}

.error-page{padding:5rem 0;text-align:center;background:linear-gradient(180deg, var(--primary-pale) 0%, var(--bg-soft) 100%)}
.error-inner{max-width:580px;margin:0 auto}
.error-code{font-size:5.5rem;font-weight:800;color:var(--primary);line-height:1;margin-bottom:.5rem}
.error-page h1{font-size:1.65rem;margin-bottom:.65rem}
.error-page p{font-size:14px;color:var(--text-soft);margin-bottom:1.25rem}
.error-quick-links{margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--border-soft)}
.error-quick-links h3{font-size:11.5px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:var(--text-mute);margin-bottom:.65rem}
.error-quick-links ul{display:flex;flex-wrap:wrap;justify-content:center;gap:.4rem}
.error-quick-links li a{
  display:inline-block;
  padding:.35rem .8rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:99px;
  color:var(--text-soft);
  font-size:12px;
  transition:all .2s ease;
}
.error-quick-links li a:hover{border-color:var(--primary);color:var(--primary);background:var(--primary-pale)}

.legal-content h2{font-size:1.2rem;color:var(--text);margin:1.75rem 0 .65rem}
.legal-content h2:first-child{margin-top:0}
.legal-content p,.legal-content ul,.legal-content ol{font-size:13.5px;color:var(--text-soft);line-height:1.75;margin-bottom:.85rem}
.legal-content ul,.legal-content ol{padding-left:1.25rem}
.legal-content ul li{list-style:disc;margin-bottom:.35rem}
.legal-content ol li{list-style:decimal;margin-bottom:.35rem}
.legal-content a{color:var(--primary);text-decoration:underline}

/* =========================================================================
   21. ANIMATIONS
   ========================================================================= */
.fade-up{opacity:0;transform:translateY(15px);transition:opacity .55s ease, transform .55s ease}
.fade-up.is-visible{opacity:1;transform:translateY(0)}

/* =========================================================================
   22. RESPONSIVE
   ========================================================================= */
@media (max-width:880px){
  .section{padding:2.5rem 0}
  .footer-bottom{flex-direction:column;text-align:center}
  .page-header{padding:3.5rem 0 1.75rem}
  .page-header h1{font-size:1.5rem}
  /* Tighter container padding on small screens but never edge-touching */
  .container{padding-left:1rem;padding-right:1rem;padding-left:max(1rem, env(safe-area-inset-left, 1rem));padding-right:max(1rem, env(safe-area-inset-right, 1rem))}
  .header-inner{gap:.75rem}
  .brand img{height:42px}
  .mobile-toggle{margin-left:auto}
}
@media (max-width:560px){
  body{font-size:13.5px}
  .hero-title{font-size:1.6rem}
  .hero{padding:3.5rem 0 2.25rem}
  .device-tabs{padding:.3rem;gap:.2rem}
  .device-tab{padding:.4rem .65rem;font-size:11.5px}
  .guide-card{padding:1.25rem}
  .post-content{padding:1.25rem}
  .btc-payment-box{padding:1.25rem}
  .btc-qr{width:140px;height:140px}
  .channels-bar{gap:1.5rem}
  .channels-bar img{max-height:26px}
  /* Slightly tighter on tiny screens but still visible margins */
  .container{padding-left:.85rem;padding-right:.85rem;padding-left:max(.85rem, env(safe-area-inset-left, .85rem));padding-right:max(.85rem, env(safe-area-inset-right, .85rem))}
  .brand img{height:38px}
}
