* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #111;
}


.navbar {
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  height: 60px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}


.navbar a {
    color: inherit;
    text-decoration: none;
}


.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}


.nav-left img {
  height: 40px;
}
.menu-icon {
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.logo {
    font-weight: bold;
    font-size: 18px;
    color: #e10600;
}

.logo span {
    color: #fff;
        color: #e10600;
}
.live {
  color: red;
  font-weight: bold;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}


.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    font-size: 14px;
}

.nav-menu li {
    cursor: pointer;
    position: relative;
}

.nav-menu li a:hover {
    color: #e10600;
}



.more-menu {
    position: relative;
}


.more-btn {
        transform: translateY(-2px);
    height: 100%;
    min-height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 2px 0;
}

.more-btn .dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}


.dropdown {
    position: absolute;
    top: 28px;
    right: -150px;
    background: #fff;
    color: #000;
    min-width: 140px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    display: none;
    z-index: 100;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #000;
}

.dropdown li a:hover {
    background: #f2f2f2;
}



.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon {
    cursor: pointer;
}

.watch-btn {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 6px 12px;
}

.signup-btn {
    background: #e10600;
    border: none;
    color: #fff;
    padding: 8px 14px;
    font-weight: bold;
}


.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000;
    border-top: 1px solid #333;
}

.mobile-menu li {
    padding: 14px 20px;
    border-bottom: 1px solid #222;
    list-style: none;
}

.mobile-menu li a {
    display: block;
}

.mobile-menu li:hover {
    background: #111;
}

.mobile-menu li a:hover {
    color: #e10600;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111;
  color: #939396;
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
}


.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links a {
  text-decoration: none;
  color: #939396;
  margin: 0 5px;
  text-align: center;
}
.footer-links a:hover {
  text-decoration: none;
  color: #ffffff;
  margin: 0 5px;
  text-align: center;
}
.footer-copy {
  margin-top: 10px;
}


.footer-img {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  z-index: 999;
  border-top: #fff ;
  border-radius: 4px;
}

.footer-img img {
  max-height: 100%;
  width: auto;
}


@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }
  .logo img {
    height: 35px;
  }
  nav ul li a {
    padding: 5px 8px;
    font-size: 14px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .logo-track {
    gap: 40px;
  }
  .logo-track img {
    height: 70px;
  }
}


.hero {
    position: relative;
    height: 80vh;
    min-height: 420px;
    overflow: hidden;
    color: #fff;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    max-width: 700px;
    padding: 0 40px;
}


.hero h1 {
    
    font-size: 50px;
    margin-bottom: 14px;
}

.hero h1 span {
    
    color: #e10600;
}

.hero p {
    max-width: 600px;
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero a {
    text-decoration: none;
}
.hero-btn {
    display: inline-block;
    background: #e10600;
    color: #fff;
    padding: 20px 40px;
    font-weight: bold;
}


.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}


.hero-content,
.hero-logos {
    position: relative;
    z-index: 2;
}


.logo-carousel {
  background: #333;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 100px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}





.btn {
  text-decoration: none;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 8px;
  color: #fff;
  white-space: nowrap;
}

.btn-red {
  background: #e10600;
}

.btn-dark {
  background: #111;
}


@media (max-width: 900px) {
  .pricing-box {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .watch-btn {
        display: none;
    }
}

@media (max-width: 768px) {
.logo {
    font-weight: bold;
    font-size: 12px;
    color: #e10600;
}

.logo span {
    color: #fff;
        color: #e10600;
}

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 60px 0;
  }

  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-btn {
    padding: 14px 26px;
    font-size: 14px;
  }


  .logo-track img {
    height: 60px;
  }


