/* --- TIGHT, SINGLE-ROW PRIDE HUB STYLES --- */
.pride-hub-body {
    margin: 0;
    padding: 0;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    background: #000;
    font-family: 'Courier New', Courier, monospace;
}

.pride-hub-body #bg-video { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    z-index: -1; 
    object-fit: cover; 
    opacity: 0.85;
}

/* Top Navigation Bar: Menu on Left, Logo on Right */
.pride-hub-body .nav-top-bar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
}

.pride-hub-body .back-btn { 
    background: #FF00FF; 
    color: #FFF; 
    padding: 10px 20px; 
    text-decoration: none; 
    font-weight: bold; 
    border: 2px solid #FFF; 
    box-shadow: 0 0 10px #FF00FF; 
    border-radius: 4px;
    pointer-events: auto;
}
.pride-hub-body .back-btn:hover { background: #FFF; color: #FF00FF; }

.pride-hub-body .corner-logo {
    width: 140px;
    height: auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 10px;
    border: 2px solid #FF00FF;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    pointer-events: auto;
    animation: rainbow-pulse 5s infinite linear;
}

@keyframes rainbow-pulse {
    0% { filter: hue-rotate(0deg) drop-shadow(0 0 5px #FF00FF); }
    50% { filter: hue-rotate(180deg) drop-shadow(0 0 10px #00FFFF); }
    100% { filter: hue-rotate(360deg) drop-shadow(0 0 5px #FF00FF); }
}

/* Workspace Container wrapped in a cute, highly transparent frosted glass panel */
.pride-hub-body .workspace { 
    position: relative; 
    z-index: 1; 
    padding: 60px 40px 50px 40px; 
    max-width: 1240px;
    margin: 40px auto;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 35px; 
    box-sizing: border-box;
    
    /* Cute transparent box with a harmonious magenta/cyan pride accent tint & blur */
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.35), rgba(10, 25, 35, 0.35));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.pride-hub-body .sparkle-header { 
    text-align: center; 
    color: #fff; 
    font-family: 'Permanent Marker', cursive;
    font-size: 3.5rem; 
    letter-spacing: 2px;
    text-shadow: 0 0 25px #FF00FF, 0 0 40px #00FFFF, 2px 2px 5px rgba(0,0,0,0.8); 
    text-transform: uppercase;
    margin: 10px 0 0 0;
}

.pride-hub-body .hero-banner { 
    width: 100%; 
    max-width: 800px; 
    border: 3px solid #fff; 
    box-shadow: 0 0 25px #FF00FF; 
    border-radius: 8px; 
    height: auto;
}

/* Architect Note */
.pride-hub-body .architect-container { 
    display: flex; 
    gap: 25px; 
    align-items: center; 
    justify-content: center; 
    flex-wrap: wrap; 
    width: 100%;
}
.pride-hub-body .architect-polaroid { 
    background: #fff; 
    padding: 12px; 
    box-shadow: 5px 5px 15px rgba(0,0,0,0.4); 
    transform: rotate(2deg); 
}
.pride-hub-body .architect-polaroid img { width: 180px; display: block; height: auto; }
.pride-hub-body .architect-note { 
    background: #fdfdfd; 
    padding: 25px; 
    width: 460px; 
    max-width: 90%; 
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5); 
    transform: rotate(-1deg); 
    font-family: 'Homemade Apple', cursive; 
    line-height: 28px; 
    border-left: 3px solid #ffaa9f; 
    color: #111;
    border-radius: 4px;
}

/* Video Messages Grid */
.pride-hub-body .video-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; width: 100%; }
.pride-hub-body .vid-wrapper { text-align: center; color: #FFF; background: rgba(0,0,0,0.85); padding: 15px; border: 2px solid #00FFFF; border-radius: 10px; box-shadow: 0 0 15px rgba(0, 255, 255, 0.3); }
.pride-hub-body .vid-wrapper h3 { margin-top: 0; margin-bottom: 8px; color: #FF00FF; font-size: 0.95rem; letter-spacing: 1px; }
.pride-hub-body .vid-box { width: 260px; aspect-ratio: 1 / 1; object-fit: cover; border: 2px solid #FFF; border-radius: 4px; }

/* 4 Songs in a Strict Single Row */
.pride-hub-body .art-wall { 
    display: flex; 
    flex-wrap: nowrap; 
    justify-content: center; 
    gap: 20px; 
    width: 100%; 
    overflow-x: auto;
    padding-bottom: 10px;
}
.pride-hub-body .item { 
    background: rgba(255, 255, 255, 0.95); 
    padding: 12px; 
    border: 3px solid #FF00FF; 
    transition: transform 0.3s, box-shadow 0.3s;
    width: 230px; 
    flex-shrink: 0;
    box-shadow: 6px 6px 0px rgba(0, 255, 255, 0.8); 
    text-align: center; 
    border-radius: 6px; 
    color: #000;
}
.pride-hub-body .item:hover { transform: scale(1.03); box-shadow: 0 0 20px #FFF; z-index: 10; }
.pride-hub-body .item img { border-radius: 4px; margin-bottom: 6px; width: 100%; height: auto; }
.pride-hub-body .item p { font-size: 0.8rem; margin: 6px 0; line-height: 1.2; }

/* Cute Consolidated Signatures Scrapbook Tray */
.pride-hub-body .cute-signatures-tray {
    width: 100%;
    max-width: 900px;
    background: rgba(20, 10, 25, 0.85);
    border: 3px dashed #FF00FF;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
    text-align: center;
    box-sizing: border-box;
}

.signatures-tray-title {
    color: #00FFFF;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.pride-hub-body .signatures-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.pride-hub-body .signature { 
    position: static !important;
    transform: none !important;
    cursor: pointer; 
    color: #FFF; 
    text-shadow: 1px 1px 3px #000; 
    transition: transform 0.2s, color 0.2s; 
    padding: 8px 14px;
    background: rgba(255, 0, 255, 0.25);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 255, 0.6);
}
.pride-hub-body .signature:hover { 
    transform: scale(1.1) !important; 
    color: #00FFFF; 
    background: rgba(0, 255, 255, 0.3); 
    border-color: #00FFFF; 
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); 
}

/* Signature Fonts */
.sig-imani { font-family: 'Caveat', cursive; font-size: 1.5rem; }
.sig-dana { font-family: 'Architects Daughter', cursive; font-size: 1.2rem; }
.sig-emi { font-family: 'Great Vibes', cursive; font-size: 1.7rem; }
.sig-aria { font-family: 'Gochi Hand', cursive; font-size: 1.2rem; }
.sig-lyra { font-family: 'Permanent Marker', cursive; font-size: 1.1rem; }
.sig-taye { font-family: 'Homemade Apple', cursive; font-size: 1.1rem; }
.sig-riku { font-family: 'Sedgwick Ave', cursive; font-size: 1.2rem; }
.sig-amari { font-family: 'Shadows Into Light', cursive; font-size: 1.2rem; }
.sig-caspian { font-family: 'Dancing Script', cursive; font-size: 1.5rem; }
.sig-eunho { font-family: 'Rock Salt', cursive; font-size: 0.9rem; }

/* Resource Hub */
.pride-hub-body .resource-hub {
    background: rgba(0, 0, 0, 0.88); 
    padding: 30px; 
    border: 2px dashed #00FFFF; 
    text-align: center; 
    width: 100%;
    max-width: 900px; 
    border-radius: 12px; 
    color: #FFF; 
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    box-sizing: border-box;
}
.pride-hub-body .resource-hub h2 { color: #FF00FF; font-size: 1.6rem; margin-top: 0; }
.pride-hub-body .resource-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 15px; }
.pride-hub-body .resource-links a { 
    display: inline-block; 
    padding: 10px 18px; 
    background: #FF00FF; 
    color: #FFF; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 6px; 
    border: 2px solid #FFF; 
    transition: all 0.3s;
    font-size: 0.9rem;
}
.pride-hub-body .resource-links a:hover { background: #00FFFF; color: #000; }

.pride-hub-body .stop-audio-btn { 
    background: #FFF; 
    color: #000; 
    border: 3px solid #FF00FF; 
    padding: 12px 25px; 
    font-weight: bold; 
    cursor: pointer; 
    font-size: 1rem; 
    border-radius: 6px; 
}
.pride-hub-body .stop-audio-btn:hover { background: #FF00FF; color: #FFF; }
.pride-hub-body .particle { position: fixed; pointer-events: none; border-radius: 50%; z-index: 9999; }

/* Modal */
.pride-hub-body #note-modal { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    background: rgba(0,0,0,0.85); 
    z-index: 2000; 
    justify-content: center; 
    align-items: center; 
}
.pride-hub-body .note-content { 
    background: #fff; 
    width: 420px; 
    max-width: 90%;
    max-height: 85vh; 
    overflow-y: auto; 
    padding: 35px; 
    position: relative; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8); 
    background-image: repeating-linear-gradient(transparent, transparent 27px, #add8e6 27px, #add8e6 28px); 
    border-left: 3px solid #ffaa9f; 
    border-radius: 4px;
}
.pride-hub-body .note-close { 
    position: absolute; 
    top: 12px; 
    right: 18px; 
    font-weight: bold; 
    cursor: pointer; 
    font-size: 1.4rem; 
    color: #ff0055; 
    background: rgba(255,255,255,0.9); 
    border-radius: 50%; 
    width: 32px; 
    height: 32px; 
    text-align: center; 
    line-height: 32px; 
    z-index: 10;
}
.pride-hub-body .note-image { width: 100%; border: 6px solid #FFF; box-shadow: 0 4px 12px rgba(0,0,0,0.3); margin-bottom: 15px; border-radius: 4px; height: auto; }
.pride-hub-body .note-text { font-size: 1.3rem; line-height: 26px; color: #222; text-align: center; }