body {
  background-image: url('https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRIepEkJiK90XL3olE5b1YM2ABEU2Tn4yVUpx9_pmN-ExvyEUvu');
  background-size: cover;
  font-family: sans-serif;
}

h1 {
  color: rgb(220,220,220);
  font-size: 26px;
  font-family: sans-serif;
  margin-top: 16px;
}

h1:a {
  text-decoration: none;
}

h2:a {
  text-decoration: none;
}

h2 {
  color: rgb(220,220,220);
  font-size: 20px;
  font-family: sans-serif;
}

.header {
  display: flex;
  gap: 40px;
  padding-left: 45px;
  padding-right: 300px;
  background-color: rgb(27, 4, 42);
  border-radius: 20px;
  padding-top: 2px;
}

img {
  border-radius: 22px;
  width: 210px;
  min-height: 210px;
  transition: transform 1s, filter 3s, all 2s;
  filter: brightness(85%);
}

img:hover{
  transform: translate(0, -2.5px);
  transition: transform 1s, filter 1s, all 1s;
  filter: brightness(100%);
  box-shadow: 7px 7px 4px rgba(27, 4, 40, 0.5);
}

img:active {
  transition: 0.1s;
  filter: brightness(75%);
}

hr {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(80,60,70,0), rgb(80,60,70), rgba(80,60,70,0));
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(80,60,70,0.5);
}

p {
  font-family: Arial;
  font-size: 24px;
  color: white;
  text-shadow: 0px 0px 0.5px rgb(200,200,200);
  padding-left: 15px;
  margin-left: 25px;
}

.game-iframe {
  position: relative;
}

iframe {
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  padding-bottom: 55px;
  width: 780;
  margin-left: 20px;
}

.fulscreen {
  position: absolute;
  z-index: 99;
}

footer {
  background-color: rgba(66,61,61,0.1);
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-top: 5px;
  border-radius: 200px;
  text-align: center;
  margin-right: 45px;
}

.center {
  margin-top: 155px;
  text-align: center;
}

.purple {
  color: rgb(141, 84, 171);
  text-shadow: 0px 0px 4px rgba(141,84,171,0.4);
}

.imgs {
  margin-left: 60px;
  margin-top: 25px;
}

.fixed-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  font-family: sans-serif;
  background-color: rgba(155, 35, 185, 0.702);
  color: #fff;
  padding: 10px;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 30px;
  width: 100%;
}

.current-time {
  margin-right: 5%;
  color: rgb(45,20,55,0.851);
  font-size: 20px;
  box-shadow: 0.67px 1px 1.2px rgb(50,50,50,0.92);
  padding: 5px;
  background-color: rgb(100,50,100,0.45);
  border-radius: 3.5px;
  width: 50px;
}

.item {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  color: black;
  background-color: rgba(240, 255, 240,0.589);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 150px;
  min-width: 150px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.item img {
  width: 135px;
  border-radius: 6px;
}

.item:visited,
.item:hover,
.item:link,
.item:active {
  text-decoration: none;
  color: dark-grey;
}

.search-btn {
  position: absolute;
  display: flex;
  left: 1220px;
}

.cloak-btn {
  position: absolute;
  display: flex;
  left: 1180px;
}

.logo {
  width: 165px;
  margin-left: 425px;
}

.category {
  display: fixed;
  left: 50px;
}

.main-title {
  display: flex;
  gap: 20px;
/* Color day */
  color: purple;
/* Color day */
}

.dropbtn {
  font-size: 20px;
  font-family: sans-serif;
  color: rgb(220, 220, 220);
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(27, 4, 42);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: rgb(220, 220, 220);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {
  background-color: transparent;
}

.movieshows-btn {
  left: 1250px;
}

button {
  color: rgb(220,220,220);
  font-size: 20px;
  font-family: sans-serif;
}

.game-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: rgb(50, 20, 60);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 9999;
}

.game-container:hover .game-title {
  opacity: 1;
}