* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 17px;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 7px;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  border-radius: 30px 0px 0px 30px;
  font-family: 'Roboto Condensed', sans-serif;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.menu li {
  margin: 0;
  padding: 15px 20px;
}

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

.menu a:hover {
  text-decoration: underline;
  color: yellow;
}

.mobile-menu {
  background-color: rgba(0, 0, 0, 0.7);
  font-family: 'Roboto Condensed', sans-serif;
}

.mobile-menu ul {
  .margin-left:0px;
}

.mobile-menu li {
  margin: 0;
  padding: 15px;
  list-style:none;
  border-bottom:1px dashed #999;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
}

.mobile-menu a:hover {
  text-decoration: underline;
  color: yellow;
}

.logo {
  position: fixed;
  top: 0;
  left: 0;
  padding: 7px;
  z-index: 1;
  width:70px;
  height:50px;
}



.btn-ytb{
    background-color: #FF0000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size:91%;
    margin-top:5px;
    text-transform:uppercase;
}


@media screen and (max-width: 600px) {
  .btn-ytb  {
    height: 150px;
    font-size:130%;
  }

}

.w-100{
    width:100% !important;
}


#myVideo {
  right: 0;
  bottom: 0;
  width: 100%; /* Default width for small devices */
  height: auto; /* Allow height to adjust proportionally */
}

@media (min-width: 768px) {
  #myVideo {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  #myVideo {
    position: fixed;
    width: auto; /* Allow width to adjust proportionally */
    height: 100%; /* Full height for small devices */
  }
}

.mainContent {
  position: relative;
  right: 0;
  bottom: 0;
  width:100%;
  min-height: 100vh;
  float:left;
  margin-bottom:20px;
}

.content {
    position: absolute;
    left: 59px;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    bottom: 3%;
    /*border-radius: 13px;*/
    font-family: 'Roboto Condensed', sans-serif;
    max-width: 359px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .content {
        left: 20px;
        top: 10%;
        max-width: 90%;
    }
    
    .m-m{
        margin-top:5px;
        margin-bottom:20px;
        width:100%;
    }
    
    .movie_title_b{
        margin-top:2px;
        width:100%;
    }
    
    .movie_title_b::before {
        content: "";
        display: block;
        height: 3px;
        background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
    }
}

.content h1{
    font-family: 'Roboto Condensed', sans-serif;
}

.content img{
    width:100%;
    height:45vh;
    /*border-radius:5px;*/
}


.review{
	background: rgba(0, 0, 0, 0.5);
	padding: 20px;
	border-radius: 13px;
	font-family: 'Roboto Condensed', sans-serif;
	float:left;
	width:100%;
}



.rating input[type="radio"] {
    display: none;
}
.rating label {
    color: #ddd;
    font-size: 2em;
    padding: 0px 2px;
    display: inline-block;
}
.rating input[type="radio"]:checked + label {
    color: #ffcc00;
}