body {
    margin: 0;
    overflow: hidden;
    background-color: #050510;
}
#gallerie-container {
    width: 100vw;
    height: 100vh;
}
.gallery-ui {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    z-index: 10;
    pointer-events: none;
}
.gallery-ui h1 {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}
.gallery-ui p {
    font-family: 'Outfit', sans-serif;
    margin: 5px 0 0 0;
    opacity: 0.8;
}
#item-info {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 10;
}
#item-name {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.8);
    margin-bottom: 8px;
}
#item-desc {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
.back-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.instruction {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    pointer-events: none;
}
