:root {
    --bg-color-deep: #121212;
    --bg-color-light: #1c1c1c;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-hero: #f5f5f5;
    --accent-color: #58a6ff;
    --accent-hover: #79b8ff;
    --border-color: #282828;
    --blurb-bg: rgba(28, 28, 28, 0.5);
    --tag-master-bg: #4a90e2;
    --tag-multis-bg: #f5a623;
    --tag-stems-bg: #bd10e0;
    --tag-remix-bg: #50e3c2; 
    --font-family: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: radial-gradient(circle at top, var(--bg-color-light), var(--bg-color-deep) 25%);
    font-family: var(--font-family);
    color: var(--text-secondary);
    padding: 120px 20px 100px 20px;
    min-height: 100vh;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-color-deep); }
::-webkit-scrollbar-thumb { background-color: var(--border-color); border-radius: 10px; border: 2px solid var(--bg-color-deep); }
::-webkit-scrollbar-thumb:hover { background-color: #444; }

.site-nav {
    position: fixed; top: 0; left: 0; width: 100%;
    background-color: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    display: flex; justify-content: center; align-items: center;
    padding: 0 20px; border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}
.site-nav a {
    color: var(--text-secondary); text-decoration: none; font-weight: 500;
    font-size: 1rem; padding: 20px;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--text-primary); }
.site-nav a.active { color: var(--text-primary); border-bottom-color: var(--accent-color); }

.site-container { width: 100%; max-width: 1000px; display: flex; flex-direction: column; align-items: center; margin: 0 auto; }

.hero-section { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.site-logo { max-width: 40px; height: auto; margin-bottom: 20px; animation: fade-in-up 0.6s ease-out forwards; }
.hero-title { font-size: 3.5rem; font-weight: 700; color: var(--text-hero); letter-spacing: -1.5px; margin-bottom: 16px; background: linear-gradient(135deg, #ffffff, #b0b0b0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: fade-in-up 0.6s ease-out 0.1s forwards; opacity: 0; }
.hero-subtitle { font-size: 1.1rem; font-weight: 400; color: var(--text-secondary); max-width: 550px; line-height: 1.6; animation: fade-in-up 0.6s ease-out 0.3s forwards; opacity: 0; }

.album-list { width: 100%; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 50px 30px; }
.album-item { perspective: 1000px; opacity: 0; animation: fade-in-up 0.5s ease-out forwards; animation-delay: var(--animation-delay, 0s); }
.album-art-container { position: relative; width: 100%; border-radius: 12px; overflow: hidden; transform-style: preserve-3d; transition: transform 0.2s ease-out, box-shadow 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.album-item:hover .album-art-container { box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.album-art { display: block; width: 100%; height: auto; border-radius: 12px; }
.album-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%); opacity: 0; transition: opacity 0.4s ease; }
.album-item:hover .album-overlay, .album-item:focus-within .album-overlay { opacity: 1; }
.album-blurb { width: 100%; padding: 12px; border-radius: 8px; background: var(--blurb-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.album-item:hover .album-blurb, .album-item:focus-within .album-blurb { transform: translateY(0); }
.blurb-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.blurb-title { color: var(--text-primary); font-size: 1.1rem; font-weight: 600; }
.blurb-tag { font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; color: #fff; text-transform: uppercase; }
.blurb-tag.master { background-color: var(--tag-master-bg); }
.blurb-tag.multitracks { background-color: var(--tag-multis-bg); }
.blurb-tag.stems { background-color: var(--tag-stems-bg); }
.blurb-tag.remix { background-color: var(--tag-remix-bg); } 
.blurb-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.action-btn { flex: 1; display: flex; justify-content: center; align-items: center; height: 36px; background: rgba(255, 255, 255, 0.1); border: none; border-radius: 6px; cursor: pointer; transition: background-color 0.2s ease; padding: 0; color: var(--text-primary); }
.action-btn:hover, .action-btn:focus { background: rgba(255, 255, 255, 0.2); outline: none; }
.action-btn svg { width: 20px; height: 20px; fill: var(--text-primary); transition: transform 0.2s ease; }
.action-btn:hover svg { transform: scale(1.1); }
.play-btn .icon-pause { display: none; }
.play-btn.playing .icon-play { display: none; }
.play-btn.playing .icon-pause { display: block; }
.play-btn.playing { background-color: var(--accent-color) !important; }
.action-btn-placeholder { grid-column: 1; }
.blurb-actions a.action-btn { grid-column: 2; }

#vault-section-container { width: 100%; display: flex; flex-direction: column; align-items: center; padding: 20px 0; }
#vault-image-wrapper { position: relative; width: 100%; max-width: 700px; aspect-ratio: 1080 / 1920; margin: 25px auto 0; border-radius: 8px; overflow: hidden; }
#vault-entry, #vault-main, #vault-animation { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
#vault-closed-img, #vault-open-bg, #vault-animation { width: 100%; height: 100%; object-fit: cover; }
#vault-lock-hotspot { position: absolute; cursor: pointer; top: 41.75%; left: 38.9%; width: 22.2%; height: 12.5%; }
.vault-prompt { line-height: 1.5; color: var(--text-secondary); font-size: 0.9rem; letter-spacing: 1px; margin-top: 25px; }
.hidden { display: none !important; }
.hotspot { position: absolute; cursor: pointer; }

#hotspot-1 { top: 67.2%; left: 75.5%; width: 4.6%; height: 12%; }
#hotspot-2 { top: 67.2%; left: 70.4%; width: 4.6%; height: 12%; }
#hotspot-3 { top: 67.2%; left: 65.3%; width: 4.6%; height: 12%; }
#hotspot-4 { top: 67.2%; left: 60.2%; width: 4.6%; height: 12%; }
#hotspot-5 { top: 67.2%; left: 55.1%; width: 4.6%; height: 12%; }
#hotspot-6 { top: 67.2%; left: 50.0%; width: 4.6%; height: 12%; }
#hotspot-7 { top: 67.2%; left: 44.9%; width: 4.6%; height: 12%; }
#hotspot-8 { top: 67.2%; left: 39.8%; width: 4.6%; height: 12%; }
#hotspot-9 { top: 67.2%; left: 34.7%; width: 4.6%; height: 12%; }
#hotspot-10 { top: 67.2%; left: 29.6%; width: 4.6%; height: 12%; }
#hotspot-11 { top: 67.2%; left: 24.5%; width: 4.6%; height: 12%; }
#hotspot-12 { top: 67.2%; left: 19.4%; width: 4.6%; height: 12%; }
#hotspot-13 { top: 67.2%; left: 14.3%; width: 4.6%; height: 12%; }

#vault-tooltip {
    position: fixed; display: none; background-color: var(--bg-color-deep); color: var(--text-primary);
    border: 1px solid var(--border-color); border-radius: 6px; padding: 10px 15px;
    font-size: 0.9rem; pointer-events: none; z-index: 100; text-align: center;
    backdrop-filter: blur(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translate(-50%, 20px);
}
#vault-tooltip h4 { margin: 0; font-size: 1rem; font-weight: 600; }
#vault-tooltip p { margin: 0; font-size: 0.85rem; color: var(--text-secondary); }
.promo-title { color: #888888; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 4px; line-height: 1.5; }
.divider { width: 100%; border: 0; height: 1px; background-color: var(--border-color); margin: 80px 0; }

@keyframes fade-in-up{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,.7);backdrop-filter:blur(5px);display:flex;justify-content:center;align-items:center;z-index:1001;opacity:0;pointer-events:none;transition:opacity .3s ease}
.modal-overlay.visible{opacity:1;pointer-events:auto}
.modal-content{position:relative;background:var(--bg-color-light);color:var(--text-secondary);padding:30px 40px;border-radius:12px;max-width:550px;width:90%;border:1px solid var(--border-color);transform:scale(.95);transition:transform .3s ease}
.modal-overlay.visible .modal-content{transform:scale(1)}
.modal-content h3{color:var(--text-primary);font-size:1.5rem;margin-bottom:20px;text-align:center}
.modal-content p{line-height:1.7;margin-bottom:25px;text-align:center}
.modal-highlight{color:var(--accent-hover);font-weight:500}
.modal-button{display:block;margin:0 auto;background-color:var(--accent-color);color:#fff;border:none;padding:12px 30px;font-family:var(--font-family);font-size:1rem;font-weight:600;border-radius:8px;cursor:pointer;transition:background-color .2s ease}
.modal-button:hover{background-color:var(--accent-hover)}
.modal-close-btn{position:absolute;top:10px;right:15px;background:none;border:none;color:var(--text-secondary);font-size:2rem;line-height:1;cursor:pointer;transition:color .2s ease,transform .2s ease}
.modal-close-btn:hover{color:var(--text-primary);transform:rotate(90deg)}
#info-modal-body{text-align:left}
#info-modal-body h4{color:var(--text-primary);font-size:1.1rem;font-weight:600;margin-top:20px;margin-bottom:8px;padding-bottom:5px;border-bottom:1px solid var(--border-color)}
#info-modal-body p{text-align:left;font-size:.95rem;margin-bottom:0}
#info-modal-body h4:first-child{margin-top:0}
@media (max-width:768px){body{padding-top:100px}.hero-title{font-size:2.5rem}.album-list{gap:30px 20px}.divider{margin:60px 0}}

body {
    
    padding-bottom: 180px;
}

.audio-player-bar {
    position: fixed;
    bottom: 20px;
    left: 50px;
    right: 50px;
    width: auto;
    background-color: rgba(28, 28, 28, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(150%);
    transition: transform 0.4s ease-out;
}
.audio-player-bar.visible {
    transform: translateY(0);
}
.now-playing-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 20px;
}
.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
}
.volume-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-secondary);
}

#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 150px;
    height: 4px;
    background: #444;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}
#volume-slider:hover { opacity: 1; }
#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--text-primary);
    cursor: pointer;
    border-radius: 50%;
}
#volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--text-primary);
    cursor: pointer;
    border-radius: 50%;
    border: none;
}