/*
 * Shared Navigation Styles
 * Used across all game pages for consistent navigation
 */

/* Game Navigation Arrows */
.game-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.game-nav.left {
    left: 20px;
}

.game-nav.right {
    right: 20px;
}

.nav-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.nav-arrow:hover {
    color: #ffd700;
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.nav-arrow .arrow-icon {
    font-size: 2rem;
    line-height: 1;
}

.nav-arrow .game-name {
    font-size: 0.75rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Game Title Badge */
.game-title-badge {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-title-badge .game-icon {
    font-size: 1.5rem;
}

.game-title-badge .game-title {
    color: #ffd700;
    font-weight: bold;
    font-size: 1rem;
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-dot::after {
    content: attr(data-game);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.7rem;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    margin-bottom: 8px;
}

.nav-dot:hover::after {
    opacity: 1;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .game-nav {
        top: auto;
        bottom: 80px;
        transform: none;
    }
    
    .game-nav.left {
        left: 10px;
    }
    
    .game-nav.right {
        right: 10px;
    }
    
    .nav-arrow {
        padding: 10px;
    }
    
    .nav-arrow .arrow-icon {
        font-size: 1.5rem;
    }
    
    .nav-arrow .game-name {
        display: none;
    }
    
    .game-title-badge {
        top: 10px;
        padding: 8px 15px;
    }
    
    .nav-dots {
        bottom: 15px;
        padding: 8px 15px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .game-nav {
        bottom: 70px;
    }
    
    .nav-arrow {
        padding: 8px;
        border-radius: 10px;
    }
    
    .nav-arrow .arrow-icon {
        font-size: 1.2rem;
    }
}
