.lq {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(1px);
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.3),
    inset -2px -2px 2px 1px rgba(255, 255, 255, 0.3), 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.5);
  cursor: pointer;
}

.gl {
  backdrop-filter: url(#filter);
  -webkit-backdrop-filter: blur(1px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #393837;
    color: #ddd;
}

.game-overlay {
  background: rgba(0, 0, 0, 0.1);
  position: fixed;
  inset: 0;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.game-overlay.hidden {
  display: none;
}

.game-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 14px;
  padding: 20px;
  position: relative;
  animation: zoomIn .25s ease;
}

@keyframes zoomIn {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.game-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 15px 0;
}

.game-gallery img {
  height: 140px;
  border-radius: 10px;
  flex-shrink: 0;
}

.BG {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(./wallpaperflare.com_wallpaper.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -10;
}

.form {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 28px;
  z-index: 999;
}

.filter {
  position: relative;
  border-radius: 50px;
  width: 200px;
  background: rgba(255,255,255,0.18);
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  padding-right: 14px;
}

.radio-group {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
}

.Menu {
    position: fixed;
    top: 0;
    padding: 10px;
    width: 100%;
    z-index: 999;
    text-align: center;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}

.Menu .Icon {
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 10px;
}

.Menu a {
    text-decoration: none;
}
/* .Menu .Icon:nth-child(1) {
    background-color: rgb(0, 183, 255);
}
.Menu .Icon:nth-child(2) {
    background-color: rgb(0, 183, 255);
}
.Menu .Icon:nth-child(4) {
    background-color: rgb(45, 143, 0);
} */

.VideoBG {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: -1;
}

.VideoBG video {
    min-height: 100vh;
    min-width: 100%;
}

.Hidden {
    display: none;
}

.Head {
    padding: 10px;
    background-color: #000000;
}

.Head #TimeNow {
    color: #fff;
    text-transform: uppercase;
}

.Container {
    padding: 8px;
}

.BoxSearch {
    background: rgba(255,255,255,0.11);
    color: #fff;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.search {
  display: flex;
  align-items: center;
  height: 50px;
  border-radius: 23px;
  padding: 0 6px;
}

.search input {
  color: #fff;
  display: none;
  font-size: 16px;
  transition: all 0.35s ease;
}

.search.active input {
  width: 125px;
  display: block;
  opacity: 1;
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(1px);
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.3),
    inset -2px -2px 2px 1px rgba(255, 255, 255, 0.3), 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.5);
  cursor: pointer;
}

.search button {
  width: 50px;
  height: 50px;
  margin-left: 5px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

input[type="radio"] {
    display: none;
}

label {
    font-size: 18px;
    font-weight: bold;
    gap: 5px;
    padding: 5px;
    background: transparent;
    border-radius: 40px;
    cursor: pointer;
}

input[type="radio"]:checked+label {
    background-color: #2196F3;
    color: #fff;
}

.app-list {
    width: 100%;
    padding-bottom: 80px;
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}
.no-data {
    text-align: center;
    padding: 10px;
    font-size: 20px;
    margin: 10px;
    border-radius: 16px;
    margin-top: 120px;
}

.scroll-text {
  overflow-x: auto;
  overflow-y: auto;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3em;
  max-height: calc(1.3em * 2);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

#scroll-text::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.5)
  );
}

.scroll-text::-webkit-scrollbar {
  height: 6px;
}
.scroll-text::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.35);
  border-radius: 10px;
}
.scroll-text::-webkit-scrollbar-track {
  background: transparent;
}


.radio-group::-webkit-scrollbar {
    height: 6px;
}
 
.radio-group::-webkit-scrollbar-track {
    background: transparent;
}
 
.radio-group::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.35);
    border-radius: 10px;
}
 
.radio-group::-webkit-scrollbar-corner {
    background: transparent;
}
 
.radio-group {
    scrollbar-width: thin;
}
 
.radio-group {
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.App {
    padding: 8px;
    border-radius: 24px;
    margin: 10px;
    background: rgba(255,255,255,0.09);
}

.App .InfoApp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding: 6px;
}

.App .InfoApp .Icon img {
    height: 70px;
    width: 70px;
    border-radius: 12px;
    display: block;
}

.InfoApp .Info {
    display: flex;
    gap: 8px;
}

.InfoApp .Info h1 {
    color: #fff;
    font-size: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.InfoApp .Info p {
    margin-top: 5px;
    font-size: 14px;
}

.InfoApp .Download {
    margin: 0 20px;
}

.InfoApp .Download button {
    color: #000000;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    padding: 2px;
}

.App .More {
    text-align: center;
    display: flex;
    justify-content: space-around;
    margin-top: 6px;
}

@media only screen and (min-width: 900px) {
    .VideoBG {
        display: none;
    }

    .Container {
        margin: 20px;
    }

    .app-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter {
      width: 595px;
    }
    
    .radio-group {
    /*  overflow: hidden; */
    }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: flex-start;
  justify-content: center;
  padding: 20px 0;
  overflow-y: auto;
}

.modal-content {
  background-color: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 960px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #ccc;
  cursor: pointer;
}
.close:hover { color: #fff; }

.app-header { display: flex; align-items: center; margin-bottom: 30px; gap: 25px; }
.app-icon-large { width: 140px; height: 140px; border-radius: 28px; box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.app-header-info h1 { margin: 0; font-size: 36px; color: #fff; }
.developer { color: #aaa; font-size: 18px; margin: 8px 0; }
.get-btn { background: #0d89ff; color: #fff; border: none; padding: 14px 40px; border-radius: 30px; font-size: 20px; cursor: pointer; font-weight: bold; }

.screenshots-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin: 40px 0;
  padding-bottom: 15px;
}
.screenshots-container img {
  height: 580px;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.screenshots-container::-webkit-scrollbar { height: 10px; }
.screenshots-container::-webkit-scrollbar-thumb { background: #555; border-radius: 5px; }

.description-section, .whatsnew-section, .information-section { margin-bottom: 50px; color: #eee; }
.description-section h2, .whatsnew-section h2, .information-section h2 { font-size: 24px; margin-bottom: 15px; color: #fff; }
.description-section p, .whatsnew-section p { white-space: pre-line; line-height: 1.7; font-size: 17px; }

.info-table { width: 100%; border-collapse: collapse; font-size: 17px; }
.info-table td { padding: 14px 0; border-bottom: 1px solid #333; }
.info-table td:first-child { width: 40%; color: #aaa; font-weight: bold; }
.info-table td:last-child { color: #fff; }

@media (max-width: 768px) {
  .app-header { flex-direction: column; text-align: center; }
  .app-icon-large { margin-bottom: 20px; }
  .screenshots-container img { height: 420px; }
  .modal-content { padding: 20px; border-radius: 15px; }
  .app-header-info h1 { font-size: 28px; }
}