
:root{
  --bg:#f4f8ff;
  --card:#ffffff;
  --accent:#1766ff;
  --muted:#6b7280;
  --radius:20px;
  --gap:14px;
  --glass: rgba(255,255,255,0.6);
}
*{box-sizing:border-box;font-family: 'Poppins', system-ui, 'Segoe UI', Roboto, -apple-system; margin:0; padding:0;}
body{background:var(--bg); color:#071428; line-height:1.4}
.container{max-width:1150px;margin:0 auto;padding:0 18px}

/* Navbar */
.navbar{background:var(--card);box-shadow:0 2px 8px rgba(16,24,40,0.06);position:sticky;top:0;z-index:20}
.navbar .container{display:flex;align-items:center;justify-content:space-between;padding:12px 18px}
.logo-row{display:flex;align-items:center;gap:12px}
.logo-svg{height:42px;width:auto}
.nav-links a{margin-left:16px;text-decoration:none;color:var(--muted);font-weight:600}
.nav-links a.active{color:var(--accent)}

/* Hero */
.hero{padding:60px 0 40px}
.hero-grid{display:grid;grid-template-columns:1fr 420px;gap:40px;align-items:center}
.hero h1{font-size:48px;margin-bottom:14px;color:#07203a}
.hero p{font-size:18px;color:var(--muted);margin-bottom:20px}
.btn{background:var(--accent);color:#fff;padding:12px 22px;border-radius:999px;border:none;font-weight:700;cursor:pointer;display:inline-block;text-decoration:none}

/* Channels Section - Vertical */
.channels-section { padding: 30px 0; text-align: center; }
.channels-section h2 { font-size: 28px; margin-bottom: 20px; }
.search-box { width: 60%; max-width: 400px; padding: 12px 14px; margin-bottom: 30px; font-size: 16px; border-radius: 8px; border: 1px solid #ccc; }

.channels-list { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.channel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  width: 90%;
  max-width: 500px;
  transition: transform 0.2s ease;
}
.channel-item:hover { transform: scale(1.02); }
.channel-logo { width: 40px; height: auto; }
.channel-name { font-size: 16px; font-weight: 600; color: #333; }

/* Pricing */
.pricing-section{padding:30px 0}
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.pricing-card{background:var(--card);padding:18px;border-radius:12px;box-shadow:0 10px 30px rgba(16,24,40,0.06);text-align:center}
.price{font-size:28px;font-weight:800;margin:12px 0;color:var(--accent)}
.features-list{list-style:none;margin-top:12px;text-align:left;padding:0}
.features-list li{padding:6px 0;border-bottom:1px dashed #eef2ff;color:var(--muted);font-weight:600}
.cta-wrap{margin-top:14px}

/* Contact */
.contact-section{padding:30px 0}
.contact-card{background:var(--card);padding:20px;border-radius:12px;box-shadow:0 8px 26px rgba(16,24,40,0.06)}

/* Footer */
footer{padding:20px 0;text-align:center;color:var(--muted);margin-top:24px;font-size:14px}

/* Responsive */
@media (max-width:880px){
  .hero-grid{grid-template-columns:1fr}
  .channel-item{min-width:180px}
}


/* International categories colors */
.austria h3 { background:#6c757d; }
.holland h3 { background:#ff6f00; }
.turkish h3 { background:#e63946; }
.spanish h3 { background:#d62828; }
.italy h3 { background:#2a9d8f; }
.england h3 { background:#264653; }
.frensh h3 { background:#4361ee; }
.portuguese h3 { background:#f77f00; }
.poland h3 { background:#ef233c; }
.sweden h3 { background:#fcbf49; }
.norway h3 { background:#7209b7; }
.denmark h3 { background:#9d0208; }
.beinsportmena h3 { background:#6a4c93; }
.beinentertainment h3 { background:#8338ec; }
.osngroup h3 { background:#3a0ca3; }
.arabicsport h3 { background:#ff006e; }
.arabicnews h3 { background:#118ab2; }
.morocco h3 { background:#d90429; }
.algeria h3 { background:#2b9348; }
.tunisia h3 { background:#e5383b; }
.mbcorotana h3 { background:#ffb703; }
.arabic h3 { background:#023047; }



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-grid {
    display: block;
  }
  .hero-grid img {
    width: 100%;
    margin-top: 20px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .container {
    padding: 0 16px;
  }
}
