/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
}

/* Show scrollbar thumb only when hovering over the scrollable element */
*:hover::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8 !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Game Card Hover Effect (Zoom In Image) */
.game-card-img {
    transition: transform 0.5s ease-in-out;
}

.game-card:hover .game-card-img {
    transform: scale(1.1);
}

/* Modal Hidden State */
.modal-hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-show {
    opacity: 1;
    pointer-events: auto;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in-up 0.4s ease-out forwards;
}

/* ==========================================
   🎨 BUBBLE LOGO STYLES
   ========================================== */
.logo-nook {
    color: #5ecaf4;
    -webkit-text-stroke: 2.5px #026b9a;
    text-shadow: 0px 4px 0px #026b9a;
}

.logo-nick {
    color: #f98db5;
    -webkit-text-stroke: 2.5px #c81e64;
    text-shadow: 0px 4px 0px #c81e64;
}

.logo-sub {
    color: #026b9a;
    -webkit-text-stroke: 1px #026b9a;
    text-shadow: none;
}

/* ==========================================
   Responsive Banner Utility (Auto Aspect Ratio)
   ========================================== */
.banner-responsive {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-responsive img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: cover;
}