body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
  color: #fff;
}

a img{
padding: 10px;
border-radius: 50px;
}




.watch{
display: flex;
overflow-x: scroll;
margin-left: 10px;
}


header {
  background: #1c1c1c;
  padding: 15px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #04f3fc;
}

.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 500px;
  background: #000;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.details h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #04f3fc;
}

.details p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

.buttons {
  display: flex;
  float: left;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.btn-download {
  background: white;
  color: black;
}


.btn-download:hover {
  background: aqua;
}


/* 📱 Mobile view (max 600px) */
@media (max-width: 600px) {
  header {
    font-size: 20px;
    padding: 10px;
  }
  .video-container {
  position: relative;
  width: 100%;
  height: 300px;
  background: #000;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.4);
}

a img{
padding: 10px;
border-radius: 50px;
}




.watch{
display: flex;
overflow-x: scroll;
margin-left: 5px;
}
  .container {
    padding: 3px;
  }
  .details h2 {
    font-size: 22px;
  }
  .details p {
    font-size: 14px;
  }
  .buttons {
    display: flex;
    float: none;
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 40%;
    text-align: center;
    font-size: 14px;
    
  }
}

/* 📱📖 Tablet view (601px - 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  header {
    font-size: 22px;
  }
  
a img{
padding: 10px;
border-radius: 50px;
}




.watch{
display: flex;
overflow-x: scroll;
margin-left: 5px;
}
  .details h2 {
    font-size: 24px;
  }
  .details p {
    font-size: 15px;
  }
  .btn {
    font-size: 15px;
    padding: 10px 16px;
  }
}