/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1E1E2C; /* dark */
}
::-webkit-scrollbar-thumb {
    background: #FF4B4B; /* primary */
    border-radius: 10px;
}

/* Base Styles */
body {
    -webkit-tap-highlight-color: transparent; /* Remove mobile click highlight */
}

/* Animations */
@keyframes slideLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.vip-glow {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.toast {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    z-index: 9999;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
}

/* Chat bubble styling for Phaser */
.chat-bubble {
    background: white;
    color: black;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    position: relative;
    max-width: 200px;
    word-wrap: break-word;
    text-align: center;
}
.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
}
