.archive-warning-wrapper {
display: flex;
justify-content: center;
width: 100%;
}

/* Fonts removed */
@font-face {
font-family: 'VinqueRg';
src: url('assets/fonts/ofont.ru_Vinque Rg(1).ttf') format('truetype');
font-display: swap;
}

@font-face {
font-family: 'MasonOfont';
src: url('assets/fonts/ofont.ru_Mason.ttf') format('truetype');
font-display: swap;
}

@font-face {
font-family: 'Cyberpunk';
src: url('assets/fonts/cyberpunk.ttf') format('truetype');
font-display: swap;
}

:root {
--app-font-family: 'Cyberpunk', sans-serif;
}

/* Reset and base styles */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: var(--app-font-family);
background: #000000;
color: #e0e0e0;
line-height: 1.6;
overflow-x: hidden;
margin: 0;
padding: 0;
height: auto;
width: 100vw;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-tap-highlight-color: transparent;
}

body * {
font-family: var(--app-font-family) !important;
}

#loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: #000000;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 9999;
}

#loading-screen img {
width: 50px;
height: auto;
filter: drop-shadow(0 0 30px #00ff88) drop-shadow(0 0 60px #00ff88);
animation: spin 0.5s linear infinite;
}

#loading-text {
color: #ffffff;
font-family: sans-serif;
font-size: 1.2rem;
margin-top: 1rem;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
animation: ellipsis 1.5s infinite;
}

@keyframes ellipsis {
0%,
20% {
content: "";
}
40% {
content: ".";
}
60% {
content: "..";
}
80%,
100% {
content: "...";
}
}

#loading-text::after {
content: "";
animation: ellipsis 1.5s infinite;
}

@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

img {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
-webkit-user-drag: none;
}

h1,
h2,
h3 {
font-family: sans-serif;
font-weight: 400;
color: #ffffff;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
overflow-wrap: break-word;
word-wrap: break-word;
hyphens: auto;
}

h1 {
font-size: 3.5rem;
letter-spacing: 2px;
}

h2 {
font-size: 2.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
text-align: center;
}

h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
/* Header */

header {
position: fixed;
top: 0;
width: 100%;
background: #000000;
box-shadow: 20px 0 40px 30px rgba(0, 0, 0, 1.0), -20px 0 40px 30px rgba(0, 0, 0, 1.0), 0 60px 50px 40px rgba(0, 0, 0, 1.0);
z-index: 1000;
padding: 1rem 2rem;
display: flex;
justify-content: flex-start;
align-items: center;
transition: all 0.4s ease;
height: 60px;
}

header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 1);
filter: blur(25px) saturate(1.8) contrast(1.2) brightness(1.1);
box-shadow: 15px 0 30px rgba(0, 0, 0, 0.9), -15px 0 30px rgba(0, 0, 0, 0.9), 0 -9px 32px rgba(0, 0, 0, 0.9);
z-index: -1;
}

header.white-theme::before {
background: rgba(255, 255, 255, 0.1);
filter: blur(25px) saturate(1.8) contrast(1.2) brightness(1.1);
box-shadow: 15px 0 30px rgba(255, 255, 255, 0.1), -15px 0 30px rgba(255, 255, 255, 0.1), 0 -9px 32px rgba(255, 255, 255, 0.1);
}
/* Removed hover effect */

#nav-ul {
display: flex;
visibility: hidden;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(10, 10, 10, 0.98);
backdrop-filter: blur(15px);
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
border-top: 3px solid #ffffff;
opacity: 0;
transform: translateY(-100%);
transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
list-style: none;
margin: 0;
padding: 0;
z-index: 1000;
will-change: transform, opacity, visibility;
}

#nav-ul.active {
visibility: visible;
opacity: 1;
transform: translateY(0);
}

#nav-ul.active~#back-btn {
display: block;
}

#nav-ul.red-nav .nav-link {
color: #ff6b6b;
border-color: rgba(255, 107, 107, 0.4);
background: rgba(255, 107, 107, 0.08);
}

#nav-ul.red-nav .nav-link:hover,
#nav-ul.red-nav .nav-link.active {
color: #ffffff;
border-color: #ff6b6b;
background: rgba(255, 107, 107, 0.3);
box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

#nav-ul.white-nav .nav-link {
color: #ffffff;
border-color: rgba(255, 255, 255, 0.4);
background: rgba(255, 255, 255, 0.08);
}

#nav-ul.white-nav .nav-link:hover,
#nav-ul.white-nav .nav-link.active {
color: #ffffff;
border-color: #ffffff;
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#logo-container {
position: relative;
cursor: pointer;
margin-top: 2.5rem;
}

#desktop-nav {
display: flex;
gap: 0.5rem;
align-items: center;
margin-left: 2rem;
margin-top: 2.5rem;
}

#desktop-nav .nav-link {
font-size: 0.9rem;
padding: 0.06rem 0.3rem;
border-radius: 12px;
height: 2.4rem;
flex: 1;
max-width: 9rem;
}

#nav-menu {
display: none;
}

#menu-hint {
display: none;
position: absolute;
top: 90%;
left: 50%;
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
padding: 0.3rem 0.8rem;
border-radius: 8px;
font-size: 0.8rem;
font-family: 'CustomFont', serif;
text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
z-index: 1000;
opacity: 0.6;
pointer-events: none;
}

#tap-hand {
display: none;
position: absolute;
top: 50%;
left: 120%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
color: #ffffff;
z-index: 1050;
pointer-events: none;
animation: tapAnimation 50s ease-in-out infinite;
}

@media (min-width: 769px) {
#tap-hand {
display: none !important;
}
}

#tap-hand img {
width: 100%;
height: 100%;
filter: brightness(0) saturate(100%) invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) drop-shadow(0 0 10px rgba(128, 128, 128, 0.5));
}

@media (min-width: 769px) {
#menu-hint {
display: none !important;
}
}

#logo.green-logo {
filter: brightness(0) saturate(100%) invert(56%) sepia(96%) saturate(300%) hue-rotate(80deg) brightness(120%) contrast(105%) drop-shadow(0 0 30px #90ee90) drop-shadow(0 0 60px #90ee90);
}

@keyframes logoPulse {
0%,
100% {
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.769));
}
50% {
filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}
}

@keyframes neonPulse {
0%,
100% {
filter: drop-shadow(0 0 30px #00ff88) drop-shadow(0 0 60px #00ff88);
}
50% {
filter: drop-shadow(0 0 50px #00ff88) drop-shadow(0 0 100px #00ff88);
}
}

#logo.green-logo:hover {
transform: scale(1.05);
filter: brightness(0) saturate(100%) invert(56%) sepia(96%) saturate(300%) hue-rotate(80deg) brightness(150%) contrast(105%) drop-shadow(0 0 50px #90ee90) drop-shadow(0 0 100px #90ee90);
}

#logo.red-glow {
filter: drop-shadow(0 0 30px #ff6b6b) drop-shadow(0 0 60px #ff6b6b);
}

#logo.red-glow:hover {
filter: drop-shadow(0 0 50px #ff6b6b) drop-shadow(0 0 100px #ff6b6b);
}

@keyframes shake {
0%,
100% {
transform: rotate(0deg) scale(1);
}
10% {
transform: rotate(-10deg) scale(1.1);
}
20% {
transform: rotate(10deg) scale(1.15);
}
30% {
transform: rotate(-8deg) scale(1.1);
}
40% {
transform: rotate(8deg) scale(1.15);
}
50% {
transform: rotate(-5deg) scale(1.1);
}
60% {
transform: rotate(5deg) scale(1.15);
}
70% {
transform: rotate(-3deg) scale(1.1);
}
80% {
transform: rotate(3deg) scale(1.15);
}
90% {
transform: rotate(0deg) scale(1.1);
}
}

@keyframes tapAnimation {
0% {
transform: translate(-50%, -50%) scale(1) rotate(0deg);
opacity: 0.8;
}
50% {
transform: translate(-50%, -50%) scale(1) rotate(0deg);
opacity: 0.8;
}
55% {
transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
opacity: 0.9;
}
60% {
transform: translate(-50%, -50%) scale(1.05) rotate(-1deg);
opacity: 0.85;
}
65% {
transform: translate(-50%, -50%) scale(1.15) rotate(3deg);
opacity: 1;
}
70% {
transform: translate(-50%, -50%) scale(1.08) rotate(-2deg);
opacity: 0.9;
}
75% {
transform: translate(-50%, -50%) scale(1.12) rotate(1deg);
opacity: 0.95;
}
80% {
transform: translate(-50%, -50%) scale(1.06) rotate(-1deg);
opacity: 0.88;
}
85% {
transform: translate(-50%, -50%) scale(1.18) rotate(2deg);
opacity: 1;
}
90% {
transform: translate(-50%, -50%) scale(1.09) rotate(-1deg);
opacity: 0.92;
}
95% {
transform: translate(-50%, -50%) scale(1.14) rotate(1deg);
opacity: 0.96;
}
100% {
transform: translate(-50%, -50%) scale(1) rotate(0deg);
opacity: 0.8;
}
}

#logo.shake {
animation: shake 1s ease;
}

.nav-link {
color: #e0e0e0;
text-decoration: none;
font-family: 'CustomFont', serif;
font-size: 1.5rem;
font-weight: 600;
letter-spacing: 1px;
width: 300px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 25px;
border: 2px solid rgba(255, 255, 255, 0.4);
background: rgba(255, 255, 255, 0.08);
transition: all 0.3s ease;
position: relative;
will-change: transform, box-shadow, border-color, background;
}

.nav-link::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
border-radius: 8px;
opacity: 0;
transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
opacity: 1;
}

.nav-link:hover,
.nav-link.active {
color: #ffffff;
border-color: #ffffff;
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
transform: scale(1.05);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#back-btn {
display: none;
position: absolute;
top: 2rem;
right: 2rem;
background: #00ff88;
border: none;
color: #000;
font-size: 1.2rem;
cursor: pointer;
padding: 0.6rem;
border-radius: 50%;
box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
transition: all 0.3s ease;
z-index: 1001;
}

#back-btn:hover {
transform: scale(1.1) rotate(180deg);
box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
}

#menu-back-btn {
color: #e0e0e0;
font-family: 'CustomFont', serif;
font-size: 1.2rem;
font-weight: 600;
letter-spacing: 1px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 25px;
border: 2px solid rgba(0, 255, 136, 0.4);
background: rgba(0, 255, 136, 0.08);
transition: all 0.4s ease;
cursor: pointer;
}

#menu-back-btn:hover {
color: #ffffff;
border-color: #00ff88;
background: rgba(0, 255, 136, 0.15);
box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
transform: scale(1.05);
text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

#menu-back-btn.red-nav {
color: #ff6b6b;
border-color: rgba(255, 107, 107, 0.4);
background: rgba(255, 107, 107, 0.08);
}

#menu-back-btn.red-nav:hover {
color: #ffffff;
border-color: #ff6b6b;
background: rgba(255, 107, 107, 0.3);
box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

#menu-back-btn.white-nav {
color: #ffffff;
border-color: rgba(255, 255, 255, 0.4);
background: rgba(255, 255, 255, 0.08);
}

#menu-back-btn.white-nav:hover {
color: #ffffff;
border-color: #ffffff;
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Mobile Menu */

@media (max-width: 768px) {
header {
padding: 0.8rem 1rem;
height: 40px;
background: #000000;
box-shadow: 20px 0 40px 30px rgba(0, 0, 0, 1.0), -20px 0 40px 30px rgba(0, 0, 0, 1.0), 0 60px 50px 40px rgba(0, 0, 0, 1.0);
clip-path: none;
justify-content: center;
align-items: flex-start;
}
#desktop-nav {
display: none;
}
#nav-menu {
display: block;
}
#logo {
height: 60px;
margin-top: -0.5rem;
}
#tap-hand {
display: block;
}
.nav-link {
width: 250px;
height: 70px;
font-size: 1.3rem;
}
#menu-back-btn {
padding: 10px;
font-size: 1rem;
}
}
/* Sections */

.section {
display: none;
min-height: 100vh;
padding: 7rem 0 2rem;
position: relative;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
text-align: center;
}

.section.active {
display: block;
}
/* Home Section */

#home {
background: #0a0a0a;
position: relative;
overflow: hidden;
min-height: 100vh;
}

.video-background {
position: relative;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

.smoking-warning {
position: relative;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
background: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(10px);
border-radius: 18px;
padding: 14px 24px;
font-size: 1.1rem;
font-weight: 600;
color: #ffffff;
font-family: 'CustomFont', serif;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 255, 255, 0.25);
border: 1px solid rgba(255, 255, 255, 0.3);
width: fit-content;
max-width: 90%;
margin: 2rem auto;
opacity: 0;
visibility: hidden;
transition: opacity 0.6s ease, visibility 0.6s ease;
z-index: 5;
}

.smoking-warning.visible {
opacity: 1;
visibility: visible;
}

.smoking-icon {
width: 32px;
height: 32px;
opacity: 0.95;
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

#previous .video-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}

#previous video {
filter: none;
}

video {
width: 100%;
height: 100%;
object-fit: cover;
}

.scroll-arrow {
position: relative;
text-align: center;
padding: 20px 0;
animation: bounce 2s infinite;
cursor: pointer;
z-index: 10;
transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-arrow svg {
width: 50px;
height: 50px;
transition: transform 0.3s ease;
}
/* About Section */

.about-section {
background: linear-gradient(180deg, #121212 0%, rgba(12, 66, 66, 0.705) 50%, rgba(33, 33, 33, 0.139) 100%);
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

.about-section.in-view {
animation: emergeFromShadow 2s ease-out;
}

@keyframes emergeFromShadow {
0% {
opacity: 0;
box-shadow: inset 0 0 200px rgba(0, 0, 0, 1);
}
100% {
opacity: 1;
box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}
}

.about-content {
text-align: center;
z-index: 1;
padding: 2rem;
}

.about-content h1 {
font-size: 4rem;
color: #ffffff;
margin-bottom: 1rem;
text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.about-section.in-view .about-content h1 {
animation: fadeInUp 1.5s ease-out 0.5s both;
}

.about-content p {
font-size: 1.5rem;
color: #e0e0e0;
margin-bottom: 3rem;
}

.sound-toggle-btn {
position: absolute;
top: 40%;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.5);
border: 2px solid rgba(255, 255, 255, 0.4);
border-radius: 50%;
width: 60px;
height: 60px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
font-size: 1.5rem;
color: #ffffff;
}

.sound-toggle-btn:hover {
background: rgba(0, 0, 0, 0.7);
border-color: #ffffff;
transform: translateX(-50%) scale(1.1);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.sound-icon {
width: 24px;
height: 24px;
filter: brightness(0) invert(1);
transition: filter 0.3s ease;
}

.about-section.in-view .about-content p {
animation: fadeInUp 1.5s ease-out 1s both;
}

.arrow-down {
animation: bounce 2s infinite;
cursor: pointer;
transition: transform 0.3s ease;
}

.arrow-down:hover {
transform: scale(1.2);
}

.arrow-down svg {
width: 50px;
height: 50px;
}

@keyframes bounce {
0%,
20%,
50%,
80%,
100% {
transform: translateY(0);
}
40% {
transform: translateY(-10px);
}
60% {
transform: translateY(-5px);
}
}
/* Arrow Colors */

.arrow-white {
filter: invert(1);
}

.arrow-red {
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.arrow-green {
filter: brightness(0) saturate(100%) invert(19%) sepia(96%) saturate(7450%) hue-rotate(87deg) brightness(105%) contrast(105%);
}

.home-content {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
padding: 2rem;
}

.home-content h1 {
font-size: 4rem;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 3px;
color: #ffffff;
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
0%,
100% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
}

.home-content p {
font-size: 1.3rem;
max-width: 700px;
line-height: 1.8;
color: #b0b0b0;
font-style: italic;
}
/* Party Sections */

.party-details {
background: rgba(20, 20, 20, 0.9);
backdrop-filter: blur(15px);
border: 2px solid rgba(0, 255, 136, 0.4);
border-radius: 20px;
padding: 2.5rem;
margin: 2rem 0;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
position: relative;
overflow: hidden;
}

.party-details::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: #00ff88;
}

.party-details p {
margin-bottom: 0.8rem;
font-size: 1.2rem;
color: #e0e0e0;
}

select {
background: rgba(30, 30, 30, 0.9);
border: 2px solid rgba(0, 255, 136, 0.4);
border-radius: 10px;
color: #e0e0e0;
font-family: sans-serif;
font-size: 1.1rem;
padding: 0.8rem 1.2rem;
margin: 1rem auto;
display: block;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
min-width: 250px;
}

select:hover {
border-color: #00ff88;
box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

select:focus {
outline: none;
border-color: #e22bc6;
box-shadow: 0 0 25px rgba(189, 43, 226, 0.4);
}

#timer {
font-size: 3rem;
font-family: sans-serif;
color: #ffffff;
text-align: center;
margin: 2rem 0;
text-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
background: rgba(0, 255, 136, 0.1);
padding: 1.5rem 2rem;
border-radius: 15px;
border: 2px solid rgba(0, 255, 136, 0.3);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

.party-time-info {
font-size: 1.5rem;
font-family: 'CustomFont', serif;
color: #ffffff;
text-align: center;
margin: 1.5rem 0;
text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
background: rgba(0, 255, 136, 0.08);
padding: 1rem 1.5rem;
border-radius: 12px;
border: 2px solid rgba(0, 255, 136, 0.25);
box-shadow: 0 6px 20px rgba(0, 255, 136, 0.15);
max-width: 300px;
margin-left: auto;
margin-right: auto;
}

.party-time-info p {
margin: 0.3rem 0;
font-weight: 600;
}
/* Cards */

.cards-section {
margin: 2rem 0;
}

.cards-section h3 {
text-align: center;
margin-bottom: 1rem;
margin-top: 2rem;
font-size: 2rem;
color: #ffffff;
padding-top: 2rem;
}

.cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
padding: 1rem 0;
}

.partners-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
padding: 1rem 0;
}

.dj-cards {
display: flex;
justify-content: center;
}

.dj-cards .card {
width: 300px;
}

.dj-slider {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}

#prev-dj,
#next-dj,
#prev-prev-dj,
#next-prev-dj {
cursor: pointer;
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 10px;
background: rgba(0, 0, 0, 0.5);
overflow: hidden;
min-width: 44px;
min-height: 44px;
}

#next-dj::after,
#next-prev-dj::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(270deg);
width: 20px;
height: 20px;
background-image: url('assets/arrow.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

#prev-dj::after,
#prev-prev-dj::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(90deg);
width: 20px;
height: 20px;
background-image: url('assets/arrow.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

#prev-dj::before,
#next-dj::before,
#prev-prev-dj::before,
#next-prev-dj::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
}

#prev-dj:hover::before,
#next-dj:hover::before,
#prev-prev-dj:hover::before,
#next-prev-dj:hover::before {
left: 100%;
}

#prev-dj:hover,
#next-dj:hover,
#prev-prev-dj:hover,
#next-prev-dj:hover {
transform: scale(1.1);
box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
}

.dj-slider {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}

.card {
background: rgba(20, 20, 20, 0.9);
backdrop-filter: blur(15px);
border: 1px solid rgba(0, 255, 136, 0.3);
border-radius: 15px;
overflow: visible;
transition: all 0.2s ease;
cursor: pointer;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
position: relative;
will-change: transform;
min-height: 280px;
width: 100%;
display: flex;
flex-direction: column;
}

.card.partner-card {
max-height: 200px;
}

.card::before {
content: '';
position: absolute;
top: 0;
left: 10px;
right: 10px;
height: 3px;
background: #00ff88;
transform: scaleX(0);
transition: transform 0.3s ease;
transform-origin: center;
}

.card:hover::before {
transform: scaleX(1);
}

.card {
will-change: transform;
}

.card:hover {
transform: translateY(-5px) scale(1.01);
box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
border-color: #00ff88;
}

.card img {
width: 100%;
height: 220px;
object-fit: cover;
transition: transform 0.3s ease;
}

.card:hover img {
transform: scale(1.05);
}

.card-content {
padding: 1.5rem;
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.dj-card-content {
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 200px;
text-align: center;
}

.dj-time {
font-size: 0.9rem;
color: #8a2be2;
font-weight: bold;
margin: 0.5rem 0;
}

.card h4 {
color: #ffffff;
margin-bottom: 0.5rem;
font-size: 1.3rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.card p {
font-size: 0.95rem;
line-height: 1.5;
color: #b0b0b0;
}

.instagram-link {
color: #ffffff;
text-decoration: none;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
margin-top: 0.5rem;
padding: 0.8rem 0.6rem;
border-radius: 10px;
transition: all 0.3s ease;
opacity: 1;
visibility: visible;
position: relative;
z-index: 10;
background: transparent;
border: 1px solid rgba(0, 255, 136, 0.3);
width: 100%;
box-sizing: border-box;
align-self: stretch;
height: auto;
min-height: 3rem;
flex-shrink: 0;
}

.instagram-link:hover {
color: #8a2be2;
background: rgba(0, 255, 136, 0.1);
}

.instagram-icon {
width: 24px;
height: 24px;
vertical-align: middle;
}

.dj-logo {
width: 50px !important;
height: 50px !important;
object-fit: contain;
margin: 1.5rem auto 0.3rem;
display: block;
filter: grayscale(100%) brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.dj-logo.large {
width: 80px !important;
height: 80px !important;
margin: 0.2rem auto 0.2rem !important;
}

.participant-card-content {
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 200px;
text-align: center;
}

.participant-card-content .role {
font-weight: bold;
color: #ffffff;
margin-bottom: 0.5rem;
}

.participant-card-content .description {
color: #b0b0b0;
margin-bottom: 1rem;
}

.partner-logo {
width: 110px !important;
height: 110px !important;
object-fit: contain;
margin: 0.5rem auto;
transition: transform 0.3s ease, opacity 0.3s ease;
flex-shrink: 0;
display: block;
opacity: 0;
border-radius: 8px;
max-width: 100%;
max-height: 100%;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
/* Larger partner logos in upcoming events section */

#upcoming .partner-logo {
width: 130px !important;
height: 130px !important;
max-width: 100%;
max-height: 100%;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}

.partner-logo.loaded {
opacity: 1;
}

.partner-logo:hover {
transform: scale(1.05);
}

.partner-card-content {
text-align: center;
padding: 0.5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1;
}

.partner-card-content h4 {
margin-bottom: 0.3rem;
font-size: 1rem;
flex-shrink: 0;
}

.partner-card-content .instagram-link {
margin-top: 0.3rem;
flex-shrink: 0;
}
/* Participants Section Styles */

.category-nav {
display: flex;
justify-content: center;
gap: 1rem;
margin: 2rem 0;
flex-wrap: wrap;
}

.category-btn {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
color: #ffffff;
padding: 0.8rem 1.5rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'RussianFont', 'CustomFont', serif;
font-size: 0.9rem;
font-weight: 600;
}

.category-btn:hover,
.category-btn.active {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.participants-slider {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin: 3rem 0;
max-width: 100%;
}

.slider-btn {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
width: 60px;
height: 60px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
min-width: 44px;
min-height: 44px;
}

.slider-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
transition: left 0.5s ease;
}

.slider-btn:hover::before {
left: 100%;
}

.slider-btn:hover {
transform: scale(1.1);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6);
}

.slider-btn:nth-child(1)::after {
content: '';
width: 20px;
height: 20px;
background-image: url('assets/arrow.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
filter: invert(1);
transform: rotate(90deg);
}

.slider-btn:nth-child(3)::after {
content: '';
width: 20px;
height: 20px;
background-image: url('assets/arrow.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
filter: invert(1);
transform: rotate(-90deg);
}

.participant-display {
flex: 1;
max-width: 600px;
margin: 0 1rem;
}

.participant-card-large {
background: rgba(20, 20, 20, 0.9);
backdrop-filter: blur(15px);
border: 2px solid rgba(0, 255, 136, 0.4);
border-radius: 30px;
padding: 3rem;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
position: relative;
overflow: hidden;
}

.participant-card-large::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #00ff88, rgba(0, 255, 136, 0.8), #00ff88);
animation: gradientShift 3s ease-in-out infinite;
}

.participant-large-content {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.participant-info h3 {
font-size: 2.5rem;
color: #ffffff;
margin-bottom: 0.5rem;
text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
font-family: 'RussianFont', serif;
}

.participant-role {
font-size: 1.2rem;
color: #8a2be2;
margin-bottom: 1rem;
font-weight: bold;
font-family: 'RussianFont', serif;
}

.participant-description {
font-size: 1.1rem;
color: #b0b0b0;
margin-bottom: 2rem;
line-height: 1.6;
max-width: 400px;
margin-left: auto;
margin-right: auto;
font-family: 'RussianFont', serif;
}

.instagram-link-large {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(0, 255, 136, 0.1);
color: #ffffff;
text-decoration: none;
padding: 1rem 2rem;
border-radius: 25px;
border: 2px solid rgba(0, 255, 136, 0.3);
transition: all 0.3s ease;
font-weight: 600;
font-family: 'RussianFont', serif;
}

.instagram-link-large:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.mini-cards-container {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-top: 2rem;
flex-wrap: wrap;
max-width: 100%;
}

.mini-card {
background: rgba(30, 30, 30, 0.8);
border: 1px solid rgba(0, 255, 136, 0.2);
border-radius: 15px;
padding: 0.8rem 1rem;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
min-width: 120px;
}

.mini-card:hover,
.mini-card.active {
background: rgba(0, 255, 136, 0.1);
border-color: #00ff88;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.mini-name {
font-size: 0.9rem;
color: #ffffff;
font-weight: 600;
margin-bottom: 0.2rem;
font-family: 'RussianFont', serif;
}

.mini-role {
font-size: 0.7rem;
color: #b0b0b0;
font-family: 'RussianFont', serif;
}
/* Mobile adjustments */

@media (max-width: 768px) {
.participants-slider {
flex-direction: row;
gap: 0.5rem;
align-items: center;
justify-content: center;
}
.participant-card-large {
padding: 1.5rem;
margin: 0;
max-width: calc(100vw - 120px);
}
.participant-info h3 {
font-size: 1.8rem;
}
.participant-description {
font-size: 0.9rem;
margin-bottom: 1.2rem;
}
.instagram-link-large {
padding: 0.7rem 1.2rem;
font-size: 0.8rem;
}
.category-nav {
gap: 0.5rem;
margin: 1.5rem 0;
}
.category-btn {
padding: 0.8rem 1.2rem;
font-size: 0.85rem;
border-radius: 20px;
min-width: 80px;
}
.slider-btn {
width: 55px;
height: 55px;
flex-shrink: 0;
min-width: 44px;
min-height: 44px;
}
.slider-btn::after {
width: 14px;
height: 14px;
}
.mini-cards-container {
gap: 0.5rem;
padding: 0 3rem;
justify-content: flex-start;
overflow-x: auto;
scrollbar-width: none;
-ms-overflow-style: none;
margin-top: 2rem;
}
.mini-cards-container::-webkit-scrollbar {
display: none;
}
.mini-card {
min-width: 110px;
padding: 0.7rem 0.9rem;
flex-shrink: 0;
}
.mini-name {
font-size: 0.85rem;
}
.mini-role {
font-size: 0.65rem;
}
}

.smuta-logo {
width: auto;
height: 4rem;
filter: drop-shadow(0 0 30px #00ff88) drop-shadow(0 0 60px #00ff88);
margin: 0;
padding: 0;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: -0.5rem;
}
/* Russian font for sections except archive */

#home,
#participants,
#upcoming,
#support {
font-family: 'RussianFont', 'CustomFont', serif;
}

#home h1,
#home p,
#participants h2,
#participants .card h4,
#participants .card p,
#upcoming h2,
#upcoming .card h4,
#upcoming .card p,
#support h2,
#support p,
.nav-link {
font-family: 'RussianFont', 'CustomFont', serif;
}

#support h2 {
font-family: 'RussianFont', 'CustomFont', serif;
}
/* Support Section */

#support {
background: #0a0a0a;
position: relative;
overflow: hidden;
}

#support .video-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}

#support video {
width: 100%;
height: 100%;
object-fit: cover;
filter: blur(36px);
}

#support .container {
position: relative;
z-index: 1;
text-align: center;
padding: 0 2rem;
}


.support-content {
display: flex;
justify-content: center;
align-items: center;
min-height: 60vh;
padding: 2rem 0;
}

.donation-section {
text-align: center;
background: rgba(20, 20, 20, 0.8);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 20px;
padding: 2rem;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
position: relative;
max-width: 600px;
width: 100%;
box-sizing: border-box;
}

.donation-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2rem;
background: transparent;
}

@media (min-width: 1200px) {
.donation-section {
margin: -2rem 0 1rem;
}
}

.donation-section h3 {
margin-bottom: 1rem;
font-size: 2.2rem;
font-family: 'RussianFont', 'CustomFont', serif;
}

.donation-section p {
margin-bottom: 2rem;
color: #b0b0b0;
font-size: 1.1rem;
font-family: 'RussianFont', 'CustomFont', serif;
}

.donation-main-btn {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
color: #ffffff;
padding: 1.2rem 3rem;
font-size: 1.3rem;
font-family: 'RussianFont', 'CustomFont', serif;
font-weight: 600;
cursor: pointer;
border-radius: 25px;
transition: all 0.4s ease;
box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
text-transform: none;
letter-spacing: 1px;
position: relative;
overflow: hidden;
margin-top: 2rem;
}

.donation-main-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
transition: left 0.5s ease;
}

.donation-main-btn:hover::before {
left: 100%;
}

.donation-main-btn:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
}

.donation-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(8px);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
from {
opacity: 0;
backdrop-filter: blur(0px);
}
to {
opacity: 1;
backdrop-filter: blur(8px);
}
}

.donation-modal-content {
background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 25px;
padding: 2rem;
text-align: center;
max-width: 450px;
width: 90%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
position: relative;
overflow: hidden;
animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
from {
opacity: 0;
transform: scale(0.9) translateY(20px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}

.donation-modal-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8), #ffffff);
animation: gradientShift 3s ease-in-out infinite;
}

.donation-modal-content h3 {
margin-bottom: 1.5rem;
color: #ffffff;
font-size: 1.6rem;
font-family: 'RussianFont', 'CustomFont', serif;
text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
letter-spacing: 1px;
}

.donation-options {
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 1.5rem;
}

.donation-option-btn {
background: rgba(0, 255, 136, 0.08);
border: 1px solid rgba(0, 255, 136, 0.2);
color: #ffffff;
padding: 1.2rem 1.5rem;
border-radius: 15px;
cursor: pointer;
font-family: 'RussianFont', 'CustomFont', serif;
font-size: 1rem;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
text-align: left;
}

.donation-option-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
transition: left 0.5s ease;
}

.donation-option-btn:hover::before {
left: 100%;
}

.donation-option-btn:hover {
background: rgba(0, 255, 136, 0.15);
border-color: rgba(0, 255, 136, 0.4);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

.option-content {
display: flex;
flex-direction: column;
gap: 0.3rem;
}

.option-name {
font-size: 1.1rem;
font-weight: 700;
letter-spacing: 0.5px;
}

.option-desc {
font-size: 0.85rem;
color: #b0b0b0;
font-weight: 400;
opacity: 0.8;
}

.close-modal-btn {
background: rgba(0, 255, 136, 0.1);
border: 1px solid rgba(0, 255, 136, 0.3);
color: #ffffff;
padding: 0.8rem 2rem;
border-radius: 12px;
cursor: pointer;
font-family: 'RussianFont', 'CustomFont', serif;
font-size: 0.95rem;
font-weight: 600;
transition: all 0.3s ease;
letter-spacing: 0.5px;
}

.close-modal-btn:hover {
background: rgba(0, 255, 136, 0.2);
border-color: rgba(0, 255, 136, 0.5);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}
/* Album Links */

#albums-content {
text-align: center;
}

#albums-content a {
display: inline-block;
background: rgba(0, 255, 136, 0.1);
color: #ffffff;
text-decoration: none;
padding: 0 2rem;
border-radius: 25px;
border: 2px solid rgba(0, 255, 136, 0.3);
font-family: 'CustomFont', serif;
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.4s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
margin: 0.5rem;
}

#albums-content a:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
color: #8a2be2;
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

#albums-content p {
color: #888;
font-style: italic;
font-size: 1.1rem;
margin: 1rem 0;
}

.album-links {
display: flex;
flex-direction: column;
gap: 0.5rem;
align-items: center;
}

.album-links a {
background: rgba(0, 0, 0, 0.5);
color: #ffffff;
text-decoration: none;
padding: 0.8rem 1.5rem;
border-radius: 20px;
border: 2px solid rgba(0, 255, 136, 0.3);
font-family: 'CustomFont', serif;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.4s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
width: fit-content;
}

.album-links a:hover {
background: rgba(0, 0, 0, 0.7);
border-color: #00ff88;
color: #ffffff;
transform: translateY(-3px) scale(1.02);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.party-albums {
margin-bottom: 3rem;
}

.party-albums h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
}

#previous-party-content {
text-align: center;
}
/* Animations */

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.section.in-view {
animation: fadeInUp 1s ease-out;
}
/* Red Theme for Specific Party */

#previous.red-theme {
color: #ff6b6b;
}

#previous.red-theme h2,
#previous.red-theme h3,
#previous.red-theme .party-details p,
#previous.red-theme .card h4,
#previous.red-theme .card p,
#previous.red-theme .album-links a {
color: #ff6b6b;
text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

#previous.red-theme .party-details {
border: 2px solid rgba(255, 107, 107, 0.4);
box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

#previous.red-theme .party-details::before {
background: #ff6b6b;
}

#previous.red-theme .card {
border: 1px solid rgba(255, 107, 107, 0.3);
box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

#previous.red-theme .card.partner-card {
max-height: 200px;
}

#previous.red-theme .card::before {
background: #ff6b6b;
}

#previous.red-theme .card:hover {
border-color: #ff6b6b;
box-shadow: 0 20px 60px rgba(255, 107, 107, 0.4);
}

#previous.red-theme .instagram-link {
color: #ff6b6b;
}

#previous.red-theme .instagram-link:hover {
color: #ffa500;
background: rgba(255, 107, 107, 0.1);
}

#previous.red-theme .album-links a {
background: rgba(0, 0, 0, 0.5);
color: #ff6b6b;
border: 2px solid rgba(255, 107, 107, 0.3);
}

#previous.red-theme .album-links a:hover {
background: rgba(0, 0, 0, 0.7);
border-color: #ff6b6b;
color: #ffa500;
box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

#previous.red-theme select {
border: 2px solid rgba(255, 107, 107, 0.4);
color: #ff6b6b;
box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

#previous.red-theme select:hover {
border-color: #ff6b6b;
box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

#previous.red-theme select:focus {
border-color: #ffa500;
box-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
}

#previous.red-theme .dj-logo {
filter: brightness(0) saturate(100%) invert(19%) sepia(96%) saturate(7450%) hue-rotate(359deg) brightness(105%) contrast(105%);
}

#previous.red-theme #prev-prev-dj,
#previous.red-theme #next-prev-dj {
border: 1px solid rgba(255, 107, 107, 0.3);
background: rgba(0, 0, 0, 0.5);
}

#previous.red-theme #prev-prev-dj:hover,
#previous.red-theme #next-prev-dj:hover {
box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

#previous.red-theme #next-prev-dj::after,
#previous.red-theme #next-prev-dj::after {
filter: brightness(0) saturate(100%) invert(19%) sepia(96%) saturate(7450%) hue-rotate(359deg) brightness(105%) contrast(105%);
}

#previous.red-theme #prev-prev-dj::after,
#previous.red-theme #prev-prev-dj::after {
filter: brightness(0) saturate(100%) invert(19%) sepia(96%) saturate(7450%) hue-rotate(359deg) brightness(105%) contrast(105%);
}
/* White Theme for Specific Party */

#previous.white-theme {
color: #ffffff;
}

#previous.white-theme h2,
#previous.white-theme h3,
#previous.white-theme .party-details p,
#previous.white-theme .card h4,
#previous.white-theme .card p,
#previous.white-theme .album-links a {
color: #ffffff;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#previous.white-theme .party-details {
border: 2px solid rgba(255, 255, 255, 0.4);
box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

#previous.white-theme .party-details::before {
background: #ffffff;
}

#previous.white-theme .card {
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

#previous.white-theme .card.partner-card {
max-height: 200px;
}

#previous.white-theme .card::before {
background: #ffffff;
}

#previous.white-theme .card:hover {
border-color: #ffffff;
box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4);
}

#previous.white-theme .instagram-link {
color: #ffffff;
}

#previous.white-theme .instagram-link:hover {
color: #ffa500;
background: rgba(255, 255, 255, 0.1);
}

#previous.white-theme .album-links a {
background: rgba(0, 0, 0, 0.5);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.3);
}

#previous.white-theme .album-links a:hover {
background: rgba(0, 0, 0, 0.7);
border-color: #ffffff;
color: #ffa500;
box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#previous.white-theme select {
border: 2px solid rgba(255, 255, 255, 0.4);
color: #ffffff;
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

#previous.white-theme select:hover {
border-color: #ffffff;
box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

#previous.white-theme select:focus {
border-color: #ffa500;
box-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
}

#previous.white-theme .dj-logo {
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

#previous.white-theme #prev-prev-dj,
#previous.white-theme #next-prev-dj {
border: 1px solid rgba(255, 255, 255, 0.3);
background: rgba(0, 0, 0, 0.5);
}

#previous.white-theme #prev-prev-dj:hover,
#previous.white-theme #next-prev-dj:hover {
box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
}

#previous.white-theme #next-prev-dj::after,
#previous.white-theme #next-prev-dj::after {
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

#previous.white-theme #prev-prev-dj::after,
#previous.white-theme #prev-prev-dj::after {
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
/* Red Nav Theme */

.nav-link.red-nav {
color: #ff6b6b;
border-color: rgba(255, 107, 107, 0.4);
background: rgba(255, 107, 107, 0.08);
font-family: 'CustomFont', serif;
}

.nav-link.red-nav::before {
background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
}

.nav-link.red-nav:hover,
.nav-link.red-nav.active {
color: #ffffff;
border-color: #ff6b6b;
background: rgba(255, 107, 107, 0.3);
box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}
/* White Nav Theme */

.nav-link.white-nav {
color: #ffffff;
border-color: rgba(255, 255, 255, 0.4);
background: rgba(255, 255, 255, 0.08);
font-family: 'CustomFont', serif;
}

.nav-link.white-nav::before {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.nav-link.white-nav:hover,
.nav-link.white-nav.active {
color: #ffffff;
border-color: #ffffff;
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Social Float Button */

.social-float-btn {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background: rgba(0, 255, 136, 0.1);
backdrop-filter: blur(10px);
border: 2px solid rgba(0, 255, 136, 0.3);
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
z-index: 1000;
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.social-float-btn:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
transform: scale(1.1);
box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
}

.social-icon {
width: 24px;
height: 24px;
color: #ffffff;
transition: transform 0.3s ease;
}

.social-float-btn.active .social-icon {
transform: rotate(45deg);
}
/* Social Popup */

.social-popup {
position: fixed;
bottom: 90px;
right: 20px;
display: flex;
flex-direction: column;
gap: 10px;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.3s ease;
z-index: 999;
}

.social-popup.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.social-link {
width: 50px;
height: 50px;
background: rgba(0, 255, 136, 0.1);
backdrop-filter: blur(10px);
border: 2px solid rgba(0, 255, 136, 0.3);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(0, 255, 136, 0.2);
text-decoration: none;
}

.social-link:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
transform: scale(1.1);
box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.social-link svg {
width: 20px;
height: 20px;
color: #ffffff;
}

.social-link.instagram:hover {
border-color: #E4405F;
box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.social-link.telegram:hover {
border-color: #0088CC;
box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.social-link.tiktok:hover {
border-color: #000000;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.social-link.youtube:hover {
border-color: #FF0000;
box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}
/* Mobile adjustments for social button */

@media (max-width: 768px) {
.social-float-btn {
bottom: 15px;
right: 15px;
width: 55px;
height: 55px;
}
.social-popup {
bottom: 80px;
right: 15px;
}
.social-link {
width: 45px;
height: 45px;
}
.social-link svg {
width: 18px;
height: 18px;
}
}
/* Responsive Design */

@media (min-width: 1200px) {
.container {
max-width: 1400px;
}
.home-content h1 {
font-size: 5rem;
}
.cards-container {
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
header {
padding: 1.2rem 2.5rem;
height: 65px;
}
#logo {
height: 70px;
}
#desktop-nav {
gap: 0.5rem;
margin-left: 2rem;
margin-top: 2.5rem;
}
#desktop-nav .nav-link {
font-size: 1.2rem;
padding: 0.09rem 0.45rem;
height: 3rem;
flex: 1;
max-width: 12rem;
}
}
/* ARM and iOS optimizations */

@media (max-width: 768px) {
/* Reduce motion for better performance on mobile */
*,
*::before,
*::after {
animation-duration: 0.2s !important;
animation-delay: 0s !important;
transition-duration: 0.2s !important;
transition-delay: 0s !important;
}
/* Keep original bounce animation speed on mobile for better UX */
.scroll-arrow {
animation: bounce 2s infinite !important;
}
/* Disable complex animations on low-power devices */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
/* Optimize video performance */
video {
will-change: auto;
transform: translateZ(0);
backface-visibility: hidden;
}
/* Reduce blur effects on mobile */
.video-background video {
filter: none;
}
#support video {
filter: blur(18px);
}
}

@media (max-width: 480px) {
.cards-container {
grid-template-columns: 1fr;
gap: 0.8rem;
}
.card {
min-height: 280px;
}
.card img {
height: 220px;
}
.card h4 {
font-size: 1.1rem;
}
.card p {
font-size: 0.85rem;
}
.instagram-link {
min-height: 2.2rem;
padding: 0.5rem 0.4rem;
font-size: 0.85rem;
}
.partner-logo {
width: 50px !important;
height: 50px !important;
max-width: 100%;
}
}
@media (max-width: 768px) {
.home-content h1 {
font-size: 2.5rem;
letter-spacing: 2px;
}
.home-content p {
font-size: 1.1rem;
}
h2 {
font-size: 1.8rem;
}
h3 {
font-size: 1.5rem;
}
.cards-container {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1rem;
}
.card {
max-width: 100%;
min-height: 280px;
}
.card img {
height: 220px;
}
.card h4 {
font-size: 1.1rem;
}
.card p {
font-size: 0.9rem;
}
.instagram-link {
min-height: 2.5rem;
padding: 0.6rem 0.5rem;
font-size: 0.9rem;
}
#timer {
font-size: 1.8rem;
padding: 0.8rem;
}
.party-details {
padding: 1.5rem;
}
.donation-section {
padding: 2rem 1rem;
}
#donate-btn {
padding: 1rem 2rem;
font-size: 1.1rem;
}
#support {
padding-top: 6rem;
}
.dj-slider {
flex-direction: row;
justify-content: space-between;
align-items: center;
gap: 0;
}
.dj-cards .card {
width: 200px;
}
.dj-cards .card img {
height: 150px;
}
.dj-cards .card h4 {
font-size: 1rem;
}
.dj-cards .card p {
font-size: 0.8rem;
}
.dj-logo {
width: 50px;
height: 50px;
margin: 1rem auto 0.5rem;
filter: grayscale(100%) brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
#prev-dj,
#next-dj,
#prev-prev-dj,
#next-prev-dj {
width: 55px;
height: 55px;
flex-shrink: 0;
min-width: 44px;
min-height: 44px;
}
#next-dj::after,
#next-prev-dj::after {
border-left-width: 12px;
border-top-width: 8px;
border-bottom-width: 8px;
}
#prev-dj::after,
#prev-prev-dj::after {
border-right-width: 12px;
border-top-width: 8px;
border-bottom-width: 8px;
}
.about-content h1 {
font-size: 2.5rem;
}
.about-content p {
font-size: 1.1rem;
}
.partner-logo {
width: 90px !important;
height: 90px !important;
max-width: 100%;
}
}
/* Green Theme for Main Site */
.green-theme .nav-link {
border: 2px solid rgba(0, 255, 136, 0.4);
background: rgba(0, 255, 136, 0.08);
}
.green-theme .nav-link::before {
background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
}
.green-theme .nav-link:hover,
.green-theme .nav-link.active {
border-color: #00ff88;
background: rgba(0, 255, 136, 0.3);
box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.green-theme #back-btn {
background: #00ff88;
box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}
.green-theme #back-btn:hover {
box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
}
.green-theme #menu-back-btn {
border: 2px solid rgba(0, 255, 136, 0.4);
background: rgba(0, 255, 136, 0.08);
}
.green-theme #menu-back-btn:hover {
border-color: #00ff88;
background: rgba(0, 255, 136, 0.15);
box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.green-theme .party-details {
border: 2px solid rgba(0, 255, 136, 0.4);
}
.green-theme .party-details::before {
background: #00ff88;
}
.green-theme select {
border: 2px solid rgba(0, 255, 136, 0.4);
}
.green-theme select:hover {
border-color: #00ff88;
box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}
.green-theme select:focus {
border-color: #ffb6c1;
box-shadow: 0 0 25px rgba(255, 182, 193, 0.4);
}
.green-theme #timer {
text-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}
.green-theme .party-time-info {
text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
background: rgba(0, 255, 136, 0.08);
border: 2px solid rgba(0, 255, 136, 0.25);
box-shadow: 0 6px 20px rgba(0, 255, 136, 0.15);
}
.green-theme .card {
border: 1px solid rgba(0, 255, 136, 0.3);
}
.green-theme .card::before {
background: #00ff88;
}
.green-theme .card:hover {
box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
border-color: #00ff88;
}
.green-theme .instagram-link {
border: 1px solid rgba(0, 255, 136, 0.3);
}
.green-theme .instagram-link:hover {
color: #ffb6c1;
background: rgba(0, 255, 136, 0.1);
}
.green-theme .category-btn {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
}
.green-theme .category-btn:hover,
.green-theme .category-btn.active {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}
.green-theme .slider-btn {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
}
.green-theme .slider-btn::before {
background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
}
.green-theme .slider-btn:hover {
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6);
}
.green-theme .participant-card-large {
border: 2px solid rgba(0, 255, 136, 0.4);
}
.green-theme .participant-card-large::before {
background: linear-gradient(90deg, #00ff88, rgba(0, 255, 136, 0.8), #00ff88);
}
.green-theme .instagram-link-large {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
}
.green-theme .instagram-link-large:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}
.green-theme .mini-card {
border: 1px solid rgba(0, 255, 136, 0.2);
}
.green-theme .mini-card:hover,
.green-theme .mini-card.active {
background: rgba(0, 255, 136, 0.1);
border-color: #00ff88;
box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}
.green-theme .donation-main-btn {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}
.green-theme .donation-main-btn::before {
background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
}
.green-theme .donation-main-btn:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
}
.green-theme .donation-option-btn {
background: rgba(0, 255, 136, 0.08);
border: 1px solid rgba(0, 255, 136, 0.2);
}
.green-theme .donation-option-btn::before {
background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
}
.green-theme .donation-option-btn:hover {
background: rgba(0, 255, 136, 0.15);
border-color: rgba(0, 255, 136, 0.4);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}
.green-theme .close-modal-btn {
background: rgba(0, 255, 136, 0.1);
border: 1px solid rgba(0, 255, 136, 0.3);
}
.green-theme .close-modal-btn:hover {
background: rgba(0, 255, 136, 0.2);
border-color: rgba(0, 255, 136, 0.5);
box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}
.green-theme #albums-content a {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
}
.green-theme #albums-content a:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
color: #ffb6c1;
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.green-theme .album-links a {
border: 2px solid rgba(0, 255, 136, 0.3);
}
.green-theme .album-links a:hover {
border-color: #00ff88;
color: #ffb6c1;
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.green-theme .social-float-btn {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}
.green-theme .social-float-btn:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
}
.green-theme .social-link {
background: rgba(0, 255, 136, 0.1);
border: 2px solid rgba(0, 255, 136, 0.3);
box-shadow: 0 6px 20px rgba(0, 255, 136, 0.2);
}
.green-theme .social-link:hover {
background: rgba(0, 255, 136, 0.2);
border-color: #00ff88;
box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}
.green-theme .about-section {
background: linear-gradient(180deg, #121212 0%, rgba(12, 66, 66, 0.705) 50%, rgba(33, 33, 33, 0.139) 100%);
}
.green-theme .dj-time {
color: #ffb6c1;
}
.green-theme .participant-role {
color: #ffb6c1;
}
.green-theme #logo {
filter: drop-shadow(0 0 30px #00ff88) drop-shadow(0 0 60px #00ff88);
}
.green-theme #logo:hover {
filter: brightness(0) saturate(100%) invert(56%) sepia(96%) saturate(744%) hue-rotate(87deg) brightness(135%) contrast(105%) drop-shadow(0 0 50px #00ff88) drop-shadow(0 0 100px #00ff88);
}
.green-theme #loading-screen img {
filter: drop-shadow(0 0 30px #00ff88) drop-shadow(0 0 60px #00ff88);
}
.green-theme .smuta-logo {
filter: drop-shadow(0 0 30px #00ff88) drop-shadow(0 0 60px #00ff88);
}
.green-theme .arrow-green {
filter: brightness(0) saturate(100%) invert(56%) sepia(96%) saturate(744%) hue-rotate(87deg) brightness(105%) contrast(105%);
}
