body{
    padding: 16px;
}

.other-game-nav-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin: 10px 0;
}

.game-nav-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 281px){
    .game-nav-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.btn-primary {
    font-weight: 700;
    border: 0;
    font-size: 0.75rem;
}

.btn-secondary {
    font-weight: 700;
    border: 0;
    font-size: 0.75rem;
}

.btn-blue {
    font-weight: 700;
    border: 0;
    font-size: 0.75rem;
}

.btn-green {
    font-weight: 700;
    border: 0;
    font-size: 0.75rem;
}

.in-row-nav li{
    list-style-type: none;
}

.in-row-nav li + li:before{
    content: "|";
    margin: 0 10px;
}

.game-nav-container {
    border: 1px solid var(--bs-white);
    border-radius: 10px;
    padding: 10px;
}

.icon-coin{
    background: url(../../image/mobile/icon/Icon-coin.png) center no-repeat;
    width: 32px;
    height: 33px;
}

ul.pagination {
    place-content: center;
}


/* COLOR PART */
.pagination {
    --bs-pagination-color: var(--bs-text-white);
    flex-wrap: wrap;
}

.card-container {
    background-color: var(--bs-gray-800);
}

.card-chat-staff {
    background-color: #4C5169;
}

.btn-primary {
    color: var(--c-primary-btn-color);
    background: var(--c-primary-color);
}

.btn-secondary {
    color: var(--c-secondary-btn-color);
    background: var(--c-secondary-color);
}

.btn-blue {
    color: var(--text-white);
    background: rgba(56, 139, 242, 1);
}

.btn-green {
    color: var(--text-white);
    background: rgba(49, 176, 87, 1);
}

a {
    color: var(--c-primary-color);
}

/* COLOR PART */

/* Download APK Banner */
.apk-download-banner {
    display: block;
    position: relative;
    background: linear-gradient(90deg, #D4AF37 0%, #EDC967 50%, #D4AF37 100%);
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 15px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.apk-download-banner:hover {
    text-decoration: none;
    color: #fff;
}

.me-badge {
    position: absolute;
    top: -25px;
    left: 10px;
    background-color: #FF8C00;
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    animation: bounce 2s infinite;
}

.me-badge .arrow-down {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #FF8C00;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.apk-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.apk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.apk-icon img {
    width: 32px;
    height: 32px;
}

.apk-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apk-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

.new-badge {
    background: linear-gradient(white, #fff0f0);
    color: #FF0000;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    vertical-align: middle;
}

.apk-subtitle {
    font-size: 11px;
    line-height: 1.2;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* Force Mobile Styles for Lite Version */
.lite-version .apk-text {
    flex-direction: column !important;
    align-items: flex-start !important;
}

.lite-version .apk-title {
    font-size: 16px !important;
    margin-bottom: 2px !important;
}

.lite-version .apk-subtitle {
    font-size: 11px !important;
}

.lite-version .new-badge {
    font-size: 10px !important;
}
