:root {
    --bg-color: #050505;
    --primary-color: #00f3ff;
    /* Cyan Neon */
    --secondary-color: #ff0055;
    /* Pink Neon */
    --accent-color: #ccff00;
    /* Lime Neon */
    --text-color: #ffffff;
    --font-main: 'Courier New', Courier, monospace;
    /* Placeholder for a tech font */
}

* {
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    /* Prevent default touch actions like scrolling */
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    /* Mobile aspect ratio constraint on desktop */
    max-height: 900px;
    background: #111;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

/* Layers */
#game-layer,
#ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through by default */
}

#game-layer {
    pointer-events: auto;
    /* Game layer needs interaction */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

#ui-layer {
    pointer-events: none;
    z-index: 10;
}

/* Screens */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.hidden {
    display: none !important;
}

.active {
    opacity: 1;
    pointer-events: auto;
}

/* Typography & Buttons */
h1,
h2 {
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    text-shadow: 0 0 10px var(--primary-color);
}

.glitch-title {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 5px var(--secondary-color);
}

.neon-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.5rem;
    font-family: var(--font-main);
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--primary-color), inset 0 0 10px var(--primary-color);
    transition: all 0.2s;
}

.neon-btn:active {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-color), inset 0 0 20px var(--primary-color);
}

.neon-btn.small {
    padding: 10px 20px;
    font-size: 1rem;
}

.neon-input {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--secondary-color);
    color: white;
    padding: 15px;
    font-family: var(--font-main);
    font-size: 1.2rem;
    margin-bottom: 15px;
    width: 100%;
    outline: none;
    box-shadow: 0 0 5px var(--secondary-color);
    transition: all 0.2s;
}

.neon-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

/* Login Screen */
.login-form {
    display: flex;
    flex-direction: column;
    width: 300px;
    align-items: center;
}

.login-actions {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

/* HUD */
#hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hud-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 70px;
    /* Space for quit button */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.score-container,
.lives-container,
.coins-container {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 5px var(--text-color);
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #333;
}

.coins-container {
    color: var(--accent-color);
}

.lives-container {
    color: var(--secondary-color);
}

.score-container {
    color: var(--primary-color);
}

.timer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #333;
}

#timer-fill {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
    transform-origin: left;
}

/* Quit Button */
#quit-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    /* Above EVERYTHING */
}

.icon-btn {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0055;
    color: #ff0055;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    pointer-events: auto;
    box-shadow: 0 0 10px #ff0055;
}

.icon-btn:hover {
    background: #ff0055;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff0055;
}

.icon-btn:active {
    transform: scale(0.9);
}

/* Transition Screen */
#transition-screen {
    background: var(--primary-color);
    color: #000;
}

#instruction-text {
    font-size: 3rem;
    color: #000;
    text-shadow: none;
    font-weight: 900;
}

/* Microgame Elements */
.tap-target {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--secondary-color);
    transform: translate(-50%, -50%);
    animation: pulse 0.5s infinite alternate;
    cursor: pointer;
}

.swipe-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-color);
}

.swipe-arrow.up {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.swipe-arrow.down {
    transform: translate(-50%, -50%) rotate(90deg);
}

.swipe-arrow.left {
    transform: translate(-50%, -50%) rotate(180deg);
}

.swipe-arrow.right {
    transform: translate(-50%, -50%) rotate(0deg);
}

@keyframes pulse {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.dont-move-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -50%) rotate(-5deg);
    }

    75% {
        transform: translate(-50%, -50%) rotate(5deg);
    }

}

/* All Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 90%;
    max-height: 60%;
    overflow-y: auto;
    padding: 10px;
}

.game-card {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--primary-color);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-card:hover {
    background: var(--primary-color);
    cursor: pointer;
    transition: transform 0.1s, background 0.1s;
}

.game-card:active {
    transform: scale(0.95);
}

.game-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.game-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color), 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Lose Life Animation */
#lose-life-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s;
}

#lose-life-overlay.active {
    opacity: 1;
}

.neon-cross {
    position: relative;
    width: 200px;
    height: 200px;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#lose-life-overlay.active .neon-cross {
    transform: scale(1);
}

.neon-cross::before,
.neon-cross::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 20px;
    background: #ff0055;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff0055, 0 0 40px #ff0055;
}

.neon-cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.neon-cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Practice Result Overlay */
#practice-result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

#practice-result-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.neon-check {
    width: 80px;
    height: 40px;
    border-left: 10px solid #ccff00;
    border-bottom: 10px solid #ccff00;
    transform: rotate(-45deg) translate(10px, -20px);
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 0 10px #ccff00) drop-shadow(0 0 20px #ccff00);
}

.neon-cross-large {
    position: relative;
    width: 150px;
    height: 150px;
}

.neon-cross-large::before,
.neon-cross-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 15px;
    background: #ff0055;
    box-shadow: 0 0 20px #ff0055;
    border-radius: 8px;
}

.neon-cross-large::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.neon-cross-large::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.speed-up-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #ccff00;
    margin-left: 10px;
    filter: drop-shadow(0 0 10px #ccff00);
    animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

/* Skin Card */
.skin-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skin-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.skin-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--preview-primary) 50%, var(--preview-secondary) 50%);
    box-shadow: 0 0 10px var(--preview-primary);
}

.skin-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

/* - - - EFFECTS SYSTEM OVERRIDES - - - */

/* Effect Variables */
:root {
    /* Default Effect (Neon) */
    --effect-border: 2px solid var(--primary-color);
    --effect-glow: 0 0 10px var(--primary-color), inset 0 0 10px var(--primary-color);
    --effect-bg: transparent;
    --effect-text-shadow: 0 0 10px var(--primary-color);
}

/* Effect Classes */
.effect-neon {
    --effect-border: 2px solid var(--primary-color);
    --effect-glow: 0 0 10px var(--primary-color), inset 0 0 10px var(--primary-color);
    --effect-bg: transparent;
    --effect-text-shadow: 0 0 10px var(--primary-color);
}

.effect-metal {
    --effect-border: 2px solid #888;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Lose Life Animation */
#lose-life-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s;
}

#lose-life-overlay.active {
    opacity: 1;
}

.neon-cross {
    position: relative;
    width: 200px;
    height: 200px;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#lose-life-overlay.active .neon-cross {
    transform: scale(1);
}

.neon-cross::before,
.neon-cross::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 20px;
    background: #ff0055;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff0055, 0 0 40px #ff0055;
}

.neon-cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.neon-cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Practice Result Overlay */
#practice-result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

#practice-result-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.neon-check {
    width: 80px;
    height: 40px;
    border-left: 10px solid #ccff00;
    border-bottom: 10px solid #ccff00;
    transform: rotate(-45deg) translate(10px, -20px);
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 0 10px #ccff00) drop-shadow(0 0 20px #ccff00);
}

.neon-cross-large {
    position: relative;
    width: 150px;
    height: 150px;
}

.neon-cross-large::before,
.neon-cross-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 15px;
    background: #ff0055;
    box-shadow: 0 0 20px #ff0055;
    border-radius: 8px;
}

.neon-cross-large::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.neon-cross-large::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.speed-up-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #ccff00;
    margin-left: 10px;
    filter: drop-shadow(0 0 10px #ccff00);
    animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

/* Skin Card */
.skin-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.skin-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.skin-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--preview-primary) 50%, var(--preview-secondary) 50%);
    box-shadow: 0 0 10px var(--preview-primary);
}

.skin-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

/* --- LOGIN & ECONOMY CSS --- */
.neon-input {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--secondary-color);
    color: white;
    padding: 15px;
    font-family: var(--font-main);
    font-size: 1.2rem;
    margin-bottom: 15px;
    width: 100%;
    outline: none;
    box-shadow: 0 0 5px var(--secondary-color);
    transition: all 0.2s;
}

.neon-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 300px;
    align-items: center;
}

.login-actions {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.neon-btn.small {
    padding: 10px 20px;
    font-size: 1rem;
}

.coins-container {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 5px var(--text-color);
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #333;
    color: var(--accent-color);
}

.skin-price {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.skin-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #888;
    z-index: 10;
}

.skin-card.locked {
    opacity: 0.7;
    filter: grayscale(0.8);
    border-color: #555 !important;
    box-shadow: none !important;
}

.skin-card.locked:hover {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 10px var(--accent-color) !important;
    cursor: pointer;
}

/* Checkmark for Selected Skins */
.skin-card.selected::after {
    content: '✔';
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent-color);
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    box-shadow: 0 0 10px var(--accent-color);
    border: 2px solid #fff;
    z-index: 15;
}


/* --- PROGRESSION CSS --- */
.coin-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffd700, 0 0 5px #ff4500 inset;
    text-align: center;
    line-height: 22px;
    font-size: 0;
    /* Hide  char IF we use shape */
    margin-right: 5px;
    border: 1px solid #fff;
}

.level-badge {
    position: absolute;
    top: 55px;
    /* Below HUD Top */
    right: 15px;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 5px var(--primary-color);
}


/* --- PROFILE SCREEN --- */
.profile-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.level-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color), inset 0 0 15px var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.xp-bar-bg {
    width: 100%;
    height: 20px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #555;
}

.xp-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    transition: width 0.5s ease-out;
}

/* --- UNIFORM BUTTONS --- */
.menu-btn {
    width: 250px !important;
    /* Force width for uniform look */
    max-width: 90%;
}


/* --- LARGE BUTTONS --- */
.menu-btn {
    width: 280px !important;
    /* Increased from 250px */
    max-width: 95%;
    font-size: 1.2rem;
    padding: 15px 20px;
}


/* --- FIXES --- */
.skin-card.locked .skin-price {
    /* Ensure visibility behind lock */
    z-index: 11;
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    /* Darken bg to read text */
    padding: 2px 5px;
    border-radius: 4px;
}

/* XP Bar in Menu */
.menu-xp-container {
    display: inline-block;
    width: 100px;
    height: 10px;
    background: #333;
    border: 1px solid #555;
    border-radius: 5px;
    margin-left: 10px;
    position: relative;
    vertical-align: middle;
    overflow: hidden;
}

.menu-xp-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
}

.menu-level-text {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-left: 5px;
    font-weight: bold;
}


/* --- STYLIZED SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 0 10px var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 15px var(--secondary-color);
}


/* --- SOCIAL / FRIENDS --- */
.friend-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid #333;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: all 0.2s;
}

.friend-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.friend-name {
    font-weight: bold;
    color: #fff;
}

.friend-details {
    font-size: 0.8rem;
    color: #aaa;
}

.friend-highscores {
    font-size: 0.7rem;
    color: var(--accent-color);
    margin-top: 5px;
}

#friends-list {
    width: 100%;
    max-height: 400px;
    /* Scrollable list */
    overflow-y: auto;
    margin-bottom: 20px;
}

/* Custom Scrollbar for friends list */
#friends-list::-webkit-scrollbar {
    width: 8px;
}

#friends-list::-webkit-scrollbar-track {
    background: #111;
}

#friends-list::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

#friends-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.share-btn {
    background: #1da1f2;
    /* Twitter Blue-ish */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-main);
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(29, 161, 242, 0.5);
    transition: all 0.2s;
    margin-top: 10px;
}

.share-btn:hover {
    transform: scale(1.05);
    background: #4db5f5;
}

.friend-code-display {
    background: #000;
    border: 1px dashed var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px;
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 10px 0;
    cursor: pointer;
}

.friend-code-display:active {
    background: #220011;
}

/* ENABLE TOUCH SCROLLING FOR MENUS */
.games-grid, #leaderboard-list, #skins-grid, #skins-grid-effects, #friends-list, #profile-bests-list {
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}
