/* Base Utilities */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* Modifiers Badge */
.mod-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid #333;
    color: #555;
    font-size: 0.875rem;
    transition: all 0.2s;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mod-badge.active-mod {
    border-color: #00FFFF;
    color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Property Cards */
.prop-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.prop-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.prop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.prop-val {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    truncate: true;
}

.prop-desc {
    font-size: 0.75rem;
    color: #555;
    margin-top: auto;
}

.btn-copy {
    opacity: 0;
    color: #888;
    transition: all 0.2s;
}

.prop-card:hover .btn-copy {
    opacity: 1;
}

.btn-copy:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Virtual Keyboard */
.v-key {
    background: #1a1a1a;
    border: 1px solid #333;
    border-bottom-width: 3px;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    transition: all 0.1s;
    user-select: none;
}

.v-key.active {
    background: #FF00FF;
    border-color: #FF00FF;
    color: white;
    border-bottom-width: 1px;
    transform: translateY(2px);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* History Item */
.h-item {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
}