@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  color: white;
  font-family: "Fira Sans", serif;
  background-color: black;
  margin: 0;
  overflow-x: hidden;
}
h1 {
  font-size: 32px;
  text-align: center;
}
.adbox {
  border: 2px solid #44475a;
  padding: 15px;
  border-radius: 15px;
  background-color: rgba(50, 50, 50, 0.2);
}
.wide {
  width: 500px;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-bottom: 25px;
}
.adbox iframe {
    margin-left: 50%;
    transform: translateX(-50%);
}
select {
  margin-left: 50%;
  margin-bottom: 25px;
  transform: translateX(-50%);
  width: 250px;
  height: 40px;
  border-radius: 10px;
  padding: 5px;
}
.game {
    width: 100vw;
    height: 100vh;
    border: none;
}
/* Style the scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background-color: #2e2e2e; /* Track (background) color */
    border-radius: 10px; /* Round the track edges */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #44475a; /* Thumb (handle) color */
    border-radius: 10px; /* Round the thumb edges */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #6272a4; /* Hover color for the thumb */
  }
  
  ::-webkit-scrollbar-corner {
    background-color: #2e2e2e; /* Color of the corner (where horizontal and vertical scrollbars meet) */
  }
  #content-container {
    position: relative;
    width: 100%;
    height: 500px;
  }
  #content-iframe, #content-video {
    position: absolute;
    width: 95vw;
    height: 100vh;
    border: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  video:fullscreen, video:-webkit-full-screen, video:-moz-full-screen, video:-ms-fullscreen {
    border: none !important;
    border-radius: 0 !important;
  }

  .button {
    padding: 5px 10px;
    background-color: transparent;
    margin-right: 5px;
    display: inline-block;
    border: 2px solid #44475a;
    border-radius: 5px;
    cursor: pointer;
  }
  .button:hover {
    background-color: #44475a;
  }

  .buttons-container {
    margin-bottom: 15px;
    margin-left: 50%;
    transform: translateX(-50%);
    background-color: transparent
  }

  #game-count, #movie-count {
    margin-top: 10px;
  }

  select {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  p {
    text-align: center;
  }
  a {
    all: unset;
  }
  .dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 50%;
    margin-bottom: 25px;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    border-radius: 10px;
    padding: 5px;
    background-color: #2e2e2e;
    border: 2px solid #44475a;
    color: white;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2e2e2e;
    min-width: 230px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    z-index: 1;
    cursor: pointer;
    padding: 10px;
    transform: translateX(-35%);
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: black}

.show {display: block;}

.arrow {
    transition: transform 0.3s;
}

.arrow.open {
    transform: rotate(180deg);
}

.section-title {
    font-weight: bold;
    padding: 8px;
    background-color: black;
    border-radius: 5px;
}
input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  background-color: #2e2e2e;
  border: 2px solid #44475a;
  border-radius: 5px;
}
