
:root {
    --magenta: #ff007f;
    --magenta-glow: rgba(255, 0, 127, 0.7);
    --bg-deep: #050508;
    --glass: rgba(15, 15, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --player-height: 100px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { 
    background: var(--magenta); 
    border-radius: 10px; 
}


#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.nebula-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}


.top-navigation {
    position: absolute;
    top: 0;
    width: 100%;
   
    min-height: 110px; 
    z-index: 100;
    padding: 10px 5%;
    display: flex;
    align-items: center;
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
   
    height: 80px; 
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.desktop-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--magenta);
    text-shadow: 0 0 10px var(--magenta-glow);
}


.nav-link.nav-staff {
    color: #ff007f !important;
    border: 1px solid #ff007f;
    padding: 5px 12px !important;
    border-radius: 6px;
    font-weight: bold;
    margin-left: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}


.nav-link.nav-staff:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: #ff007f;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    transform: translateY(-2px);
    color: #fff !important;
}


.nav-link.nav-staff i {
    font-size: 0.8em;
}



.mobile-menu-fab {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--magenta);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    z-index: 1500;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
    transition: var(--transition);
}

.mobile-menu-fab:active { transform: scale(0.9); }


.nav-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    width: 80%;
}


.lock-link {
    color: #DBDBDB !important;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.8;
}


.main-scroller {
    width: 100%;
}

section {
    padding: 100px 5%;
   
    margin-bottom: 0;
}


section:last-of-type {
    padding-bottom: calc(var(--player-height) + 50px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.block-header i { color: var(--magenta); font-size: 1.5rem; }
.block-header h2 { font-size: 2rem; font-weight: 900; }
.block-header span { color: var(--magenta); font-style: italic; }


.glass-panel {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
   
    background: radial-gradient(circle at center, rgba(255, 0, 127, 0.08) 0%, var(--bg-deep) 75%);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
    z-index: 10;
	margin-top: 40px;
}


.vinyl-engine {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.vinyl-disc {
    width: 100%;
    height: 100%;
    background: #050508; 
    border-radius: 50%;
    position: relative;
    padding: 3px;
   
    border: 2px solid #ff007f;
    
   
    box-shadow: 
        0 0 25px 5px rgba(255, 0, 127, 0.5),  
        0 0 60px 15px rgba(255, 0, 127, 0.3), 
        0 0 120px 30px rgba(255, 0, 127, 0.15);
    
    animation: eclipse-pulse 3s ease-in-out infinite;
}


@keyframes eclipse-pulse {
    0%, 100% { 
        box-shadow: 0 0 60px 15px rgba(255, 0, 127, 0.3), 0 0 120px 30px rgba(255, 0, 127, 0.15); 
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 90px 25px rgba(255, 0, 127, 0.6), 0 0 160px 45px rgba(255, 0, 127, 0.25); 
        transform: scale(1.03);
    }
}


.vinyl-lines {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle, 
        #111111 0, 
        #111111 1px, 
        #050508 3px
    );
    display: flex;
    align-items: center;
    justify-content: center;
}


.album-art {
    width: 65%;
    height: 65%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #000;
    box-shadow: 0 0 20px rgba(0,0,0,1);
    z-index: 2;
}


.vinyl-reflection {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(255,255,255,0.15) 0%, 
        transparent 40%, 
        rgba(255, 0, 127, 0.2) 50%,
        transparent 60%,
        rgba(255,255,255,0.05) 100%
    );
    pointer-events: none;
    border-radius: 50%;
    z-index: 3;
}


.rotating {
    animation: spin 12s linear infinite;
	animation-play-state: running;
}

.paused {
    animation-play-state: paused !important;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.badge-live {
   
    background: rgba(255, 0, 127, 0.12) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    
   
    border: 1px solid rgba(255, 0, 127, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 
                inset 0 0 10px rgba(255, 0, 127, 0.1);
    
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: default;
}


.dot {
    position: relative;
    width: 7px;
    height: 7px;
    background: #ff007f;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff007f;
}


.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #ff007f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-wave 2s infinite;
    z-index: -1;
}

@keyframes pulse-wave {
    0% {
        width: 7px;
        height: 7px;
        opacity: 0.8;
    }
    100% {
        width: 25px;
        height: 25px;
        opacity: 0;
    }
}


.badge-live:hover {
    background: rgba(255, 0, 127, 0.2) !important;
    border-color: rgba(255, 0, 127, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    transform: scale(1.02);
}

.track-title { font-size: 2.5rem; font-weight: 900; margin-top: 10px; margin-bottom: 10px; line-height: 1.1; }
.track-artist { color: var(--text-dim); font-size: 1.2rem; font-weight: 500; margin-bottom: 40px; }


.master-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--player-height);
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(25px);
    border-top: 1px solid var(--glass-border);
    z-index: 2000;
    padding: 0 30px;
}

.player-inner {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    align-items: center;
}


.player-meta-block {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}


.mini-art-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--magenta);
    background: #000;
}

.mini-art-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


.playing-bars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
   
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 3px;

   
    background: rgba(255, 0, 127, 0.4); 
    
   
    backdrop-filter: blur(1px); 
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 5;
    pointer-events: none;
}


.playing-bars .bar {
    width: 3px !important;
    height: 10px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    
   
    animation: eq-white 1.2s infinite ease-in-out;
}


.playing-bars .bar:nth-child(1) { animation-delay: 0.0s; }
.playing-bars .bar:nth-child(2) { animation-delay: 0.2s; }
.playing-bars .bar:nth-child(3) { animation-delay: 0.4s; }
.playing-bars .bar:nth-child(4) { animation-delay: 0.1s; }


@keyframes eq-white {
    0%, 100% { height: 5px; }
    50% { height: 15px; }
}


.mini-art-wrapper.playing .playing-bars {
    opacity: 1;
    visibility: visible;
}

.mini-art-wrapper.playing img {
    transform: scale(1.1);
    filter: saturate(1.2);
}


.text-data { overflow: hidden; }
.text-data strong { display: block; white-space: nowrap; font-size: 0.95rem; }
.text-data span { font-size: 0.8rem; color: var(--text-dim); }


.player-controls-block {
    display: flex;
    justify-content: center;
}

.play-btn-circle {
    width: 65px;
    height: 65px;
    background: var(--magenta);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 20px var(--magenta-glow);
    transition: var(--transition);
}

.play-btn-circle:hover { transform: scale(1.05); box-shadow: 0 0 30px var(--magenta); }


.player-settings-block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.dj-info-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.volume-engine {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

#volume-control {
    width: 100%;
    accent-color: var(--magenta);
    cursor: pointer;
}




.day-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    padding: 10px;
    background: transparent;
}


.day-tab {
    background: rgba(255, 255, 255, 0.03);
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 22px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}


.day-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--magenta);
    transform: translateY(-3px);
}


.day-tab.active {
    background: var(--magenta) !important;
    color: #fff !important;
    border-color: var(--magenta) !important;
    box-shadow: 0 0 25px var(--magenta-glow), 
                inset 0 0 10px rgba(255,255,255,0.3);
    transform: scale(1.05);
}


.schedule-view.glass-panel {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px;
    min-height: 200px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}



.events-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}


.events-grid::-webkit-scrollbar { height: 4px; }
.events-grid::-webkit-scrollbar-thumb { background: var(--magenta); border-radius: 10px; }

.event-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: 15px !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.event-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.event-card h3 {
    font-size: 1rem;
    margin: 0;
}

.event-card p {
    font-size: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-dim);
}

.event-card small {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--magenta);
}


.staff-recruit-card {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px !important;
}

.recruit-icon { font-size: 1.8rem; }
.recruit-text h3 { font-size: 0.9rem; margin-bottom: 5px; }
.recruit-text p { font-size: 0.75rem; margin-bottom: 10px; }
.btn-recruit {
    padding: 8px 20px;
    font-size: 0.7rem;
    display: inline-block;
}


.event-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding-top: 50px;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover { color: var(--magenta); }


#modal-body img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

#modal-body h2 { color: var(--magenta); margin-bottom: 15px; }
#modal-body p { line-height: 1.6; color: rgba(255,255,255,0.9); }
#modal-body .event-date { display: block; margin-top: 20px; font-weight: bold; color: var(--magenta); }



@keyframes skeleton-loading {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 15px;
}


.img-fluid-event {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    border-radius: 15px;
    display: block;
}


.img-loaded {
    opacity: 1;
}

.img-container-event {
    position: relative;
    width: 100%;
    min-height: 200px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}


.chat-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    padding: 0 !important;
}

.irc-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.site-credits {
    padding: 40px 0 120px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.credits-wrapper p {
    margin: 5px 0;
    letter-spacing: 1px;
}

.made-with-love {
    font-weight: 300;
}


.special-nick {
    color: #ff007f;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    padding: 0 4px;
}

.special-nick:hover {
    color: #fff;
    text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
}


.pulse-heart {
    color: #ff007f;
    margin: 0 4px;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

.about-section-container {
    padding: 20px 20px;
    perspective: 1000px;
}

.about-main-board {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 127, 0.2);
    border-left: 5px solid var(--magenta);
    padding: 50px;
    border-radius: 4px 40px 4px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-glitch-label {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--magenta);
    color: white;
    font-size: 0.65rem;
    padding: 2px 12px;
    letter-spacing: 2px;
    font-weight: 900;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
	text-align: justify;
    text-justify: inter-word;
}

.about-intro-text {
    font-size: 1.3rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.about-txt-capri { color: #00f3ff; font-weight: 800; text-shadow: 0 0 8px rgba(0, 243, 255, 0.4); }
.about-txt-carol { color: #ff007f; font-weight: 800; text-shadow: 0 0 8px rgba(255, 0, 127, 0.4); }
.about-txt-carol-alt { color: #ff80bf; font-weight: 700; }
.about-txt-forced { text-decoration: line-through; opacity: 0.5; font-style: italic; }
.about-txt-aside { display: block; font-size: 0.9rem; color: #777; margin-top: 5px; font-style: italic; }
.about-txt-date { color: #fff; font-weight: bold; background: rgba(255, 255, 255, 0.1); padding: 0 6px; border-radius: 3px; }
.about-txt-spoilers { color: #f1c40f; font-family: monospace; }
.about-txt-impostor { color: #e74c3c; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.about-txt-thought { display: block; font-size: 0.95rem; color: #aaa; border-left: 2px solid #444; padding-left: 15px; margin: 10px 0; }
.about-txt-glow { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.about-txt-brand { font-size: 1.5rem; font-weight: 900; background: linear-gradient(90deg, #fff, var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-txt-pill { font-size: 0.75rem; border: 1px solid var(--magenta); color: var(--magenta); padding: 2px 8px; border-radius: 50px; text-transform: uppercase; margin-right: 5px; display: inline-block; white-space: nowrap; margin-bottom: 5px }
.about-txt-magic { font-family: 'Georgia', serif; font-style: italic; color: #ffecb3; }
.about-txt-refuge { border-bottom: 1px dashed var(--magenta); }

.about-warning-note {
    background: rgba(255, 0, 127, 0.07);
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid rgba(255, 0, 127, 0.2);
}

.about-txt-mystery {
    font-weight: bold;
    color: var(--magenta);
    text-transform: uppercase;
    animation: about-pulse 2s infinite;
}

@keyframes about-pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px var(--magenta); }
    50% { opacity: 0.5; text-shadow: none; }
}

.about-ui-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.about-ui-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}


@media (max-width: 992px) {
	.top-navigation {
        padding: 20px 0;
        height: auto;
    }
	.nav-inner {
        flex-direction: column;
        justify-content: center;
    }
	.brand-identity {
        width: 100%;
        justify-content: center;
    }
	.brand-logo {
       
        width: 70% !important;
        height: auto !important;
		max-width: 500px !important;
    }
	.hero-section { 
        padding-top: 140px !important;	
    }
	.mobile-menu-fab {
		display: none;
    }
	
    .desktop-links { display: none; }
	.track-title { font-size: 1.8rem; }
	
	.events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        overflow: hidden;
    }
    .event-card { flex: none; }
	
	.chat-wrapper {
        height: calc(100vh - 150px);
        border-radius: 15px;
    }
    
    #chat-section {
        padding: 20px 10px;
    }
	.vinyl-engine {
        width: 280px;
        height: 280px;
    }
	
	.site-credits {
        padding-bottom: 150px;
    }
	
	.block-header h2 { 
        font-size: 1.3rem !important;
    }
	
	.text-data {
        display: flex !important;
        flex-direction: column !important;
        min-width: 0 !important;
    }

    #footer-track {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    #footer-artist {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}


.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.m-link {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.m-link:hover { color: var(--magenta); }

.close-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.dj-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    transition: var(--transition);
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.dj-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, var(--magenta-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.dj-card:hover {
    transform: translateY(-10px);
    border-color: var(--magenta);
    box-shadow: 0 15px 35px rgba(255, 0, 127, 0.2);
}

.dj-card:hover::before { opacity: 0.1; }

.dj-card-inner { position: relative; z-index: 1; }

.dj-photo-frame {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--magenta), #00f3ff);
    box-shadow: 0 0 20px var(--magenta-glow);
}

.dj-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--bg-deep);
}

.dj-info-header { text-align: center; margin-bottom: 20px; }
.dj-nick { font-size: 1.5rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 2px; }

.dj-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.dj-tag-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 127, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--magenta);
    font-weight: 700;
}

.dj-bio-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}


.dj-meta-info {
    border-top: none;
    padding-top: 0;
    display: block;
}

.dj-meta-label { color: var(--magenta); font-weight: 800; display: block; margin-bottom: 2px; }
.dj-meta-value { color: #fff; opacity: 0.9; }

.dj-meta-item-hobbies {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.dj-hobbies-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.dj-hobby-tag {
    font-size: 0.65rem;
    background: rgba(0, 243, 255, 0.05);
    color: #00f3ff;
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.dj-hobby-tag:hover {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.dj-quote-container {
    position: relative;
    padding: 20px 10px;
    margin: 15px 0;
    text-align: center;
    border-top: 1px double var(--glass-border);
    border-bottom: 1px double var(--glass-border);
}

.dj-quote-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-white);
    font-style: italic;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.dj-quote-container::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 3rem;
    color: var(--magenta);
    opacity: 0.2;
    font-family: serif;
}

.dj-quote-container::after {
    content: '"';
    position: absolute;
    bottom: -25px;
    right: 10px;
    font-size: 3rem;
    color: var(--magenta);
    opacity: 0.2;
    font-family: serif;
}

.dj-socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dj-social-link {
    color: var(--text-dim);
    transition: 0.3s;
    font-size: 1.1rem;
}

.dj-social-link:hover { color: var(--magenta); transform: scale(1.2); }

@media (max-width: 800px) {
	

    .master-player {
        height: 80px !important;
        padding: 0 10px !important;
        background: #050508 !important;
        display: flex !important;
        align-items: center !important;
    }

    .player-inner {
        display: flex !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: flex-start !important;
        position: relative !important;
    }

   
    .player-meta-block {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .mini-art-wrapper {
        width: 50px !important;
        height: 50px !important;
        border-radius: 8px !important;
    }

   
    .mini-art-wrapper img {
        width: 50px !important;
        height: 50px !important;
        border-radius: 8px !important;
    }

    .playing-bars .bar {
        width: 2px;
        gap: 2px;
    }

   
    .text-data {
        display: flex !important;
        flex-direction: column !important;
        min-width: 0 !important;
        padding-bottom: 15px !important;
    }

    #footer-track {
        font-size: 1rem !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-bottom: 2px !important;
		line-height: 1.1 !important;
    }

    #footer-artist {
        font-size: 0.8rem !important;
        color: rgba(255,255,255,0.5) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
		line-height: 1.1 !important;
    }

   
    .player-settings-block {
        display: block !important;
        position: absolute !important;
        left: 82px !important;
        bottom: 12px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .dj-info-pill {
        background: transparent !important;
        color: var(--magenta) !important;
        font-size: 0.65rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        padding: 0 !important;
    }

    .volume-engine { display: none !important; }

   
    .player-controls-block {
        margin-left: auto !important;
        padding-left: 10px !important;
    }

    .play-btn-circle {
        width: 55px !important;
        height: 55px !important;
        background: var(--magenta) !important;
        border: none !important;
    }
	
	.about-section-container {
		padding: 20px 0px;
	}
	
	.about-main-board {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 0 20px 0 20px;
        border-left-width: 3px;
    }

    .about-glitch-label {
        left: 20px;
        font-size: 0.55rem;
    }

    .about-intro-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .about-paragraph {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .about-txt-brand {
        font-size: 1.25rem;
    }

    .about-txt-magic {
        font-size: 1.1rem;
    }

    .about-ui-divider {
        margin: 25px 0;
    }

    .about-warning-note {
        padding: 15px;
        font-size: 0.9rem;
    }

    .about-corner-decoration {
        display: none;
    }
}

@media (max-width: 600px) {
	.top-navigation {
        padding: 20px 0;
        height: auto;
    }
	.nav-inner {
        flex-direction: column;
        justify-content: center;
    }
	.brand-identity {
        width: 100%;
        justify-content: center;
    }
	.brand-logo {
       
        width: 80% !important;
        height: auto !important;
    }
	.hero-section { 
        padding-top: 140px !important; 
    }
    .day-selector {
        gap: 8px;
    }
    .day-tab {
        padding: 10px 14px;
        font-size: 0.65rem;
        flex: 1 1 calc(33% - 10px);
    }
	
}

@media (max-width: 380px) {
    .about-main-board {
        padding: 25px 15px;
    }
    
    .about-txt-pill {
        display: inline-block;
        margin-bottom: 5px;
    }
}

@media (min-width: 1024px) {
    .hero-wrapper {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 100px;
        text-align: left;
        max-width: 1400px;
        margin: 0 auto;
    }

    .visualizer-area {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .vinyl-engine {
        width: 450px;
        height: 450px;
    }

    .now-playing-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .track-title {
        font-size: 4rem;
        max-width: 600px;
    }

    .track-artist {
        font-size: 1.8rem;
    }
}

@keyframes eclipse-pulse {
    0% { box-shadow: 0 0 30px 5px rgba(255, 0, 255, 0.3); }
    50% { box-shadow: 0 0 60px 15px rgba(255, 0, 255, 0.5); }
    100% { box-shadow: 0 0 30px 5px rgba(255, 0, 255, 0.3); }
}

.vinyl-disc.rotating {
   
    animation: spin 12s linear infinite, eclipse-pulse 4s ease-in-out infinite;
}


@media (max-width: 991px) {

   
    html, body {
        height: 100vh;
        height: -webkit-fill-available; 
        overflow: hidden; 
        position: fixed;
        width: 100%;
    }

   
    .top-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px !important;
        min-height: 70px !important;
        background: rgba(5, 5, 8, 0.9);
        backdrop-filter: blur(10px);
        z-index: 2500;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        border-bottom: 1px solid var(--glass-border);
    }

    .brand-logo {
        height: 45px !important;
        width: auto !important;
    }

   
    .main-scroller {
        position: absolute;
        top: 70px;    
        bottom: 135px;
        left: 0;
        width: 100%;
        overflow: hidden;
        z-index: 1000;
    }

   
    .main-scroller section {
        display: none; 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px 5% !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

   
    .main-scroller section.active-section {
        display: block !important;
    }
	
	body.chat-fullscreen-mode .top-navigation {
        display: none !important;
    }

   
    body.chat-fullscreen-mode .main-scroller {
        top: 0 !important;
       
        bottom: 135px !important; 
        
       
        height: calc(100dvh - 135px) !important; 
        
       
        height: calc(100vh - 135px); 

        position: fixed !important;
        left: 0;
        width: 100%;
        z-index: 1000;
        overflow: hidden !important;
    }

   
    body.chat-fullscreen-mode #chat-section.active-section,
    body.chat-fullscreen-mode #chat-section .container,
    body.chat-fullscreen-mode #chat-section .chat-wrapper {
        height: 100% !important;
        max-height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    body.chat-fullscreen-mode .irc-iframe {
        flex: 1 !important;
        height: 100% !important;
        width: 100% !important;
        border: none !important;
    }
	
	#chat-section.active-section {
        display: flex !important;
        flex-direction: column;
        padding: 0 !important;  
        overflow: hidden;       
    }
	
	#chat-section .block-header {
        display: none !important;
    }

    #chat-section .container {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
	
	#chat-section .chat-wrapper {
        height: 100% !important; 
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
    }

    #chat-section .irc-iframe {
        height: 100% !important;
		border: none !important;
    }

   
    .mobile-nav-overlay {
        display: flex !important;
        position: fixed;
        top: auto;
        bottom: 80px;
        left: 0;
        width: 100%;
        height: 55px;
        background: #0a0a0f;
        border-top: 1px solid var(--glass-border);
        z-index: 2000;
    }

    .overlay-content {
        flex-direction: row !important;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 100%;
        gap: 0 !important;
        padding: 0 5px;
    }

    .m-link {
        font-size: 0.6rem !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: var(--text-dim);
        font-weight: 600;
        text-transform: uppercase;
        flex: 1;
    }

    .m-link i {
        font-size: 1.2rem;
    }

    .m-link.active-tab {
        color: var(--magenta);
        text-shadow: 0 0 10px var(--magenta-glow);
    }

   
    .close-overlay, .nav-divider, .lock-link {
        display: none !important;
    }

   
    .master-player {
        position: fixed;
        bottom: 0;
        left: 0;
        height: 80px !important;
        z-index: 2600;
        background: #050508;
    }

   
    .hero-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: auto !important;
    }

    .vinyl-engine {
        width: 65vw !important;
        height: 65vw !important;
        max-width: 300px;
        max-height: 300px;
    }

    .track-title { font-size: 1.5rem !important; }
    
}


@media (min-width: 1024px) {
    .main-scroller section {
        display: block !important;
        position: relative !important;
    }
}