.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: 680px;
    }
    
    .radio-group {
    /*  overflow: hidden; */
    }
}

        .supporters-container {
            position: relative;
            max-width: 900px;
            width: 100%;
            margin: 40px auto;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            padding: 30px;
            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);
            -webkit-backdrop-filter: blur(1px);
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
            margin: 0 auto;
            overflow: hidden;
            border: 2px solid #d2691e;
        }

        /* Header */
        .container-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
        }

        .header-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8b4513, #d2691e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 36px;
            box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .container-header h3 {
            color: #8b4513;
            font-size: 28px;
            font-weight: 800;
            margin: 0 0 10px 0;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .container-header p {
            color: #a0522d;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .coffee-price-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 69, 19, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            color: #8b4513;
            font-size: 14px;
            font-weight: 500;
        }

        .coffee-price-note i {
            color: #d2691e;
        }

        /* Danh sách */
        .supporters-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .supporter-item {
            display: flex;
            align-items: center;
            padding: 20px;
            margin-bottom: 15px;
            backdrop-filter: blur(3px);
            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);
            -webkit-backdrop-filter: blur(3px);
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid #d2691e;
            box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
        }

        .supporter-item:hover {
            transform: translateY(-5px);
        }

        /* Vị trí */
        .position {
            min-width: 45px;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-weight: 800;
            font-size: 18px;
            margin-right: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .position-1 {
            background: linear-gradient(135deg, #ffd700, #ffa500);
            color: #8b6500;
            border: 2px solid #ffd700;
        }

        .position-2 {
            background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
            color: #505050;
            border: 2px solid #c0c0c0;
        }

        .position-3 {
            background: linear-gradient(135deg, #cd7f32, #a0522d);
            color: white;
            border: 2px solid #cd7f32;
        }

        .position-other {
            background: linear-gradient(135deg, #f5deb3, #deb887);
            color: #8b4513;
            border: 2px solid #deb887;
        }

        /* Avatar */
        .avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 4px 10px rgba(139, 69, 19, 0.2);
        }

        /* Thông tin */
        .supporter-info {
            flex: 1;
            min-width: 0;
        }

        .supporter-name {
            font-size: 18px;
            font-weight: 700;
            color: #8b4513;
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .amount-info {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 8px;
        }

        .amount-label {
            font-size: 14px;
            color: #a0522d;
            font-weight: 500;
        }

        .amount {
            font-weight: 800;
            font-size: 20px;
            color: #27ae60;
            background: rgba(39, 174, 96, 0.1);
            padding: 6px 12px;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .coffee-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 6px 12px;
            background: rgba(210, 105, 30, 0.1);
            border-radius: 8px;
            width: fit-content;
        }

        .coffee-icon {
            color: #8b4513;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .coffee-icon.animate-coffee {
            animation: coffeeSteam 1.5s ease-in-out;
        }

        @keyframes coffeeSteam {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .coffee-count {
            font-size: 14px;
            font-weight: 600;
            color: #8b4513;
        }

        /* Nút ủng hộ */
        .donate-btn-container {
            margin-top: 30px;
            text-align: center;
        }

        .donate-btn {
            background: linear-gradient(135deg, #8b4513, #d2691e);
            color: white;
            border: none;
            padding: 20px 35px;
            font-size: 20px;
            font-weight: 700;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-width: 250px;
            box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .donate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(139, 69, 19, 0.5);
            background: linear-gradient(135deg, #a0522d, #8b4513);
        }

        .donate-btn:active {
            transform: translateY(0);
        }

        .donate-btn i {
            font-size: 22px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Responsive */
        @media (max-width: 640px) {
            .supporters-container {
                padding: 20px;
                margin: 0 10px;
            }
            
            .header-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
            
            .container-header h3 {
                font-size: 24px;
            }
            
            .supporter-item {
                padding: 16px;
                flex-direction: column;
                text-align: center;
            }
            
            .position {
                margin-right: 0;
                margin-bottom: 10px;
                order: -1;
            }
            
            .avatar {
                margin-right: 0;
                margin-bottom: 10px;
                order: -2;
            }
            
            .supporter-info {
                width: 100%;
            }
            
            .amount-info, .coffee-info {
                justify-content: center;
            }
            
            .amount {
                font-size: 18px;
                padding: 5px 10px;
            }
            
            .donate-btn {
                padding: 18px 25px;
                font-size: 18px;
                width: 100%;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .supporter-item {
                flex-direction: column;
            }
            
            .position, .avatar {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }

.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; }
}