/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
    background: #000;
}

.image-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#main-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transition: opacity 0.4s ease-in-out;
    border-radius: 8px;
}

.nav-info {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    z-index: 10;
}

.nav-arrows {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 20px;
}

.nav-arrows button {
    padding: 12px 24px;
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.nav-arrows button:hover:not(:disabled) {
    background: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.nav-arrows button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile touch support */
@media (max-width: 768px) {
    .nav-arrows {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-arrows button {
        width: 200px;
    }
}
