* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
}

body { 
    background: radial-gradient(circle at 50% 50%, #151515 0%, #050505 100%); 
    min-height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    overflow-x: hidden; 
    color: #fff; 
    position: relative; 
}

/* Animierte Galashow-Spotlights */
.spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transition: transform 10s ease-in-out; 
    mix-blend-mode: screen;
    filter: blur(80px);
    animation: spot-pulse 6s infinite alternate ease-in-out;
}

@keyframes spot-pulse {
    0% { opacity: 0.7; filter: blur(80px); }
    100% { opacity: 1.1; filter: blur(100px); }
}

.spot1 {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, rgba(184, 134, 11, 0) 70%);
    top: -150px;
    left: -150px;
}

.spot2 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 223, 0, 0) 70%);
    bottom: -150px;
    right: -150px;
}

/* NEU: Sternenstaub / Magic Dust */
#magic-dust {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.dust {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: transparent;
}

.layer1 {
    box-shadow: 10vw 10vh #FFDF00, 30vw 30vh #FFF, 50vw 80vh #FFD700, 80vw 20vh #FFF, 90vw 60vh #B8860B, 20vw 90vh #FFF, 70vw 50vh #FFDF00, 40vw 10vh #FFF, 15vw 60vh #FFD700, 60vw 90vh #FFF, 85vw 85vh #B8860B;
    animation: twinkle 4s infinite ease-in-out;
}

.layer2 {
    width: 4px; height: 4px;
    box-shadow: 5vw 40vh #FFF, 25vw 15vh #FFD700, 45vw 65vh #FFF, 65vw 35vh #B8860B, 85vw 75vh #FFF, 35vw 85vh #FFDF00, 75vw 15vh #FFF, 10vw 70vh #FFD700, 55vw 5vh #FFF, 95vw 45vh #B8860B;
    animation: twinkle 5s infinite ease-in-out reverse;
}

.layer3 {
    width: 2px; height: 2px;
    box-shadow: 12vw 70vh #FFF, 32vw 45vh #FFD700, 52vw 25vh #FFF, 72vw 85vh #B8860B, 92vw 15vh #FFF, 22vw 35vh #FFDF00, 62vw 65vh #FFF, 82vw 50vh #FFD700, 42vw 90vh #FFF;
    animation: twinkle 3.5s infinite ease-in-out 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.5); }
}


#clip-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-color: #050505 !important;
    overflow: hidden;
}


.clip-track {
    display: flex;
    width: max-content;
    animation: scroll-track 67s linear infinite;
}

.clip-track.reverse {
    animation-direction: reverse;
}

@keyframes scroll-track {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* NEU: Clips pulsieren im Hintergrund (Atmen) */
.clip-item {
    background: #000;
    filter: none !important;
}

.clip-track:nth-child(even) .clip-item {
    animation-delay: -4s;
}

@keyframes breathe-clip {
    0% { transform: scale(0.95); opacity: 0.6; border-color: rgba(255, 215, 0, 0.05); }
    100% { transform: scale(1.05); opacity: 1; border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 30px rgba(218, 165, 32, 0.3); }
}

.clip-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.wrapper { 
    width: 100%; 
    max-width: 950px; 
    padding: 60px 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    z-index: 10;
}

/* NEU: Animierter Shine-Titel */
h1 { 
    font-size: 4rem; 
    font-weight: 900; 
    margin-bottom: 50px; 
    background: linear-gradient(to right, #FFDF00, #FFF, #B8860B, #FFF, #FFDF00); 
    background-size: 200% auto;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-shadow: 0 10px 40px rgba(218, 165, 32, 0.4); 
    text-align: center; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    animation: text-shine 4s linear infinite;
}

@keyframes text-shine {
    to { background-position: 200% center; }
}

.grid-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 24px; 
    width: 100%; 
    justify-content: center; 
}

/* NEU: Licht-Sweep Effekt für alle Buttons */
.category-btn { 
    position: relative; 
    padding: 24px; 
    font-size: 1.1rem; 
    font-weight: 700; 
    border-radius: 16px; 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    color: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    min-height: 90px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
    overflow: hidden;
}

.category-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    animation: sweep 6s infinite;
}

@keyframes sweep {
    0%, 50% { left: -100%; }
    70%, 100% { left: 200%; }
}

.category-btn::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    border-radius: 16px; 
    padding: 1.5px; 
    background: linear-gradient(to bottom right, rgba(255,215,0,0.4), rgba(255,255,255,0)); 
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); 
    -webkit-mask-composite: xor; 
    mask-composite: exclude; 
    pointer-events: none; 
}

.red { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)); 
    border-color: rgba(255, 255, 255, 0.15); 
}

.red:hover { 
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05)); 
    border-color: rgba(255, 215, 0, 0.6); 
    transform: translateY(-6px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.15); 
    color: #FFDF00;
}

/* NEU: Abgeschlossene Kategorien pulsieren wie Goldbarren */
.green { 
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(218, 165, 32, 0.08)); 
    border-color: rgba(255, 215, 0, 0.5); 
    color: #FFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    animation: green-pulse 3s infinite;
}

@keyframes green-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15), inset 0 0 15px rgba(255, 215, 0, 0.05); }
    50% { box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4), inset 0 0 25px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.3); border-color: rgba(255, 215, 0, 0.8); }
}

.green:hover { 
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(218, 165, 32, 0.15)); 
    border-color: #FFDF00; 
    transform: translateY(-6px) scale(1.03); 
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.5), 0 0 35px rgba(255, 215, 0, 0.4); 
}

.back-btn { 
    grid-column: 1 / -1; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: #fff; 
    padding: 18px; 
    border-radius: 16px; 
    cursor: pointer; 
    font-size: 1rem; 
    font-weight: 700; 
    transition: all 0.4s ease; 
    backdrop-filter: blur(20px); 
    margin-bottom: 20px; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-btn:hover { 
    background: rgba(255, 215, 0, 0.15); 
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFDF00;
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.6); 
}

#overlay { 
    display: none; 
    position: fixed; 
    inset: 0; 
    background: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(30px); 
    -webkit-backdrop-filter: blur(30px); 
    color: white; 
    justify-content: center; 
    align-items: center; 
    z-index: 1000; 
    opacity: 0; 
    transition: opacity 0.5s ease; 
}

#overlay.active { 
    display: flex; 
    opacity: 1; 
}

.modal-content { 
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95)); 
    border: 1px solid rgba(255, 215, 0, 0.3); 
    padding: 50px 40px; 
    border-radius: 24px; 
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 215, 0, 0.1); 
    display: flex; 
    flex-direction: column; 
    gap: 24px; 
    width: 90%; 
    max-width: 500px; 
    align-items: center; 
    position: relative; 
}

.modal-content h3 { 
    font-size: 2rem; 
    font-weight: 900; 
    text-align: center; 
    background: linear-gradient(135deg, #FFDF00, #B8860B); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

#input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#input-container input { 
    width: 100%; 
    padding: 18px; 
    border-radius: 12px; 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    background: rgba(0, 0, 0, 0.6); 
    color: white; 
    font-size: 1.1rem; 
    font-weight: 500;
    outline: none; 
    transition: all 0.3s ease; 
    text-align: center; 
}

#input-container input:focus { 
    border-color: rgba(255, 215, 0, 0.8); 
    background: rgba(0, 0, 0, 0.9); 
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2); 
}

#error-msg {
    color: #ff4d4d;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    min-height: 20px;
    text-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
}

.submit-btn { 
    width: 100%; 
    padding: 18px; 
    border-radius: 12px; 
    border: none; 
    background: linear-gradient(135deg, #FFD700, #DAA520); 
    color: #000; 
    font-size: 1.2rem; 
    font-weight: 900; 
    cursor: pointer; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease; 
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4); 
}

.submit-btn:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.6); 
    background: linear-gradient(135deg, #FFDF00, #B8860B); 
}

.close-btn { 
    position: absolute; 
    top: 20px; 
    right: 25px; 
    background: none; 
    border: none; 
    color: rgba(255, 255, 255, 0.4); 
    font-size: 2rem; 
    cursor: pointer; 
    transition: color 0.3s; 
    line-height: 1; 
}

.close-btn:hover { 
    color: #FFD700; 
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

#login-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#login-screen.active {
    display: flex;
    opacity: 1;
}

.login-box {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 50px 150px rgba(0,0,0,1), 0 0 60px rgba(255, 215, 0, 0.1);
    max-width: 450px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 60%);
    animation: text-shine 10s infinite linear;
    pointer-events: none;
}

.login-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFDF00, #FFF, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-box p {
    color: #ccc;
    margin-bottom: 45px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.twitch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #9146FF, #772ce8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 40px rgba(145, 70, 255, 0.4);
}


/* ===========================
   PUBLIC CHAT WIDGET
   =========================== */

#chat-widget {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Toggle Button */
#chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 215, 0, 0.45);
    background: linear-gradient(135deg, rgba(30,30,30,0.95), rgba(10,10,10,0.98));
    color: #FFDF00;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7), 0 0 18px rgba(255,215,0,0.15);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    order: 2; /* Button stays at bottom */
}

#chat-toggle:hover {
    border-color: rgba(255,215,0,0.85);
    box-shadow: 0 12px 40px rgba(0,0,0,0.8), 0 0 30px rgba(255,215,0,0.3);
    transform: translateY(-3px);
}

#chat-toggle svg {
    width: 22px;
    height: 22px;
}

/* Unread badge */
#chat-unread {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #FFD700;
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    animation: badge-pop 0.3s cubic-bezier(0.16,1,0.3,1);
}

@keyframes badge-pop {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

/* Chat Panel */
#chat-panel {
    order: 1;
    width: 320px;
    max-height: 440px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(22,22,22,0.97), rgba(8,8,8,0.99));
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9), 0 0 40px rgba(255,215,0,0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform-origin: bottom left;
    transform: scale(0.85) translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}

#chat-panel.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Header */
#chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 12px;
    border-bottom: 1px solid rgba(255,215,0,0.12);
    flex-shrink: 0;
}

#chat-header-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#chat-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #FFDF00, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#chat-online {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

#online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Messages area */
#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}

#chat-messages::-webkit-scrollbar {
    width: 3px;
}
#chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255,215,0,0.25);
    border-radius: 2px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: msg-in 0.25s cubic-bezier(0.16,1,0.3,1);
}

@keyframes msg-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.chat-msg-meta {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.chat-msg-user {
    font-size: 0.72rem;
    font-weight: 800;
    color: #FFDF00;
    text-shadow: 0 0 8px rgba(255,215,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-msg-time {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.22);
}

.chat-msg-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.45;
    word-break: break-word;
}

.chat-system-msg {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    font-style: italic;
    padding: 4px 0;
}

/* Input row */
#chat-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(255,215,0,0.1);
    flex-shrink: 0;
}

#chat-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#chat-input:focus {
    border-color: rgba(255,215,0,0.6);
    box-shadow: 0 0 15px rgba(255,215,0,0.12);
}

#chat-input::placeholder {
    color: rgba(255,255,255,0.25);
}

#chat-send {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#chat-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218,165,32,0.5);
}

#chat-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Not logged in state */
#chat-login-hint {
    padding: 18px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    line-height: 1.6;
}

#chat-login-hint strong {
    color: #FFDF00;
}

/* Mobile */
@media (max-width: 480px) {
    #chat-widget {
        bottom: 16px;
        left: 12px;
    }
    #chat-panel {
        width: calc(100vw - 24px);
    }
}

/* Chat login prompt */
#chat-login-prompt {
    padding: 12px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    flex-shrink: 0;
}

#chat-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #9146FF, #772ce8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(145, 70, 255, 0.35);
}

#chat-login-btn:hover {
    background: linear-gradient(135deg, #a970ff, #9146FF);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(145, 70, 255, 0.55);
}

/* ===========================
   AUTH WIDGET (TOP RIGHT)
   =========================== */

#auth-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 400;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(30,30,30,0.95), rgba(10,10,10,0.98));
    border: 1.5px solid rgba(255, 215, 0, 0.45);
    border-radius: 50px;
    color: #FFDF00;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.7), 0 0 18px rgba(255,215,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-btn:hover {
    border-color: rgba(255,215,0,0.85);
    box-shadow: 0 12px 40px rgba(0,0,0,0.8), 0 0 30px rgba(255,215,0,0.3);
    transform: translateY(-3px);
}

#auth-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 215, 0, 0.6);
    object-fit: cover;
}

.auth-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: linear-gradient(180deg, rgba(22,22,22,0.97), rgba(8,8,8,0.99));
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9), 0 0 30px rgba(255,215,0,0.08);
    overflow: hidden;
}

#logout-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #FFDF00;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#logout-btn:hover {
    background: rgba(255, 215, 0, 0.1);
}