/* ==========================================================================
   ZynaroTV — Deep Midnight Slate & Warm Amber/Violet Design System
   (Tight, Ultra-Sleek Spacing & 100% Responsive Review Engine Architecture)
   ========================================================================== */

:root {
  --bg-dark: #0b0f19;
  --bg-card: rgba(15, 23, 42, 0.85);
  --border-color: rgba(255, 255, 255, 0.09);
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --amber: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.35);
  --amber-dark: #d97706;
  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.3);
  --cyan: #06b6d4;
  --emerald: #10b981;
  --red: #ef4444;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.svg-icon {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 800; color: #fff; word-break: break-word; }

.brand-logo-img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 9px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.3);
  vertical-align: middle;
  flex-shrink: 0;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; outline: none; background: none; }
img, video { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, #fff, #cbd5e1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-amber { background: linear-gradient(135deg, #f59e0b, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-amber { color: var(--amber); }
.text-purple { color: var(--purple); }
.text-cyan { color: var(--cyan); }
.text-emerald { color: var(--emerald); }
.text-red { color: var(--red); }

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

/* Breadcrumb Trail Navigation */
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}
.breadcrumb-nav a {
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb-nav a:hover {
  color: var(--amber);
}
.breadcrumb-separator {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 800;
}
.breadcrumb-current {
  color: var(--amber);
  font-weight: 700;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.2;
  box-sizing: border-box;
  max-width: 100%;
  word-break: break-word;
}

.btn-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 8px 25px var(--amber-glow);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245, 158, 11, 0.55); }

.btn-cta {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 8px 25px var(--amber-glow);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245, 158, 11, 0.55); }

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(139, 92, 246, 0.4); }

.btn-glass {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #fff;
}
.btn-glass:hover { background: rgba(139, 92, 246, 0.22); border-color: var(--purple); }

.btn-full { width: 100%; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }

.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-glow:hover::after { opacity: 1; }

/* Header Navbar & Dropdown Menu */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  width: 100%;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; width: 100%; position: relative; gap: 1rem; }
.brand-logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.logo-text, .brand-text { display: flex; flex-direction: column; flex-shrink: 0; line-height: 1.1; }
.brand-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; white-space: nowrap; color: #ffffff; }
.brand-name .highlight { color: var(--amber); }
.brand-tag, .brand-tagline { font-size: 0.6rem; font-weight: 800; color: var(--amber); letter-spacing: 1.5px; white-space: nowrap; opacity: 0.9; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 0.95rem; flex-wrap: nowrap; }
.nav-item, .nav-link { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); display: inline-flex; align-items: center; gap: 0.3rem; white-space: nowrap; }
.nav-item:hover, .nav-item.active { color: #fff; }

/* HEADER DROPDOWN MENU */
.nav-dropdown-item { position: relative; display: inline-block; }
.nav-dropdown-toggle { background: none; border: none; cursor: pointer; color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.92rem; font-weight: 600; }
.dropdown-arrow { font-size: 0.72rem; transition: transform 0.3s ease; }
.nav-dropdown-item:hover .dropdown-arrow { transform: rotate(180deg); color: var(--amber); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.4rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 105;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
/* DESKTOP HOVER-ONLY DROPDOWN & ACTIVE HIGHLIGHTING (>=1025px) */
@media (min-width: 1025px) {
  .nav-dropdown-menu {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(8px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease !important;
  }

  .nav-dropdown-item:hover > .nav-dropdown-menu,
  .nav-dropdown-item:focus-within > .nav-dropdown-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
    display: flex !important;
  }

  .nav-dropdown-item:hover .dropdown-arrow,
  .nav-dropdown-item:focus-within .dropdown-arrow {
    transform: rotate(180deg) !important;
    color: var(--amber) !important;
  }

  .nav-dropdown-item.active > .nav-link,
  .nav-dropdown-item.active > .nav-dropdown-toggle {
    color: var(--amber) !important;
    font-weight: 700 !important;
  }
}

.dropdown-link {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: var(--transition);
}
.dropdown-link:hover {
  background: rgba(245, 158, 11, 0.12);
  color: #fff;
}

.nav-actions { display: flex; align-items: center; gap: 0.7rem; }
.mobile-header-cta { display: none; padding: 0.4rem 0.85rem; font-size: 0.8rem; border-radius: 50px; }
.mobile-nav-buttons { display: none; }
.mobile-toggle { display: none; color: #fff; font-size: 1.4rem; padding: 0.35rem; cursor: pointer; z-index: 1001; }

/* Hero Section */
.hero-section { position: relative; padding: 2rem 0 1.5rem; overflow: hidden; width: 100%; }
.aurora-bg {
  background:
    radial-gradient(ellipse 60% 50% at 65% 45%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.08) 40%, transparent 70%);
}
.hero-container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2rem; align-items: center; position: relative; z-index: 2; min-height: 440px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 0.82rem; font-weight: 700; color: #c084fc; margin-bottom: 1rem;
}
.badge-dot { width: 7px; height: 7px; background: #c084fc; border-radius: 50%; flex-shrink: 0; animation: badge-pulse 2s ease-in-out infinite; }
@keyframes badge-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title { font-size: 3rem; line-height: 1.12; margin-bottom: 0.85rem; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.4rem; max-width: 540px; line-height: 1.55; }
.hero-cta-group { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: nowrap; align-items: center; }

.guarantee-badges-bar { display: flex; gap: 1.2rem; flex-wrap: wrap; border-top: 1px solid var(--border-color); padding-top: 1rem; }
.guarantee-badge { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.45rem; }

/* Hero Visual Box */
.hero-visual { width: 100%; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-visual::before {
  content: ''; position: absolute; width: 80%; height: 80%; top: 10%; left: 10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
  border-radius: 50%; filter: blur(40px); z-index: -1; animation: hero-glow 4s ease-in-out infinite alternate;
}
@keyframes hero-glow { 0% { opacity: 0.6; transform: scale(0.95); } 100% { opacity: 1; transform: scale(1.05); } }
.hero-img-box {
  width: 100%; max-width: 600px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.3); box-shadow: 0 16px 50px rgba(0,0,0,0.55), 0 0 80px rgba(139, 92, 246, 0.08);
  background: transparent; transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.hero-tv-mobile-img {
  width: 100%; height: auto; display: block; object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-img-box:hover { transform: translateY(-5px) scale(1.01); border-color: var(--amber); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 100px rgba(245, 158, 11, 0.1); }

/* Metrics Section */
.metrics-section { padding: 2rem 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: rgba(0, 0, 0, 0.4); width: 100%; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.metric-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: var(--radius-md); background: rgba(255,255,255,0.02); border: 1px solid var(--border-color); width: 100%; }
.metric-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(139, 92, 246, 0.12); color: var(--purple); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.metric-info { display: flex; flex-direction: column; }
.metric-number { font-size: 1.4rem; font-weight: 800; color: #fff; font-family: 'Outfit', sans-serif; }
.metric-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

/* Section Layout System */
.section { padding: 3.2rem 0; width: 100%; }
.section-header { margin-bottom: 2.2rem; }
.section-subtitle { font-size: 0.82rem; font-weight: 800; color: var(--amber); text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 0.4rem; }
.section-title { font-size: 2.3rem; margin-bottom: 0.6rem; }
.section-desc { font-size: 0.98rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.55; }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: stretch; width: 100%; }
.pricing-card { padding: 1.8rem 1.4rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; transition: var(--transition); width: 100%; }
.pricing-card:hover { transform: translateY(-5px); border-color: rgba(139, 92, 246, 0.4); }
.popular-card { border-color: var(--amber); background: linear-gradient(180deg, rgba(245, 158, 11, 0.12) 0%, rgba(15, 23, 42, 0.85) 100%); }
.popular-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #f59e0b, #d97706); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 0.25rem 0.9rem; border-radius: 50px; white-space: nowrap; }

.card-header h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.plan-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.price-box { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 0.4rem; }
.currency { font-size: 1.3rem; font-weight: 700; color: var(--amber); }
.price { font-size: 2.8rem; font-weight: 900; line-height: 1; font-family: 'Outfit', sans-serif; }
.price-decimal { font-size: 1.5rem; font-weight: 800; }
.period { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; margin-left: 0.2rem; }
.price-sub { font-size: 0.78rem; color: var(--amber); font-weight: 700; display: block; margin-bottom: 1.4rem; }

.pricing-features { list-style: none; margin-bottom: 1.5rem; }
.pricing-features li { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.65rem; display: flex; align-items: center; gap: 0.6rem; }

/* Dynamic Blog & Guides Hub Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; width: 100%; }
.guides-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; width: 100%; }
@media (max-width: 768px) {
  .guides-hub-grid { grid-template-columns: 1fr !important; gap: 1.2rem !important; width: 100% !important; }
}

/* Custom Amber-Themed Weighted Search Bar */
.guides-search-container {
  max-width: 660px !important;
  margin: 2.2rem auto 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.guides-search-box {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.guides-search-input {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 1.15rem 3.2rem 1.15rem 3.6rem !important;
  border-radius: 50px !important;
  background: rgba(11, 15, 25, 0.85) !important;
  border: 2px solid var(--amber) !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  outline: none !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.25) !important;
  font-family: inherit !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.guides-search-input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
  font-weight: 500 !important;
}

.guides-search-input:focus {
  background: rgba(11, 15, 25, 0.95) !important;
  border-color: #fbbf24 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.45) !important;
  transform: translateY(-2px) !important;
}

.search-icon-inside {
  position: absolute !important;
  left: 1.35rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--amber) !important;
  width: 1.45rem !important;
  height: 1.45rem !important;
  pointer-events: none !important;
  z-index: 10 !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.5 !important;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5)) !important;
}

.clear-search-inside {
  position: absolute !important;
  right: 1.35rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(245, 158, 11, 0.2) !important;
  border: 1px solid var(--amber) !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  width: 1.7rem !important;
  height: 1.7rem !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  transition: all 0.25s ease !important;
}

.clear-search-inside:hover {
  background: var(--amber) !important;
  color: #000000 !important;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5) !important;
}
.blog-card { padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition); width: 100%; }
.blog-card:hover { border-color: var(--amber); transform: translateY(-4px); }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.blog-tag { font-size: 0.72rem; font-weight: 800; color: var(--amber); background: rgba(245, 158, 11, 0.12); padding: 0.2rem 0.65rem; border-radius: 50px; }
.blog-date { font-size: 0.75rem; color: var(--text-dim); }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.55; }

/* Devices Walkthrough Switcher */
.device-switcher-box { padding: 2rem 1.8rem; width: 100%; }
.device-tabs { display: flex; justify-content: center; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.8rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1.2rem; width: 100%; }
.device-tab { padding: 0.65rem 1.2rem; border-radius: var(--radius-md); background: rgba(255,255,255,0.04); border: 1px solid var(--border-color); color: var(--text-muted); font-weight: 700; transition: var(--transition); font-size: 0.88rem; }
.device-tab.active, .device-tab:hover { background: rgba(139, 92, 246, 0.2); border-color: var(--purple); color: #fff; }

.device-content-display { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.2rem; align-items: center; width: 100%; }
.device-steps { list-style: none; margin-top: 1rem; }
.device-steps li { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.step-num { width: 30px; height: 30px; border-radius: 50%; background: rgba(245, 158, 11, 0.2); color: var(--amber); font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.88rem; }
.code-box { background: rgba(0,0,0,0.6); padding: 0.85rem 1.2rem; border-radius: var(--radius-md); border: 1px solid var(--border-color); font-family: monospace; font-size: 0.88rem; color: var(--cyan); word-break: break-all; }
.device-visual .btn { display: inline-flex !important; align-items: center; gap: 0.45rem; padding: 0.65rem 1.1rem !important; font-size: 0.88rem !important; font-weight: 700 !important; border-radius: var(--radius-md); }

/* COMPETITOR-GRADE 3-COLUMN REVIEWS GRID */
.reviews-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  width: 100%;
  margin-top: 2rem;
  align-items: stretch;
}

.testimonial-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  width: 100%;
  border-radius: var(--radius-lg);
}
.testimonial-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.verified-check {
  color: var(--emerald);
  font-size: 0.75rem;
}
.author-meta {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--amber);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.testimonial-quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-style: italic;
  flex-grow: 1;
}

.review-form-card, .submitted-reviews-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.8rem;
  text-align: left;
}

.review-form-card h2, .review-form-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.form-sub-text { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.2rem; }

.rating-picker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  width: 100%;
}
.star-rating { display: flex; gap: 0.3rem; }
.star-rating .star-btn { cursor: pointer; font-size: 1.25rem; color: var(--text-dim); transition: color 0.2s, transform 0.2s; }
.star-rating .star-btn.active { color: var(--amber); }

.form-group { margin-bottom: 0.85rem; text-align: left; width: 100%; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 0.88rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--amber); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; width: 100%; box-sizing: border-box; }

/* SUBMITTED REVIEWS CARDS STREAM */
.reviews-list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.85rem; flex-wrap: wrap; gap: 0.6rem; width: 100%; }
.reviews-list-header h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 0.5rem; }
.reviews-counter { font-size: 0.78rem; font-weight: 800; color: var(--amber); background: rgba(245, 158, 11, 0.12); padding: 0.25rem 0.75rem; border-radius: 50px; }

.reviews-stream-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 420px;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-right: 0.4rem;
  -webkit-overflow-scrolling: touch;
}
.reviews-stream-container::-webkit-scrollbar { width: 5px; }
.reviews-stream-container::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); border-radius: 10px; }
.reviews-stream-container::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 10px; }
.review-item-card { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1rem; transition: var(--transition); width: 100%; box-sizing: border-box; }
.review-item-card:hover { border-color: rgba(245, 158, 11, 0.4); }
.review-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; flex-wrap: wrap; gap: 0.4rem; width: 100%; }
.review-item-user { display: flex; flex-direction: column; }
.review-item-user strong { font-size: 0.9rem; color: #fff; }
.review-item-user span { font-size: 0.72rem; color: var(--text-dim); }
.review-item-stars { display: flex; gap: 0.15rem; color: var(--amber); }
.review-item-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; font-style: italic; word-break: break-word; }

/* FAQ Accordion & Chevron SVG Icon */
.faq-accordion-wrapper { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; width: 100%; }
.faq-item { padding: 1.25rem 1.4rem; cursor: pointer; transition: var(--transition); width: 100%; }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; text-align: left; font-size: 1rem; font-weight: 700; color: #fff; gap: 0.85rem; }
.faq-icon { width: 1.25em; height: 1.25em; transition: transform 0.3s ease; color: var(--amber); flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2.5; }
.faq-answer { display: none; padding-top: 0.85rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 0.85rem; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* Minimalist Footer */
.footer { background: rgba(7, 10, 18, 0.98); border-top: 1px solid var(--border-color); padding: 0 0 1.8rem; margin-top: 2.8rem; width: 100%; }
.footer-container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; width: 100%; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); margin: 0.85rem 0 1rem; max-width: 320px; line-height: 1.55; }

.footer-col h3, .footer-col h3, .footer-col h4 { font-size: 1rem; margin-bottom: 1rem; color: #fff; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; font-size: 0.85rem; color: var(--text-muted); }
.footer-col ul li a { transition: var(--transition); }
.footer-col ul li a:hover { color: var(--amber); }

/* Next-Gen Admin Dashboard Styling */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.admin-stat-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-stat-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.admin-stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.admin-stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .admin-stats-grid { grid-template-columns: 1fr; }
}

/* Toast Notifications */
.admin-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.6rem;
  background: rgba(16, 185, 129, 0.95);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.disclaimer-box {
  font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1.5rem; padding: 1rem;
  border: 1px solid var(--border-color); border-radius: var(--radius-md); background: rgba(0,0,0,0.3);
  line-height: 1.55; width: 100%;
}

.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 1.25rem; font-size: 0.8rem; color: var(--text-dim); width: 100%; }

/* Admin Toggle Switch & Inactive Trial Controls */
.switch { position: relative; display: inline-block; width: 46px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(255,255,255,0.15); transition: .3s; border-radius: 24px; border: 1px solid var(--border-color); }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%; }
input:checked + .slider { background-color: var(--amber); border-color: var(--amber); }
input:checked + .slider:before { transform: translateX(22px); }
.trial-disabled-element { display: none !important; }

/* Modals (Soft Glassmorphic Tint & Spring Scale Transition) */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 15, 25, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; opacity: 0; pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-card {
  max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 2.2rem 2rem; position: relative; -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(245, 158, 11, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute; top: 1.1rem; right: 1.2rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-color);
  width: 32px; height: 32px; border-radius: 50%;
  color: var(--text-muted); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(239, 68, 68, 0.2); border-color: var(--red); color: #fff; }

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  z-index: 99; transition: var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.08); }
.whatsapp-tooltip {
  position: absolute; right: 52px; background: rgba(15, 23, 42, 0.95);
  padding: 0.35rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.72rem;
  white-space: nowrap; color: #fff; opacity: 0; pointer-events: none; transition: opacity 0.2s;
  border: 1px solid var(--border-color);
}
.floating-whatsapp:hover .whatsapp-tooltip { opacity: 1; }

.mobile-sticky-bar { display: none; }

/* ==========================================================================
   OPTIMIZED RESPONSIVE BREAKPOINTS (STRICT MOBILE & TABLET FLUIDITY)
   ========================================================================== */

/* Laptops & Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .nav-container { gap: 0.5rem; }
  .nav-links { gap: 0.65rem; }
  .nav-item, .nav-link { font-size: 0.82rem; }
  .btn-sm { padding: 0.4rem 0.75rem; font-size: 0.78rem; }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 1.25rem; }
  .reviews-split-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .hero-container { grid-template-columns: 1fr 1fr; text-align: left; gap: 1.5rem; min-height: auto; align-items: center; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { margin-bottom: 1rem; font-size: 0.95rem; }
  .hero-cta-group { justify-content: flex-start; }
  .guarantee-badges-bar { justify-content: flex-start; }
  
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .device-content-display { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* Mobile Devices & Phones (max-width: 768px) */
@media (max-width: 768px) {
  .header-btn-desktop { display: none !important; }
  .mobile-header-cta { display: inline-flex !important; }
  .mobile-toggle { display: block !important; z-index: 1001; }

  /* FIXED STICKY TOP NAVBAR ON MOBILE */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.6rem 0;
    background: rgba(11, 15, 25, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-color);
  }

  /* RIGHT-TO-LEFT MOBILE DRAWER */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 85vw;
    max-width: 340px;
    height: 100vh;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4.5rem 1.6rem 2.5rem;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    box-shadow: -20px 0 40px rgba(0,0,0,0.85);
  }

  .nav-links.mobile-open {
    transform: translateX(0);
  }

  .nav-item { font-size: 1.1rem; font-weight: 700; width: 100%; text-align: left; padding: 0.35rem 0; color: #fff; }
  
  /* FULL-WIDTH MOBILE DROPDOWN PANEL & CONTAINER FIX */
  .nav-links .nav-dropdown-item {
    width: 100% !important;
    display: block !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .nav-links .nav-dropdown-toggle {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    width: 100% !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.5rem 0 !important;
    color: #fff !important;
    box-sizing: border-box !important;
  }

  .nav-links .nav-dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: none !important;
    display: none !important;
    margin: 6px 0 8px 0 !important;
    padding: 6px 6px 6px 12px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
  }

  .nav-links .nav-dropdown-item.active > .nav-dropdown-menu,
  .nav-links .nav-dropdown-item.open > .nav-dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
  }

  .nav-links .dropdown-link {
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    min-height: 40px !important;
    padding: 9px 12px !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    color: var(--text-muted);
    box-sizing: border-box !important;
  }

  .nav-links .dropdown-link:hover {
    background: rgba(245, 158, 11, 0.12);
    color: #fff;
  }

  .mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    margin-top: 0.85rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color);
  }

  /* Hero Mobile Layout */
  .hero-section { padding: 3.8rem 0 1.5rem; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 1.2rem; }
  .badge-pill { margin-bottom: 0.7rem; font-size: 0.75rem; padding: 0.3rem 0.8rem; }
  .hero-title { font-size: 1.75rem; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 0.7rem; }
  .hero-subtitle { font-size: 0.92rem; margin: 0 auto 1rem; line-height: 1.5; }
  .hero-cta-group { flex-direction: column; width: 100%; gap: 0.75rem; margin-bottom: 1.2rem; justify-content: center; }
  .hero-cta-group .btn { width: 100%; border-radius: 50px; }
  
  .guarantee-badges-bar {
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    max-width: 290px;
    margin: 0 auto;
    align-items: flex-start;
  }
  .guarantee-badge { font-size: 0.8rem; }

  .hero-img-box { max-width: 100%; border-radius: var(--radius-md); }
  .hero-tv-mobile-img { max-height: 300px; }

  /* Metrics Section Mobile - 2x2 Grid for Mobile */
  .metrics-section { padding: 1.4rem 0; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .metric-card { padding: 0.75rem; gap: 0.6rem; }
  .metric-icon { width: 36px; height: 36px; font-size: 1.1rem; }
  .metric-number { font-size: 1.15rem; }
  .metric-label { font-size: 0.72rem; }

  /* Section Padding & Headings Mobile */
  .section { padding: 2.2rem 0; }
  .section-header { margin-bottom: 1.6rem; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 0.9rem; }

  /* Pricing Grid Mobile */
  .pricing-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .pricing-card { padding: 1.5rem 1.2rem; }

  /* Blog Cards */
  .blog-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Device Switcher Horizontal Touch Scroll */
  .device-switcher-box { padding: 1.2rem 0.9rem; }
  .device-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.85rem;
    margin-bottom: 1.4rem;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .device-tab { flex-shrink: 0; padding: 0.55rem 1rem; font-size: 0.82rem; }

  /* 100% FLUID REVIEW SECTION FOR MOBILE */
  .reviews-split-grid { grid-template-columns: 1fr !important; gap: 1.4rem !important; width: 100% !important; }
  .review-form-card, .submitted-reviews-card { padding: 1.2rem 0.9rem !important; width: 100% !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 0.75rem !important; width: 100% !important; }
  .rating-picker { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .star-rating .star-btn { font-size: 1.4rem; padding: 0.2rem; }
  .review-item-card { padding: 0.85rem !important; }
  .review-item-header { flex-direction: column; align-items: flex-start; gap: 0.3rem; }

  /* 100% FLUID REVIEW SHOWCASE GRID FOR MOBILE & TABLET */
  .reviews-showcase-grid { grid-template-columns: 1fr !important; gap: 1.2rem !important; width: 100% !important; }
  .testimonial-card { padding: 1.2rem 1rem !important; width: 100% !important; }
  .reviews-trust-banner { padding: 1rem 0.85rem !important; text-align: center; justify-content: center; }

  /* FAQ Accordion Mobile */
  .faq-item { padding: 1rem 1.1rem; }
  .faq-question { font-size: 0.92rem; }

  /* Footer Mobile */
  .footer { margin-top: 2.4rem; }
  .footer-container { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; }
  .footer-brand .brand-logo { justify-content: center; }
  .footer-desc { margin: 0.85rem auto 1rem; }

  /* Floating WhatsApp Repositioned for Mobile */
  .floating-whatsapp { bottom: 1.2rem; right: 0.85rem; width: 44px; height: 44px; font-size: 1.2rem; z-index: 99; }
  .whatsapp-tooltip { display: none; }
}

/* Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 1.55rem; }
  .section-title { font-size: 1.4rem; }
  .price { font-size: 2.1rem; }
  .hero-cta-group .btn { width: 100% !important; padding: 0.75rem 1rem !important; font-size: 0.88rem !important; justify-content: center !important; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .metric-card { padding: 0.6rem 0.5rem; }
  .metric-number { font-size: 1.05rem; }
  .metric-label { font-size: 0.68rem; }
}


/* Accessible Setup Support Subtitle */
.setup-support-text {
  max-width: 780px;
  margin: 0.6rem auto 0 auto;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}


/* Semantic Main Landmark Display */
main {
  display: block;
}


/* ==================================================
   SECTION-SPECIFIC: UK CHANNELS LIST DEVICE CARDS GRID
   ================================================== */
.channels-device-grid-wrapper {
  max-width: 1280px;
  margin-inline: auto;
  width: calc(100% - 40px);
  box-sizing: border-box;
}

.channels-device-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .channels-device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1150px) {
  .channels-device-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

.channels-device-card {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 1150px) {
  .channels-device-card {
    padding: 1.6rem 1.4rem;
  }
}

.channels-device-card-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.channels-device-card-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.channels-device-card-link {
  color: var(--amber);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.channels-device-card-link a {
  color: var(--amber);
  text-decoration: underline;
}
