/*
 * SONIX IPTV Clone - WordPress Compatible CSS
 * Add this to WordPress: Appearance → Customize → Additional CSS
 */

/* ==================== IMPORTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Primary Colors */
  --primary-dark: #0a0118;
  --primary-bg: #1a0a2e;
  --primary-gradient-start: #1a0a2e;
  --primary-gradient-end: #2d1b4e;
  --accent-purple: #6b21a8;
  --accent-purple-light: #9333ea;

  /* Gold/Yellow Accents */
  --gold: #ffd700;
  --gold-light: #ffe44d;
  --orange: #f59e0b;
  --orange-light: #fbbf24;

  /* Accent Colors */
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-cyan: #06b6d4;

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dark: #1e293b;

  /* Card/Surface Colors */
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-bg-hover: rgba(255, 255, 255, 0.1);
  --card-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.08);

  /* Spacing */
  --section-padding: 80px;
  --container-max: 1280px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(147, 51, 234, 0.3);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-bg) 50%, var(--primary-gradient-end) 100%);
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 20px;
}

/* ==================== PROMO TOP BAR (Animated) ==================== */
.top-bar {
  background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-purple-light) 50%, var(--accent-purple) 100%);
  background-size: 200% 100%;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.top-bar-track {
  display: flex;
  animation: topbar-scroll 20s linear infinite;
  width: max-content;
}

.top-bar-content {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 50px;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.top-bar-content strong {
  color: var(--gold);
}

@keyframes topbar-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Fallback for simple top-bar (non-animated) */
.top-bar p {
  text-align: center;
  color: var(--text-white);
  margin: 0;
  font-size: 0.9rem;
  animation: topbar-simple-scroll 15s linear infinite;
  white-space: nowrap;
}

@keyframes topbar-simple-scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ==================== HEADER/NAVIGATION ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 1, 24, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition-normal);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  /* Ensure no underline */
}

.logo img {
  height: 60px;
  /* Increased from 50px */
  transition: var(--transition-normal);
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
  /* Subtle glow */
  mix-blend-mode: screen;
  /* Removes black background visually */
  border-radius: 8px;
  /* Smooth corners if visible */
}

.logo:hover img {
  transform: scale(1.1) rotate(-3deg);
  /* Fun hover effect */
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.logo span {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: var(--card-bg-hover);
  color: var(--gold);
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--card-border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(147, 51, 234, 0);
  }
}

.hero h1 {
  margin-bottom: 25px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-offer {
  margin-top: 30px;
  color: var(--gold);
  font-weight: 600;
}

/* ==================== CARDS ==================== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-normal);
}

.card:hover {
  background: var(--card-bg-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  color: var(--text-muted);
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ==================== PRICING CARDS ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 100% !important;
  }
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--accent-green);
  font-weight: bold;
}

.pricing-features .highlight {
  color: var(--gold);
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  min-width: 400px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-white);
}

.testimonial-stars {
  color: var(--gold);
}

/* ==================== MARQUEE ==================== */
.marquee-wrapper {
  overflow: hidden;
  padding: 40px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

.marquee-item .icon {
  font-size: 1.5rem;
}

/* ==================== STEPS ==================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 auto 25px;
  box-shadow: var(--shadow-glow);
}

.step-card h3 {
  margin-bottom: 15px;
}

.step-card p {
  color: var(--text-muted);
}

/* ==================== DEVICES ==================== */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.device-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-normal);
}

.device-card:hover {
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
}

.device-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* ==================== COMPARISON TABLE ==================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.comparison-table th {
  background: var(--glass-bg);
  color: var(--text-white);
  font-weight: 700;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table .highlight-col {
  background: rgba(255, 215, 0, 0.1);
}

.comparison-table .check {
  color: var(--accent-green);
  font-size: 1.5rem;
}

.comparison-table .cross {
  color: var(--accent-red);
  font-size: 1.5rem;
}


/* ==================== BLOG SECTION ==================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-purple);
}

.blog-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--text-white);
  transition: var(--transition-fast);
}

.blog-title a:hover {
  color: var(--gold);
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.read-more {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.read-more:hover {
  gap: 10px;
}

/* Featured Post */
.featured-post {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
}

.featured-image {
  height: 400px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 300px;
  }
}

/* Single Post */
.article-header {
  text-align: center;
  margin-bottom: 50px;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.article-image {
  width: 100%;
  height: 500px;
  margin-bottom: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
}

.article-content h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: var(--text-white);
}

.article-content p {
  margin-bottom: 25px;
}

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-white);
}

.author-box {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  border: 1px solid var(--card-border);
}

.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-widget {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.category-list a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-bg) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 300px;
}

.footer-column h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ==================== COUNTDOWN TIMER ==================== */
.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.countdown-item {
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 25px;
  text-align: center;
  min-width: 80px;
}

.countdown-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==================== TABS ==================== */
.tabs-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== INSTALLATION STEPS ==================== */
.install-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 30px;
}

.install-section h3 {
  margin-bottom: 25px;
  color: var(--gold);
}

.install-steps {
  counter-reset: step;
}

.install-steps li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.install-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ==================== SUPPORT CARDS ==================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.support-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition-normal);
}

.support-card:hover {
  border-color: var(--accent-purple);
  transform: translateY(-5px);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-card {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: var(--transition-normal);
}

.whatsapp-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* ==================== INFO CARDS ==================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 25px;
}

.info-card h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==================== FEATURES INCLUDED ==================== */
.features-included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 25px;
  text-align: center;
  transition: var(--transition-normal);
}

.feature-item:hover {
  border-color: var(--accent-purple);
}

.feature-item .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-bg);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--card-border);
  }

  .nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 20px auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    padding: 15px;
    min-width: 60px;
  }

  .countdown-value {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .tabs-nav {
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

.hero-slide {
  min-width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 1, 24, 0.85) 0%, rgba(26, 10, 46, 0.75) 50%, rgba(45, 27, 78, 0.7) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  padding-top: 100px;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

/* Section Image */
.section-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .slider-arrows {
    display: none;
  }

  .slider-dots {
    bottom: 20px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }
}

/* ==================== TRENDING SECTION ==================== */
.trending-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-bg) 100%);
}

.trending-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.trending-tab {
  padding: 12px 30px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.trending-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.trending-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  border-color: var(--gold);
}

.trending-container {
  position: relative;
  overflow: hidden;
}

.trending-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trending-scroll::-webkit-scrollbar {
  display: none;
}

.movie-card {
  min-width: 200px;
  max-width: 200px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.movie-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-purple);
}

.movie-poster {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.1);
}

.movie-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--gold);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.movie-type {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-purple);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.movie-info {
  padding: 15px;
}

.movie-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-year {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trending-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.trending-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.trending-nav.prev {
  left: 0;
}

.trending-nav.next {
  right: 0;
}

.trending-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  color: var(--text-muted);
}

.trending-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--card-border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .trending-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .trending-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .movie-card {
    min-width: 160px;
    max-width: 160px;
  }

  .movie-poster {
    height: 240px;
  }

  .trending-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* ==================== SPORTS SECTION ==================== */
.sports-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-dark) 100%);
}

.sports-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sports-tab {
  padding: 12px 25px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sports-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sports-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  border-color: var(--gold);
}

.leagues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.league-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 25px 15px;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
}

.league-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
}

.league-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.league-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.league-country {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sports-channels-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.sports-channels-scroll::-webkit-scrollbar {
  display: none;
}

.channel-badge {
  min-width: 120px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-fast);
}

.channel-badge:hover {
  transform: scale(1.05);
  border-color: var(--gold);
}

.channel-badge .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.channel-badge .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
}

.competition-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.competition-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-normal);
}

.competition-card:hover {
  transform: translateX(5px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
}

.competition-icon {
  font-size: 2.5rem;
  min-width: 60px;
  text-align: center;
}

.competition-info h4 {
  color: var(--text-white);
  margin-bottom: 5px;
}

.competition-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-red);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .leagues-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .league-card {
    padding: 15px 10px;
  }

  .league-icon {
    font-size: 2rem;
  }

  .competition-cards {
    grid-template-columns: 1fr;
  }
}

/* ==================== MODERN BLOG SINGLE ==================== */
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 120px;
  /* Account for fixed top-bar (45px) + header (75px) */
}

.article-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--primary-dark) 10%, rgba(10, 1, 24, 0.4) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.article-category-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: var(--text-white);
}

.article-container {
  max-width: 800px;
  margin: -40px auto 0;
  position: relative;
  z-index: 3;
  padding: 0 20px;
}

.drop-cap::first-letter {
  float: left;
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 800;
  color: var(--gold);
  margin-right: 15px;
  margin-top: 5px;
}

.modern-author-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 60px 0;
}

.modern-author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}

.modern-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.share-bar {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.share-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  cursor: pointer;
  color: var(--text-white);
}

.share-icon:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.article-content figure {
  margin: 40px 0;
  width: 100%;
}

.article-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}

.article-content figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* ==================== PAGE HERO (Generic) ==================== */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-dark) 50%, #1a0a2e 100%);
  margin-top: 120px;
  /* Account for fixed top-bar (45px) + header (75px) */
  padding: 60px 20px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: pulse 4s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation: pulse 5s ease-in-out infinite reverse;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  color: var(--text-white);
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== BLOG LISTING PAGE ==================== */
.blog-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-dark) 50%, #1a0a2e 100%);
  margin-top: 80px;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: pulse 4s ease-in-out infinite;
}

.blog-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 15px;
}

/* Featured Post Modern */
.featured-post-modern {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.featured-image-wrapper {
  position: relative;
  overflow: hidden;
}

.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.5s ease;
}

.featured-post-modern:hover .featured-image-wrapper img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.featured-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

.featured-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-details h2 {
  font-size: 2rem;
  margin: 15px 0 20px;
  line-height: 1.3;
}

.featured-details p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .featured-post-modern {
    grid-template-columns: 1fr;
  }

  .featured-image-wrapper img {
    min-height: 300px;
  }
}

/* Blog Category Tag */
.blog-category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-image {
  position: relative;
}

/* ==================== BLOG SECTION & GRID ==================== */
.blog-section {
  padding: 80px 0;
  background: var(--primary-dark);
  min-height: 100vh;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-card-content {
  padding: 25px;
}

.blog-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-white);
  line-height: 1.4;
}

.blog-card-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==================== ARTICLE CONTENT & LAYOUT ==================== */
.article-content {
  padding: 60px 0;
  background: var(--primary-dark);
}

.article-content>.container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  max-width: 1400px;
}

.article-body {
  max-width: 100%;
}

.article-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text-white);
}

.article-body h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--text-white);
}

.article-body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.article-body ul,
.article-body ol {
  margin: 20px 0;
  padding-left: 25px;
  color: var(--text-light);
}

.article-body li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.article-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 30px;
}

/* Article Inline Figures */
.article-figure {
  margin: 40px 0;
  text-align: center;
}

.article-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-figure figcaption {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.article-meta-hero {
  display: flex;
  gap: 25px;
  justify-content: center;
  color: var(--text-light);
  flex-wrap: wrap;
}

.article-meta-hero span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Comparison Table in Articles */
.comparison-table {
  overflow-x: auto;
  margin: 30px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-table th {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  font-weight: 700;
  padding: 15px;
  text-align: left;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-light);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Pricing Comparison Table in Articles */
.pricing-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 30px 0;
}

.pricing-comparison-table th {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  font-weight: 700;
  padding: 15px;
  text-align: left;
}

.pricing-comparison-table td {
  padding: 15px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-light);
}

.pricing-comparison-table tr:last-child td {
  border-bottom: none;
}

.pricing-comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Article Sidebar */
.article-sidebar {
  position: sticky;
  top: 140px;
}

.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 25px;
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  margin-bottom: 12px;
}

.sidebar-widget ul li a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.sidebar-widget ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

/* Article Callout Box */
.article-callout {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 25px;
  margin: 30px 0;
}

.article-callout h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.article-callout p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Article CTA Box */
.article-cta {
  background: linear-gradient(135deg, var(--accent-purple) 0%, rgba(107, 33, 168, 0.8) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.article-cta h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.article-cta p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Mobile Responsive Blog */
@media (max-width: 1024px) {
  .article-content>.container {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 200px;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .article-cta {
    padding: 30px 20px;
  }
}

/* ==================== FAQ PAGE MODERN ==================== */
.faq-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-dark) 50%, #1a0a2e 100%);
  margin-top: 80px;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  animation: pulse 4s ease-in-out infinite;
}

.faq-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
  bottom: -100px;
  right: -50px;
  animation: pulse 5s ease-in-out infinite reverse;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.faq-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 15px;
}

.faq-search-box {
  position: relative;
  max-width: 500px;
  margin: 30px auto 0;
}

.faq-search-box input {
  width: 100%;
  padding: 18px 25px;
  padding-right: 60px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-fast);
}

.faq-search-box input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.faq-search-box .search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

/* Category Cards */
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.faq-category-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
}

.faq-category-card:hover,
.faq-category-card.active {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.category-icon {
  font-size: 1.1rem;
}

/* Section Title */
.faq-section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.faq-section-title .section-icon {
  font-size: 1.5rem;
}

.faq-section-title h2 {
  font-size: 1.5rem;
  margin: 0;
}

/* Modern Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-accordion-item:hover {
  border-color: var(--gold);
}

.faq-accordion-item.active {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-number {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
  min-width: 30px;
}

.faq-question-text {
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 500px;
}

.faq-accordion-body p,
.faq-accordion-body ul {
  padding: 0 25px 25px 75px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-accordion-body ul li {
  margin-bottom: 8px;
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-badge-text {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.9rem;
}

.trust-badge-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Payment Icons */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment-icon {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==================== STICKY TOP BAR & HEADER OVERRIDES ==================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--accent-purple), var(--gold), var(--accent-purple));
  padding: 10px 20px;
  text-align: center;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar p {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header {
  top: 45px !important;
}