/* Launchpad Navigation Arrows */
.lp-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    user-select: none;
}

.lp-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.lp-prev {
    left: 20px;
}

.lp-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lp-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .lp-prev { left: 10px; }
    .lp-next { right: 10px; }
}

/* Ensure Dots are visible */
.lp-pagination {
    position: absolute;
    bottom: 80px; /* Moved up to avoid blocking dock */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10002;
}

.lp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.lp-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px white;
}
