body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
 
  a{
    text-decoration: none;
    color: #222;
  }
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
  }

  .logo {
    font-size: 24px;
    font-weight: bold;
  }

  .menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .menu1, .menu2 {
    display: flex;
  }
  .menu1{
    margin-left: 40px;
  }
  .menu-item {
    margin-right: 15px;
  }

  /* Hero Section */
  .hero {
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/thoro-tv-1.jpeg');
    background-size: cover;
    background-position: left;
    /* background-repeat: no-repeat; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .hero-paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px #000;
  }

  .subscribe-button {
    font-size: 20px;
    background-color: eee;
    color: #222;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
  }

  /* Main Section */
  .main {
    padding: 20px;
    color: white;
    background: #222;
  }

  .tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .tab {
    margin: 0 10px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
  }

  .tab.active {
    background-color: #333;
  }

  .content {
    text-align: center;
  }

  .content-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .logo a{
    text-decoration: none;
    color: #fff;
  }
  .content-paragraph {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .menu-item a{
    text-decoration: none;
    color: #fff;
  }
  .main .content{
    padding: 200px 10px;
    text-align: center;
    height: 100%;
    background-size: cover;
  }
  .tab-container img{
    height: 60px;
  }
  .main #content1{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/thoro-tv-2.jpeg');
    background-position: center; 
  }
  
  .main #content2{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/thoro-tv-3.jpeg');
    background-position: center; 
  }

  .main #content3{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/red-seats.webp');
  }
 

  /* Footer */
  .footer {
    background-color: black;
    padding: 20px;
    color: white;
    text-align: center;
  }

  .footer-menu {
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
  }

  .footer-menu a{
    text-decoration: none;
    color: #fff;
    font-size: 15px;
  }
  .footer-menu a:hover{
    text-decoration: none;
    color: #ccc;
  }


  /* popup section */
  #popupContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  #popupContent {
    height: 120px;
    background-color: #333;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    animation: popup 0.3s ease-in-out;
  }
  #popupContent h3{
      color: #fff;
  }

  #closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }
  
  #searchWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  
  #searchInput {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    width: 420px;
  }
  
  #searchButton {
    padding: 10px;
    background-color: #fff;
    color: #222;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  @keyframes popup {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @media screen and (max-width: 560px) {
    .tab-container .tab{
      flex-direction: column;
      padding: 10px;
    }
    .tab-container img{
      height: 30px;
    }
    .tab-container span{
      font-size: 14px;
      text-align: center;
    }
    #searchInput {
      width: 300px;
    }
    .my_row{
      grid-template-columns:  auto;
  }
    .my_row2{
      grid-template-columns:  auto;
      padding: 20px 10px!important;
  }
  .help_que .wrapper{
    padding: 30px 10px!important;
  }
  .cookies_section{
    padding: 30px 10px!important;
   }
  }
 
  @media screen and (max-width: 500px) {
    .header{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .header .logo{
       margin-bottom: 5px;
    }
    .header .menu{
      padding: 0px;
      display: flex;
      justify-content: space-between;
    }
    .header .menu1{
      padding: 0px;
      margin: 0;
    }
    .header .menu2{
      padding: 0px;
      margin: 0;
    }
    .header .menu .menu-item{
      margin: 5px;
    }
  }

  @media screen and (max-width: 400px) {
    .footer-menu{
      padding: 0px;
      margin: 2px;
    }
    #searchInput {
      width: 200px;
    }
  }

