:root {
    --bg: #020409;
    --panel: #0d1117;
    --green: #00ff9c;
    --border: #1f6feb;
}

body {
    margin: 0;
    padding: 20px;
    background: var(--bg);
    color: var(--green);
    font-family: "JetBrains Mono", monospace;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h1 { font-size: 20px; }

select {
    background: var(--panel);
    color: var(--green);
    border: 1px solid var(--border);
    padding: 6px;
}

.albums {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.album {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.album img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.album h2 {
    margin: 0;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid var(--border);
}

/* Lightbox Styles */
#lightbox {
    display: none;
    position: fixed;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background: rgba(2,4,9,0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

#lightbox img, #lightbox video {
    max-width: 90%;
    max-height: 80%;
    margin: 10px 0;
    border: 2px solid #00ff9c;
    border-radius: 6px;
}

#lightbox button {
    background: #0d1117;
    color: #00ff9c;
    border: 1px solid #1f6feb;
    padding: 6px 12px;
    cursor: pointer;
    margin-top: 12px;
    font-family: monospace;
}

/* Password overlay */
#password-overlay {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: #020409;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    flex-direction: column;
}

#password-box {
    background:#0d1117;
    padding:40px;
    border:2px solid #1f6feb;
    border-radius:8px;
    text-align:center;
}

#password-box input {
    padding:10px;
    font-size:16px;
    margin-top:12px;
    width:200px;
    border:1px solid #1f6feb;
    border-radius:4px;
    background:#020409;
    color:#00ff9c;
}

#password-box button {
    margin-top:12px;
    padding:10px 16px;
    border:1px solid #1f6feb;
    background:#0d1117;
    color:#00ff9c;
    cursor:pointer;
}
