*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #161616;
    --gold: #c8a84b;
    --yellow: #f0c619;
    --green: #7ec83a;
    --text: #e0e0e0;
    --text2: #aaa;
    --white: #ffffff;
    --card-bg: #1a1a1a;
    --border: #2a2a2a;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 1.6; }

.main_wraper {
    width: 1320px;
    margin: 0 auto;
    
}
  /* NAV */
  nav {
    background: #0d0d0d;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 60px; position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid #1e1e1e;
  }
  .logo { display: flex; align-items: center; gap: 8px; }
  .logo-icon { width: 36px; height: 36px; background: var(--yellow); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #000; }
  .logo-text { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--white); letter-spacing: 1px; }
  .logo-text span { color: var(--yellow); }
  nav ul { list-style: none; display: flex; gap: 28px; }
  nav ul li a { color: #ccc; text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
  nav ul li a:hover { color: var(--yellow); }
  .nav-trial { background: var(--yellow); color: #000; padding: 8px 18px; border-radius: 4px; font-weight: 700; font-size: 13px; text-decoration: none; white-space: nowrap; transition: background .2s; }
  .nav-trial:hover { background: #ffd835; }

  /* HERO */
  .hero { display: flex; align-items: center; gap: 40px; padding: 60px 60px 50px; min-height: 440px; background: var(--bg); position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(200,168,75,0.06) 0%, transparent 70%); }
  .hero-left { flex: 1; max-width: 50%; position: relative; z-index: 1; }
  .hero-left h1 { font-family: 'Oswald', sans-serif; font-size: 42px; font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 16px; }
  .hero-left h1 span { color: var(--yellow); }
  .hero-left p { color: var(--text2); font-size: 14px; line-height: 1.7; margin-bottom: 28px; max-width: 380px; }
  .btn-trial { display: inline-block; background: var(--yellow); color: #000; font-weight: 700; font-size: 14px; padding: 12px 28px; border-radius: 4px; text-decoration: none; transition: background .2s; }
  .btn-trial:hover { background: #ffd835; }
  .device-icons { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
  .device-icons span { font-size: 11px; color: var(--text2); display: flex; align-items: center; gap: 4px; }
  .hero-right { flex: 1; max-width: 50%; position: relative; z-index: 1; }
  .tv-frame { background: #1a1a2e; border-radius: 12px; border: 3px solid #2a2a4a; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); position: relative; }
  .tv-header { background: #111; padding: 8px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #222; }
  .tv-header-left { display: flex; gap: 8px; align-items: center; }
  .tv-brand { font-weight: 700; font-size: 13px; color: var(--white); }
  .android-badge { background: #a4c639; color: #000; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 3px; }
  .tv-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 12px; }
  .tv-thumb { background: #222; border-radius: 4px; height: 60px; overflow: hidden; position: relative; }
  .tv-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .tv-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 18px; }

  /* STATS */
  .stats { background: var(--bg2); padding: 30px 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .stat-item { text-align: center; }
  .stat-num { font-family: 'Oswald', sans-serif; font-size: 30px; color: var(--white); font-weight: 700; }
  .stat-label { font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; }
  .stat-divider { width: 1px; height: 40px; background: var(--border); }

  /* BRAND LOGOS */
 .brand-bar {
    background: var(--bg);
    padding: 20px 60px;
    display: flex;
    /* align-items: center; */
    gap: 40px;
    overflow: hidden;
    width: 100%;
    width: 100%;
    justify-content: space-between;
}
  .brand-logo { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--text2); white-space: nowrap; }
  .brand-logo.f1 { color: #e10600; font-style: italic; font-size: 28px; }
  .brand-logo.hbo { letter-spacing: 2px; }
  .brand-logo.disc { color: #00aeef; }

  /* SECTION HEADINGS */
  .section-title { text-align: center; margin-bottom: 30px; }
  .section-title h2 { font-family: 'Oswald', sans-serif; font-size: 28px; color: var(--white); }
  .section-title h2 span { color: var(--yellow); }

  /* MOVIES SECTION */
  .movies-section { padding: 50px 40px; background: var(--bg); }
  .movies-grid { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; }
  .movie-card { flex: 0 0 160px; border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; transition: transform .2s; }
  .movie-card:hover { transform: scale(1.04); }
  .movie-card .movie-img { width: 100%; height: 220px; object-fit: cover; }
  .movie-placeholder { width: 100%; height: 220px; display: flex; align-items: center; justify-content: center; font-size: 40px; border-radius: 8px; }
  .movie-card .movie-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); padding: 12px 8px 8px; }
  .movie-title { font-size: 11px; font-weight: 600; color: var(--white); }
  .movie-badge { position: absolute; top: 8px; right: 8px; background: var(--yellow); color: #000; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 3px; }

  /* SPORTS */
  .sports-section { padding: 50px 40px; background: var(--bg2); }
  .sports-grid { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .sport-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 160px; height: 130px; text-align: center; transition: border-color .2s, transform .2s; cursor: pointer; }
  .sport-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
  .sport-icon { font-size: 32px; margin-bottom: 8px; }
  .sport-name { font-size: 11px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .5px; }
  .sport-name span { color: var(--yellow); display: block; font-size: 13px; }

  /* PRICING */
  .pricing-section { padding: 60px 40px; background: var(--bg); }
  .pricing-subtitle { text-align: center; color: var(--text2); font-size: 13px; margin-bottom: 36px; }
  .pricing-subtitle span { color: var(--yellow); }
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
  .price-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px 18px; position: relative; transition: border-color .2s; }
  .price-card.best { border-color: var(--yellow); background: #1c1a0e; }
  .price-card.best .best-badge { display: block; }
  .best-badge { display: none; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: #000; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
  .price-period { font-size: 12px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
  .price-amount { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .price-amount small { font-size: 18px; }
  .price-features { list-style: none; margin-bottom: 20px; }
  .price-features li { font-size: 11px; color: var(--text2); padding: 3px 0; display: flex; align-items: flex-start; gap: 6px; }
  .price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .btn-buy { width: 100%; background: var(--yellow); color: #000; border: none; padding: 10px; border-radius: 4px; font-weight: 700; font-size: 13px; cursor: pointer; transition: background .2s; }
  .btn-buy:hover { background: #ffd835; }
  .delivery-note { font-size: 10px; color: var(--text2); text-align: center; margin-top: 8px; }
  .payment-icons { display: flex; justify-content: center; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
  .pay-icon { background: #2a2a2a; border-radius: 3px; padding: 3px 7px; font-size: 9px; color: #aaa; font-weight: 600; }

  /* WHY CHOOSE US */
  .why-section { padding: 60px 60px; background: var(--bg2); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
  .why-card { text-align: center; padding: 30px 20px; }
  .why-icon { font-size: 40px; margin-bottom: 16px; }
  .why-card h3 { font-family: 'Oswald', sans-serif; font-size: 16px; color: var(--white); margin-bottom: 10px; }
  .why-card p { font-size: 12px; color: var(--text2); line-height: 1.7; }

  /* CHANNELS MAP */
  .map-section { padding: 60px 60px; background: var(--bg); text-align: center; }
  .world-map { max-width: 600px; margin: 0 auto; position: relative; }
  .map-img { width: 100%; border-radius: 8px; }
  .map-placeholder { background: #111; border-radius: 8px; height: 280px; display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; overflow: hidden; }
  .map-placeholder::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 50 Q25 20 40 50 Q55 80 70 50 Q85 20 95 50' stroke='%23c8a84b22' fill='none' stroke-width='1'/%3E%3C/svg%3E") repeat; }
  .map-pin { position: absolute; background: #e83030; width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 8px rgba(232,48,48,.6); }
  .map-pin.p1 { top: 30%; left: 20%; }
  .map-pin.p2 { top: 25%; left: 50%; }
  .map-pin.p3 { top: 40%; left: 70%; }
  .map-pin.p4 { top: 55%; left: 35%; }

  /* DEVICES */
  .devices-section { padding: 50px 60px; background: var(--bg2); text-align: center; }
  .device-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
  .device-badge { background: #1a1a1a; border: 1px solid var(--border); border-radius: 8px; padding: 12px 20px; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; color: var(--text); transition: border-color .2s; }
  .device-badge:hover { border-color: var(--yellow); }
  .device-badge .d-icon { font-size: 22px; }
  .device-badge small { display: block; font-size: 9px; font-weight: 400; color: var(--text2); text-transform: uppercase; letter-spacing: .5px; }

  /* FAQ */
  .faq-section { padding: 60px 60px; background: var(--bg); }
  .faq-list { max-width: 700px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px; color: var(--text); font-weight: 500; }
  .faq-q:hover { color: var(--yellow); }
  .faq-q .icon { color: var(--yellow); font-size: 18px; transition: transform .2s; }
  .faq-a { display: none; padding: 0 0 16px; font-size: 13px; color: var(--text2); line-height: 1.7; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-q .icon { transform: rotate(45deg); }

  /* TESTIMONIALS */
  .testimonials-section { padding: 60px 60px; background: var(--bg2); }
  .testi-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: space-between;
}
  .testi-card { flex: 0 0 200px; background: #0d0d0d; border: 1px solid var(--border); border-radius: 8px; padding: 16px; font-size: 12px; color: var(--text2); }
  .testi-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
  .testi-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #000; }
  .testi-name { font-weight: 600; color: var(--white); font-size: 12px; }
  .testi-stars { color: var(--yellow); font-size: 10px; }
  .testi-text { line-height: 1.6; }

  /* CONTACT */
  .contact-section { padding: 60px 60px; background: var(--bg); text-align: center; }
  .contact-section h2 { font-family: 'Oswald', sans-serif; font-size: 24px; color: var(--white); margin-bottom: 12px; }
  .contact-section h2 span { color: var(--yellow); }
  .contact-section p { color: var(--text2); font-size: 13px; max-width: 500px; margin: 0 auto 24px; }
  .whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; font-weight: 700; font-size: 15px; padding: 14px; border-radius: 50px; text-decoration: none; transition: background .2s; position: fixed; right: 10px; bottom: 10px; }
  .whatsapp-btn:hover { background: #20bc5a; }

  /* FOOTER */
  footer { background: #080808; padding: 24px 60px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 16px; }
  .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-links a { color: var(--text2); text-decoration: none; font-size: 12px; transition: color .2s; }
  .footer-links a:hover { color: var(--yellow); }
  .footer-copy { font-size: 11px; color: #555; }

  /* Scrollbar */
  ::-webkit-scrollbar { height: 4px; width: 4px; }
  ::-webkit-scrollbar-track { background: #111; }
  ::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

  /* Basic plan section */
  .basic-plan-section { padding: 0 40px 60px; background: var(--bg); }
  .basic-plan-title { font-family: 'Oswald', sans-serif; font-size: 24px; color: var(--white); text-align: center; margin-bottom: 8px; }
  .basic-plan-title span { color: var(--yellow); }

  @media (max-width: 768px) {
    nav ul { display: none; }
    .hero { flex-direction: column; padding: 30px 20px; }
    .stats { padding: 20px; justify-content: center; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; }
    .main_wraper {width: 100%;}
    .hero-left {max-width: 100%;}
    .hero-right {max-width: 100%;}
  }


  .service-list{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    font-family:Arial,sans-serif;
}
.service-item{
    display:flex;
    align-items:center;
    gap:10px;
    background:#111827;
    color:#fff;
    padding:10px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    box-shadow:0 4px 14px rgba(0,0,0,0.15);
    transition:.3s ease;
}
.service-item:hover{
    transform:translateY(-3px);
    background:#1f2937;
}
.service-item i {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    background: linear-gradient(135deg,#2563eb,#7c3aed);
}