/* Skill Bar (Left Side) */
.skill-bar {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.skill-slot {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00f0ff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'share tech mono', monospace;
    box-shadow: 0 0 10px #00f0ff;
    transition: transform 0.1s, box-shadow 0.2s;
    overflow: visible;
    /* Changed from hidden so the bottom dots are visible */
}

.skill-slot.active {
    box-shadow: 0 0 20px #ff0099, inset 0 0 10px #ff0099;
    border-color: #ff0099;
    transform: scale(1.1);
}

.skill-slot.cooldown {
    border-color: #555;
    box-shadow: none;
    opacity: 0.7;
}

.skill-slot .icon {
    font-size: 24px;
    margin-bottom: 4px;
    text-shadow: 0 0 5px currentColor;
}

.skill-slot .key {
    font-size: 10px;
    color: #00f0ff;
    border: 1px solid #00f0ff;
    padding: 1px 4px;
    border-radius: 3px;
    background: rgba(0, 240, 255, 0.2);
}

.cooldown-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* Grows up */
    background: rgba(0, 0, 0, 0.7);
    transition: height 0.1s linear;
    pointer-events: none;
    border-radius: inherit;
    /* Keep the corners rounded without clipping parent */
}

/* Stock dots for Time Warp */
.skill-stocks {
    position: absolute;
    bottom: -15px;
    /* Place just below the skill icon */
    display: flex;
    gap: 4px;
}

.stock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #222;
    /* Empty state */
    border: 1px solid #00f0ff;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.stock-dot.charged {
    background-color: #00f0ff;
    box-shadow: 0 0 8px #00f0ff;
}