/* Reset and Base Styles */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, ol, li, form, label, input, textarea, button, table, th, td, article, aside, footer, header, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Common Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.highlight {
    color: #667eea;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #97a7c8 0%, #764ba2 100%);
    color: rgb(248, 248, 248);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 242, 244, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #667eea;
    color: rgb(255, 255, 255);
}

/* Navigation */
.navbar {
    background: #0d1b3e;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.logo:hover {
  color: #e2e8f0;
  letter-spacing: 0.12em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4a90e2;
}

/* Hero Slider */
.hero-slider {
    margin-top: 54px;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    width: 120%;
    height: 100%;
    position: relative;
}

.slider-container input[type="radio"] {
    display: none;
}

.slides {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
  text-align: left;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  margin-left: 5%;
  /* Add these for mobile responsiveness */
  box-sizing: border-box;
  padding: 0 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slide-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  /* Prevent text overflow on mobile */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  /* Prevent text overflow on mobile */
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  /* Make buttons responsive on mobile */
  flex-wrap: wrap;
}

.slider-navigation {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 15px;
}

.nav-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

#slide1:checked ~ .slides .slide-1 {
  opacity: 1;
}

#slide1:checked ~ .slider-navigation label:nth-child(1) {
  background: white;
  border-color: rgba(102, 126, 234, 0.8);
  transform: scale(1.3);
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0 / 86%), rgb(0 0 0));
  z-index: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .slide-content {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
      width: 95%;
      position: relative;
  }
  
  .slide-content h1 {
      font-size: 2.5rem;
      line-height: 1.3;
  }
  
  .slide-content p {
      font-size: 1.2rem;
      line-height: 1.4;
  }
  
  .hero-buttons {
      justify-content: center;
      gap: 0.8rem;
  }
  
  .slider-navigation {
      bottom: 20px;
  }
}

@media (max-width: 480px) {
  .slide-content h1 {
      font-size: 2rem;
  }
  
  .slide-content p {
      font-size: 1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .hero-buttons button {
      width: 100%;
      max-width: 250px;
  }
}

/* Section Common Styles */
.channels, .why-choose, .blog {
    padding: 60px 0;
    background: #f8f9fa;
}

.subscription, .pricing, .how-it-works, .reviews, .advice {
    padding: 80px 0;
}

/* Channels */
.channel-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
}

.channel-item {
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    flex-shrink: 0;
    min-width: 150px;
    text-align: center;
}

.channel-item:hover {
    transform: translateY(-10px);
}

.channel-item img {
    height: 50px;
    width: auto;
    max-width: 100%;
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    white-space: nowrap;
}

.btn-arrow {
    display: block;
    margin: 0 auto;
    background: #667eea;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-arrow:hover {
    background: #764ba2;
    transform: scale(1.1);
}

/* Subscription */
.subscription .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.subscription-content, .subscription-image {
    flex: 1;
}

.subscription p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #999;
    font-size: 0.9rem;
}

.subscription-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.subscription-image img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: rgba(118, 75, 162, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Features Grid */
.features-grid, .pricing-grid, .steps-grid, .reviews-grid, .blog-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.features-grid, .pricing-grid, .blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.reviews-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.feature-card, .pricing-card, .review-card, .blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 2rem;
}

.feature-card:hover, .pricing-card:hover, .blog-card:hover {
    transform: translateY(-10px);
}

.review-card:hover {
    transform: translateY(-5px);
}

.feature-card.blank {
    background: transparent;
    box-shadow: none;
}

.feature-card.center-image {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.feature-card.center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.feature-icon, .device-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3, .step-card h3, .device-item p {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-card p, .step-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Cards */
.pricing-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.plan-badge {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pricing-card.featured .plan-badge {
    background: rgba(255,255,255,0.3);
}

.plan-price {
    margin: 1rem 0;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-card.featured .plan-features li {
    color: rgba(255,255,255,0.9);
}

.plan-duration {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: bold;
}

.pricing-card.featured .plan-duration {
    background: rgba(255,255,255,0.2);
}

.btn-buy, .btn-read {
    background: #667eea;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    margin: 1rem 0;
    transition: all 0.3s;
}

.btn-buy:hover, .btn-read:hover {
    background: #764ba2;
    transform: scale(1.05);
}

.btn-read {
    padding: 0.5rem 1.5rem;
    width: auto;
    border-radius: 20px;
}

.pricing-card.featured .btn-buy {
    background: white;
    color: #667eea;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.pricing-card.featured .payment-methods {
    color: rgba(255,255,255,0.8);
}

/* Steps */
.step-card {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Devices */
.devices {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.device-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.device-item {
    text-align: center;
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.device-item:hover {
    transform: translateY(-10px);
}

.devices .btn-primary {
    display: block;
    margin: 0 auto;
}

/* Reviews */
.reviews h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card h4 {
    margin-bottom: 1rem;
}

.review-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer strong {
    color: #333;
}

.reviewer span {
    color: #999;
    font-size: 0.85rem;
}

/* Blog */
.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

/* Advice */
.advice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.advice p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    background: rgba(255,255,255,0.2);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: #0d1b3e;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #667eea;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.app-buttons img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Contact Form */
.contact-section {
    padding: 100px 0 50px;
    min-height: 100vh;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-header {
    background: linear-gradient(135deg, #1a2a6c, rgb(24 22 22 / 85%), #64583f);
    color: white;
    padding: 20px;
    text-align: center;
}

.contact-header h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.contact-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-control:focus {
    border-color: #1a2a6c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 42, 108, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(to right, #091752, #351d1d);
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(to right, #152258, #9c1a1a);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content h1 { font-size: 3rem; }
    .slide-content p { font-size: 1.2rem; }
    .pricing-grid, .reviews-grid, .blog-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .device-icons { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-slider { height: 70vh; }
    .slide-content { text-align: center; }
    .slide-content h1 { font-size: 2.5rem; }
    .slide-content p { font-size: 1rem; }
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    .hero-buttons button { 
        width: 100%; 
        max-width: 250px; 
    }
    .subscription .container { flex-direction: column; }
    .pricing-grid, .steps-grid, .reviews-grid, .blog-grid, .features-grid, .footer-grid { grid-template-columns: 1fr; }
    .device-icons { grid-template-columns: repeat(3, 1fr); }
    .contact-options { flex-direction: column; }
    .channel-logos { 
        gap: 1rem; 
        justify-content: flex-start; 
        padding: 1rem; 
    }
    .channel-item { 
        padding: 15px 25px; 
        min-width: 120px; 
    }
    .channel-item img { height: 40px; }
    .logo-text { font-size: 1rem; }
    .contact-container { margin: 15px; }
    .contact-form { padding: 20px; }
}

@media (max-width: 480px) {
    .hero-slider { height: 60vh; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 0.9rem; }
    .slider-navigation { bottom: 20px; }
    .nav-dot { width: 12px; height: 12px; }
    .device-icons { grid-template-columns: repeat(2, 1fr); }
    .channel-logos { gap: 0.5rem; }
    .channel-item { 
        padding: 12px 20px; 
        min-width: 100px; 
    }
    .channel-item img { height: 35px; }
    .logo-text { font-size: 0.9rem; }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    .footer { padding: 40px 0 20px; }
}/* Channels Section CSS */
.channels-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .channels-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  .channels-header h1 {
    font-size: 3rem;
    color: #0d1b3e;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .channels-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
  }
  
  .channels-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin: 30px auto;
    max-width: 200px;
  }
  
  .channels-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .filter-btn {
    padding: 12px 24px;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  }
  
  /* Pure CSS Logo Carousel */
  .logo-carousel-wrapper {
    margin: 50px 0;
    overflow: hidden;
    position: relative;
  }
  
  .logo-carousel {
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
  }
  
  .carousel-slide {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .carousel-slide:hover {
    transform: translateY(-5px);
  }
  
  .carousel-slide img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .carousel-slide:hover img {
    filter: grayscale(0%);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 9 - 20px * 18));
    }
  }
  
  /* Pause animation on hover */
  .logo-carousel:hover .carousel-track {
    animation-play-state: paused;
  }
  
  .countries-section {
    margin-top: 60px;
  }
  
  .countries-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #0d1b3e;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  /* Pure CSS Tabs */
  .country-tabs {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .country-tab-input {
    display: none;
  }
  
  .country-tab-labels {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .country-tab-label {
    padding: 12px 24px;
    background: white;
    border: 2px solid #667eea;
    border-radius: 25px;
    color: #667eea;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .country-tab-label:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
  }
  
  /* Tab Content Show/Hide */
  .country-channels {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Show active tab content */
  #tab-usa:checked ~ .country-content .usa-channels,
  #tab-uk:checked ~ .country-content .uk-channels,
  #tab-canada:checked ~ .country-content .canada-channels,
  #tab-france:checked ~ .country-content .france-channels,
  #tab-germany:checked ~ .country-content .germany-channels {
    display: block;
  }
  
  /* Active tab label style */
  #tab-usa:checked ~ .country-tab-labels label[for="tab-usa"],
  #tab-uk:checked ~ .country-tab-labels label[for="tab-uk"],
  #tab-canada:checked ~ .country-tab-labels label[for="tab-canada"],
  #tab-france:checked ~ .country-tab-labels label[for="tab-france"],
  #tab-germany:checked ~ .country-tab-labels label[for="tab-germany"] {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  }
  
  .country-title {
    font-size: 1.8rem;
    color: #0d1b3e;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    font-weight: 600;
    text-align: center;
  }
  
  .channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
  
  .channel-item {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    font-weight: 500;
  }
  
  .channel-item:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
  }
  
  .channels-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .channels-cta p {
    font-size: 1.3rem;
    color: #0d1b3e;
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  .channels-cta .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .channels-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .channels-section {
      padding: 50px 0;
    }
    
    .channels-header h1 {
      font-size: 2.2rem;
    }
    
    .channels-header p {
      font-size: 1.1rem;
    }
    
    .channels-filter {
      gap: 10px;
    }
    
    .filter-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
    
    .carousel-slide {
      width: 120px;
      height: 70px;
      margin: 0 15px;
    }
    
    .carousel-slide img {
      max-width: 100px;
      max-height: 40px;
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-120px * 9 - 15px * 18));
      }
    }
    
    .country-tab-labels {
      gap: 8px;
    }
    
    .country-tab-label {
      padding: 10px 18px;
      font-size: 0.9rem;
    }
    
    .country-channels {
      padding: 30px 20px;
    }
    
    .country-title {
      font-size: 1.5rem;
    }
    
    .channels-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 12px;
    }
    
    .channel-item {
      padding: 12px 15px;
      font-size: 0.9rem;
    }
    
    .channels-cta {
      padding: 30px 20px;
      margin-top: 30px;
    }
    
    .channels-cta p {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .channels-header h1 {
      font-size: 1.8rem;
    }
    
    .channels-header p {
      font-size: 1rem;
    }
    
    .channels-filter {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 10px;
    }
    
    .filter-btn {
      flex-shrink: 0;
    }
    
    .carousel-slide {
      width: 100px;
      height: 60px;
      margin: 0 10px;
    }
    
    .carousel-slide img {
      max-width: 80px;
      max-height: 35px;
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-100px * 9 - 10px * 18));
      }
    }
    
    .country-tab-labels {
      flex-direction: column;
      align-items: center;
    }
    
    .country-tab-label {
      width: 200px;
      text-align: center;
    }
    
    .channels-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .channel-item {
      padding: 10px 12px;
      font-size: 0.85rem;
    }
  }
  /* Update the CSS to include all new country tabs */
/* Add these selectors to your existing CSS */

/* Show active tab content for all countries */
#tab-usa:checked ~ .country-content .usa-channels,
#tab-uk:checked ~ .country-content .uk-channels,
#tab-germany:checked ~ .country-content .germany-channels,
#tab-italy:checked ~ .country-content .italy-channels,
#tab-spain:checked ~ .country-content .spain-channels,
#tab-netherlands:checked ~ .country-content .netherlands-channels,
#tab-belgium:checked ~ .country-content .belgium-channels,
#tab-sweden:checked ~ .country-content .sweden-channels {
  display: block;
}

/* Active tab label style for all countries */
#tab-usa:checked ~ .country-tab-labels label[for="tab-usa"],
#tab-uk:checked ~ .country-tab-labels label[for="tab-uk"],
#tab-germany:checked ~ .country-tab-labels label[for="tab-germany"],
#tab-italy:checked ~ .country-tab-labels label[for="tab-italy"],
#tab-spain:checked ~ .country-tab-labels label[for="tab-spain"],
#tab-netherlands:checked ~ .country-tab-labels label[for="tab-netherlands"],
#tab-belgium:checked ~ .country-tab-labels label[for="tab-belgium"],
#tab-sweden:checked ~ .country-tab-labels label[for="tab-sweden"] {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive updates for more tabs */
@media (max-width: 768px) {
  .country-tab-labels {
    gap: 8px;
  }
  
  .country-tab-label {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .country-tab-labels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .country-tab-label {
    width: 100%;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}
/* Article Block Common Styles */
.article-block {
  padding: 9rem 0;
}

.content-block h2,
.hero-block h1,
.cta-block h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-block p,
.hero-block p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Block */
.hero-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.hero-block h1 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-block .lead {
  font-size: 1.3rem;
  color: #f0f0f0;
}

/* Alternate Background for Blocks */
.alternate {
  background-color: #edf2f7;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature h3 {
  color: #4299e1;
  margin-bottom: 1rem;
}

/* Benefits List */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-item h4 {
  color: #2d3748;
  margin-bottom: 0.5rem;
}

/* Lists */
.iptv-article ul, 
.iptv-article ol {
  max-width: 800px;
  margin: 1rem auto;
  padding-left: 2rem;
}

.iptv-article li {
  margin-bottom: 0.5rem;
}

.iptv-article strong {
  color: #2d3748;
}

/* Comparison Table */
.comparison-table {
  display: block;
  margin-top: 2rem;
  overflow-x: auto;
}

.comp-row {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
}

.comp-header {
  font-weight: bold;
  background-color: #4a5568;
  color: white;
}

.comp-cell {
  flex: 1;
  padding: 1rem;
  text-align: center;
}

.comp-header .comp-cell:first-child {
  background-color: #2d3748;
}

.comp-row:not(.comp-header) .comp-cell:first-child {
  font-weight: 600;
  text-align: left;
  background-color: #edf2f7;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item h4 {
  color: #2b6cb0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Call to Action Block */
.cta-block {
  text-align: center;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.cta-block h2 {
  color: white;
}

.cta-block p {
  color: #e6fffa;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #fff;
  color: #11998e;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-block h1 {
    font-size: 2rem;
  }

  .article-block {
    padding: 2.5rem 0;
  }

  .features-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .comp-row {
    flex-direction: column;
  }

  .comp-header {
    display: none;
  }

  .comp-cell {
    text-align: left;
    padding: 0.75rem;
  }

  .comp-cell:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.25rem;
    color: #4a5568;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */


h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
}

p {
  margin-bottom: 1.25rem;
}

/* Article Layout */
.article-header {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.article-content {
  background: white;
  padding: 1rem;
  margin: 5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Content Elements */
.intro {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 4px solid #3498db;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.benefit-card h3 {
  margin-top: 0;
  color: #3498db;
}

.types-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.type-card {
  flex: 1;
  min-width: 250px;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 4px solid #2c3e50;
}

.type-card h3 {
  margin-top: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th, .comparison-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.comparison-table th {
  background-color: #3498db;
  color: white;
}

.comparison-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.faq-section {
  margin: 3rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 1rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.conclusion {
  background: #e8f4fc;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
      font-size: 2rem;
  }
  
  h2 {
      font-size: 1.75rem;
  }

  
  .benefits-grid {
      grid-template-columns: 1fr;
  }
  
  .types-container {
      flex-direction: column;
  }
  
  .comparison-table {
      display: block;
      overflow-x: auto;
  }
}