body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 600px;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

header p { 
    color: #888; 
    margin-bottom: 30px; 
}

#reader { 
    width: 100%; 
    border-radius: 8px; 
    overflow: hidden; 
    background: #000; 
}

/* Force hide class */
.hidden { 
    display: none !important; 
}

#start-camera {
    background-color: #fff; 
    color: #000; 
    border: none; 
    padding: 15px 40px;
    font-size: 18px; 
    font-weight: bold; 
    border-radius: 30px; 
    cursor: pointer;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 10px;
}

#video-container video { 
    width: 100%; 
    border-radius: 4px; 
    display: block;
}

.video-nav { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-top: 25px; 
}

#close-video {
    background: transparent; 
    border: 1px solid #444; 
    color: #888;
    padding: 10px 20px; 
    cursor: pointer; 
    font-size: 13px; 
    border-radius: 20px;
}

/* SUBTLE SEE ALL BUTTON */
.btn-see-all {
    display: inline-block;
    margin-top: 15px;
    color: #444; 
    text-decoration: none;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 8px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
}
.btn-see-all:hover { 
    color: #888; 
    border-color: #333; 
}

/* GALLERY STYLES */
.gallery-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.gallery-feed video {
    width: 100%;
    max-width: 500px;
    border-radius: 2px;
}