/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  background-color: #111;
  padding: 20px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logo {
  font-size: 50px;
  font-weight: bold;
  color: #F6DCA9; /* Updated theme color */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 10px 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: red; /* Updated theme color */
}

.search-bar {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.search-bar input {
  padding: 8px;
  border: none;
  border-radius: 4px;
  flex: 1;
}

.search-bar button {
  padding: 8px 12px;
  background-color: #F6DCA9; /* Updated theme color */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.hero {
  padding: 50px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #ccc;
}

a {
    text-decoration: none;
    color: white;
}

/* Video Section */

 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 36%; /* 16:9 Aspect Ratio */
  background-color: #000;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.error-message {
  color: #ff4444;
  text-align: center;
  margin-top: 10px;
}

.episodelist {
    display: inline;
    color: #f5dca8;
    margin-left: 5px;
}

.episodelist:hover {
    color: red;
}

.episode-buttons {
  text-align: center;
  margin-top: 20px;
}

.episode-buttons button {
  background-color: #f5dca8; /* Updated theme color */
  color: #000;
  border: none;
  border-radius: 10px 3px 10px 3px;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  font-weight: bold;
}

.episode-buttons button:hover {
  background-color: red; /* Slightly darker shade for hover */
  color: white;
  transform: scale(1.2);
}


.season-buttons {
  text-align: center;
  margin-top: 20px;
}

.epseason{
    text-align: left;
    margin-top: 5px;
    margin-left: 10px;
}

.season-buttons button {
  background-color: darkred; /* Updated theme color */
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  font-weight: bold;
}

.season-buttons button:hover {
  background-color: red; /* Slightly darker shade for hover */
  transform: scale(1.2);
  transition: 0.05s ease-in-out;
}



/* Featured Section */
.featured-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.featured-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.featured-item {
  background-color: #000;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.featured-item img {
  width: 50%;
  border-radius: 8px;
}

.featured-item p {
  margin-top: 10px;
  font-size: 16px;
}

/* Footer */
footer {
    padding: 10px;
    margin-top: 50px;
    background: #1e1e1e;
    text-align: center;
}

footer p {
  margin: 0;
  color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
      list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 10px 0;
  }
  
  
  nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
  
  .btn1 {
      width: 50%;
  }
  

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  /* Add this to hide elements on Android */
  .hide {
    display: none !important;
  }
  
  /* Video Section */
.video-section {
  max-width: 100%%;
  margin: 0px auto;
  padding: 0px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 50.25%; /* 16:9 Aspect Ratio */
  background-color: #000;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
  
}
