/* PDF 2025 Event Page Styles - High Contrast Design */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* NEW: Edgy click hint animations */
@keyframes redPulse {
    0%, 100% {
        border-color: #000000;
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    50% {
        border-color: #ff0000;
        box-shadow: 0 0 0 5px rgba(255, 0, 0, 0.1), 0 0 15px rgba(255, 0, 0, 0.3);
    }
}

/* NEW: Multiple color pulse animations */
@keyframes colorPulse1 {
    0%, 100% {
        border-color: #000000;
        box-shadow: 0 0 0 0 rgba(223, 46, 47, 0.4);
    }
    50% {
        border-color: #df2e2f;
        box-shadow: 0 0 0 5px rgba(223, 46, 47, 0.1), 0 0 15px rgba(223, 46, 47, 0.3);
    }
}

@keyframes colorPulse2 {
    0%, 100% {
        border-color: #000000;
        box-shadow: 0 0 0 0 rgba(205, 225, 76, 0.4);
    }
    50% {
        border-color: #cde14c;
        box-shadow: 0 0 0 5px rgba(205, 225, 76, 0.1), 0 0 15px rgba(205, 225, 76, 0.3);
    }
}

@keyframes colorPulse3 {
    0%, 100% {
        border-color: #000000;
        box-shadow: 0 0 0 0 rgba(221, 190, 30, 0.4);
    }
    50% {
        border-color: #226e83;
        box-shadow: 0 0 0 5px rgba(221, 190, 30, 0.1), 0 0 15px rgba(221, 190, 30, 0.3);
    }
}

@keyframes subtleShake {
    0%, 100% { transform: translateX(0) scale(1); }
    25% { transform: translateX(-1px) scale(1.02); }
    75% { transform: translateX(1px) scale(1.02); }
}

@keyframes clickMeBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    40% {
        transform: translateY(-3px) scale(1.05);
        opacity: 1;
    }
    60% {
        transform: translateY(-1px) scale(1.02);
        opacity: 1;
    }
}

/* NEW: Multiple color glow intro animations */
@keyframes glowIntro1 {
    0% {
        border-color: #000000;
        box-shadow: none;
    }
    100% {
        border-color: #df2e2f;
        box-shadow: 0 0 0 2px rgba(223, 46, 47, 0.3);
    }
}

@keyframes glowIntro2 {
    0% {
        border-color: #000000;
        box-shadow: none;
    }
    100% {
        border-color: #cde14c;
        box-shadow: 0 0 0 2px rgba(205, 225, 76, 0.3);
    }
}

@keyframes glowIntro3 {
    0% {
        border-color: #000000;
        box-shadow: none;
    }
    100% {
        border-color: #226e83;
        box-shadow: 0 0 0 2px rgba(221, 190, 30, 0.3);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    /* Prevent text selection and image highlighting */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Allow text selection for specific elements if needed */
input, textarea, .selectable-text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent image dragging and highlighting */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    border: none;
}

/* Remove focus/active states from images and links */
img:focus,
img:active,
a:focus,
a:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Link */
.top-link {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 15px 20px;
    z-index: 1000;
    text-align: center;
    border-bottom: 3px solid #000000;
}

.top-link a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Times New Roman', serif;
}

.top-link a:hover {
    text-decoration: underline;
}

/* Event Header */
.event-header {
    padding: 40px 0 60px;
    background: #000000;
    text-align: left;
}

.event-title {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.event-title a {
    color: #ffffff;
    text-decoration: none;
}

.event-title a:hover {
    text-decoration: underline;
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

/* Event Image Container */
.event-image-container {
    background: #ffffff;
    border: 3px solid #000000;
    text-align: center;
    animation: fadeInUp 0.7s ease;
}

.event-img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    border-bottom: 3px solid #000000;
}

.event-description {
    padding: 20px;
    background: #000000;
    color: #ffffff;
    text-align: left;
    border-top: 3px solid #ffffff;
    font-family: 'Times New Roman', serif;
}

.event-description p {
    margin-bottom: 15px;
}

.event-description p:last-child {
    margin-bottom: 0;
}

.event-description strong {
    font-weight: bold;
    color: #ffffff;
}

.event-description a {
    color: #ffffff;
    text-decoration: underline;
}

.event-description a:hover {
    color: #cccccc;
}

/* Random colored links */
.event-description a:nth-child(1) { color: #ff6b6b; }
.event-description a:nth-child(2) { color: #4ecdc4; }
.event-description a:nth-child(3) { color: #45b7d1; }
.event-description a:nth-child(4) { color: #96ceb4; }
.event-description a:nth-child(5) { color: #feca57; }
.event-description a:nth-child(6) { color: #ff9ff3; }
.event-description a:nth-child(7) { color: #54a0ff; }
.event-description a:nth-child(8) { color: #5f27cd; }
.event-description a:nth-child(9) { color: #00d2d3; }
.event-description a:nth-child(10) { color: #ff6348; }

/* Alternative approach - random colors for each link */
.event-description p:nth-child(5) a { color: #ff6b6b; } /* Spotify album link */
.event-description p:nth-child(7) a { color: #4ecdc4; } /* YouTube video link */
.event-description p:nth-child(8) a:nth-child(1) { color: #45b7d1; } /* First Spotify track */
.event-description p:nth-child(8) a:nth-child(2) { color: #96ceb4; } /* Second Spotify track */

/* Commission Members */
.commission-member {
    background: #ffffff;
    border: 3px solid #000000;
    text-align: center;
    animation: fadeInUp 0.8s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commission-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.commission-member:nth-child(1) {
    animation-delay: 0.2s;
}

.commission-member:nth-child(2) {
    animation-delay: 0.4s;
}

.commission-member:nth-child(3) {
    animation-delay: 0.6s;
}

.commission-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    border-bottom: 3px solid #000000;
}

.commission-description {
    padding: 20px;
    background: #000000;
    color: #ffffff;
    text-align: left;
    border-top: 3px solid #ffffff;
    font-family: 'Times New Roman', serif;
}

.commission-description h4 {
    font-family: 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.commission-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.commission-description p:last-child {
    margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .main-grid {
        gap: 15px;
    }
    
    .event-description,
    .commission-description {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .commission-description h4 {
        font-size: 1.1rem;
    }
    
    .event-title {
        font-size: 2rem;
    }
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .main-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
        align-items: start;
    }
    
    .event-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Participants Section */
.participants-section {
    padding: 60px 0;
    background: #000000;
}

.section-title {
    font-family: 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.click-instruction {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.5s both;
}

.instruction-text {
    display: block;
    color: #ff0000;
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.instruction-subtext {
    display: block;
    color: #ffffff;
    font-family: 'Times New Roman', serif;
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.8;
    font-style: italic;
}

/* Mobile Grid (3 columns) */
.participants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
}

.participant-card {
    background: #000000;
    border: 3px solid #000000;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.participant-card::before {
    content: "SPAUSK";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #df2e2f;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px;
    font-family: 'Times New Roman', serif;
    z-index: 10;
    animation: clickMeBounce 3s ease-in-out infinite;
    animation-delay: 3s;
    opacity: 0;
    animation-fill-mode: both;
}

/* Color-specific badge styles */
.participant-card.color-1::before {
    background: #df2e2f;
}

.participant-card.color-2::before {
    background: #cde14c;
    color: #000000;
}

.participant-card.color-3::before {
    background: #226e83;
    color: #000000;
}

.participant-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    animation: colorPulse1 2s ease-in-out infinite;
}

.participant-card.color-1:hover {
    animation: colorPulse1 2s ease-in-out infinite;
}

.participant-card.color-2:hover {
    animation: colorPulse2 2s ease-in-out infinite;
}

.participant-card.color-3:hover {
    animation: colorPulse3 2s ease-in-out infinite;
}

.participant-card:hover::before {
    animation: none;
    opacity: 0;
}

/* Color-specific glow intro animations - applied via JavaScript */
.participant-card.color-1 {
    animation: fadeInUp 0.6s ease forwards, glowIntro1 1s ease 2s forwards, subtleShake 0.5s ease var(--shake-delay, 8s);
}

.participant-card.color-2 {
    animation: fadeInUp 0.6s ease forwards, glowIntro2 1s ease 2.5s forwards, subtleShake 0.5s ease var(--shake-delay, 10s);
}

.participant-card.color-3 {
    animation: fadeInUp 0.6s ease forwards, glowIntro3 1s ease 3s forwards, subtleShake 0.5s ease var(--shake-delay, 12s);
}

.participant-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.participant-image:hover {
    filter: brightness(1.1);
}

.participant-name {
    position: static;
    background: #000000;
    color: #ffffff;
    padding: 12px 8px;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
    font-family: 'Times New Roman', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.participant-name:hover {
    background: #333333;
}

/* Mobile Modal */
.participant-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    padding: 20px;
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

.participant-modal.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #ffffff;
    border: 3px solid #000000;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s ease;
    transform-origin: center;
}

.modal-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.05);
}

.modal-info {
    padding: 25px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
    flex: 1;
    overflow-y: auto;
    max-height: 60vh;
}

.modal-name {
    font-family: 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000000;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    font-family: 'Times New Roman', serif;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Times New Roman', serif;
}

.modal-prev {
    left: 10px;
}

.modal-next {
    right: 10px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .participants-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        width: 100%;
    }
    
    .participant-card {
        background: #000000;
        color: #000000;
        border: 3px solid #000000;
        padding: 0;
        text-align: center;
        cursor: default;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        animation: fadeInUp 0.6s ease forwards;
    }

    .participant-card::before {
        content: "SPAUSK";
        position: absolute;
        top: -8px;
        right: -8px;
        background: #df2e2f;
        color: #ffffff;
        font-size: 0.5rem;
        font-weight: bold;
        padding: 3px 6px;
        border-radius: 2px;
        font-family: 'Times New Roman', serif;
        z-index: 10;
        animation: clickMeBounce 3s ease-in-out infinite;
        animation-delay: 4s;
        opacity: 0;
        animation-fill-mode: both;
    }

    /* Desktop color-specific badge styles */
    .participant-card.color-1::before {
        background: #df2e2f;
    }

    .participant-card.color-2::before {
        background: #cde14c;
        color: #000000;
    }

    .participant-card.color-3::before {
        background: #226e83;
        color: #000000;
    }
    
    .participant-card.expanded {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
        animation: none;
        border-color: #df2e2f;
    }

    .participant-card.expanded.color-1 {
        border-color: #df2e2f;
    }

    .participant-card.expanded.color-2 {
        border-color: #cde14c;
    }

    .participant-card.expanded.color-3 {
        border-color: #226e83;
    }

    .participant-card.expanded::before {
        opacity: 0;
        animation: none;
    }
    
    .participant-card:hover {
        transform: none;
        animation: colorPulse1 2s ease-in-out infinite;
    }

    .participant-card.color-1:hover {
        animation: colorPulse1 2s ease-in-out infinite;
    }

    .participant-card.color-2:hover {
        animation: colorPulse2 2s ease-in-out infinite;
    }

    .participant-card.color-3:hover {
        animation: colorPulse3 2s ease-in-out infinite;
    }

    .participant-card:hover::before {
        opacity: 0;
        animation: none;
    }

    /* Desktop color-specific animations - same as mobile but with different timing */
    @media (min-width: 768px) {
        .participant-card.color-1 {
            animation: fadeInUp 0.6s ease forwards, glowIntro1 1s ease 2s forwards, subtleShake 0.5s ease var(--shake-delay, 9s);
        }

        .participant-card.color-2 {
            animation: fadeInUp 0.6s ease forwards, glowIntro2 1s ease 2.5s forwards, subtleShake 0.5s ease var(--shake-delay, 11s);
        }

        .participant-card.color-3 {
            animation: fadeInUp 0.6s ease forwards, glowIntro3 1s ease 3s forwards, subtleShake 0.5s ease var(--shake-delay, 13s);
        }
    }
    
    .participant-image {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        display: block;
        border-bottom: 3px solid #000000;
    }
    
    .participant-name {
        position: static;
        background: transparent;
        color: #ffffff;
        padding: 15px;
        font-size: 1.2rem;
        font-weight: bold;
        border-bottom: 3px solid #000000;
        font-family: 'Times New Roman', serif;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s ease;
        position: relative;
    }
    
    .participant-name::after {
        content: '▼';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .participant-card.expanded .participant-name::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .participant-name:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .participant-links {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: #000000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    .participant-card.expanded .participant-links {
        max-height: 500px;
        padding: 15px;
        gap: 8px;
    }
    
    .participant-links .social-link {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0s;
    }
    
    .participant-card.expanded .participant-links .social-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .participant-card.expanded .participant-links .social-link:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .participant-card.expanded .participant-links .social-link:nth-child(2) {
        transition-delay: 0.15s;
    }
    
    .participant-card.expanded .participant-links .social-link:nth-child(3) {
        transition-delay: 0.2s;
    }
    
    .participant-card.expanded .participant-links .social-link:nth-child(4) {
        transition-delay: 0.25s;
    }
    
    .participant-card.expanded .participant-links .social-link:nth-child(5) {
        transition-delay: 0.3s;
    }
    
    .participant-card.expanded .participant-links .social-link:nth-child(6) {
        transition-delay: 0.35s;
    }
    
    .participant-card.expanded .participant-links .social-link:nth-child(7) {
        transition-delay: 0.4s;
    }
    
    .participant-modal {
        display: none !important;
    }
}

/* Social Links */
.social-link {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid #ffffff;
    background: transparent;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    max-width: 250px;
    font-family: 'Times New Roman', serif;
    letter-spacing: 1px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.social-link::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;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Desktop Social Links */
@media (min-width: 768px) {
    .social-link {
        display: block;
        padding: 8px 12px;
        background: #000000;
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
        border: 2px solid #000000;
        text-transform: uppercase;
        font-size: 0.8rem;
        font-family: 'Times New Roman', serif;
        letter-spacing: 1px;
    }
    
    .social-link:hover {
        background: #ffffff;
        color: #000000;
        border: 2px solid #000000;
    }
}

/* Mobile social links - non-colorful */
@media (max-width: 767px) {
    .social-link.instagram,
    .social-link.youtube,
    .social-link.spotify,
    .social-link.soundcloud,
    .social-link.facebook,
    .social-link.tiktok,
    .social-link.twitter,
    .social-link.bandcamp,
    .social-link.website {
        border-color: #ffffff;
        color: #ffffff;
    }
    
    .social-link.instagram:hover,
    .social-link.youtube:hover,
    .social-link.spotify:hover,
    .social-link.soundcloud:hover,
    .social-link.facebook:hover,
    .social-link.tiktok:hover,
    .social-link.twitter:hover,
    .social-link.bandcamp:hover,
    .social-link.website:hover {
        background: #ffffff;
        color: #000000;
    }
}

/* Desktop social links - keep original colors */
/* @media (min-width: 768px) {
    .social-link.instagram { border-color: #E4405F; color: #E4405F; }
    .social-link.instagram:hover { background: #E4405F; color: #ffffff; }

    .social-link.youtube { border-color: #FF0000; color: #FF0000; }
    .social-link.youtube:hover { background: #FF0000; color: #ffffff; }

    .social-link.spotify { border-color: #1DB954; color: #1DB954; }
    .social-link.spotify:hover { background: #1DB954; color: #ffffff; }

    .social-link.soundcloud { border-color: #FF5500; color: #FF5500; }
    .social-link.soundcloud:hover { background: #FF5500; color: #ffffff; }

    .social-link.facebook { border-color: #1877F2; color: #1877F2; }
    .social-link.facebook:hover { background: #1877F2; color: #ffffff; }

    .social-link.tiktok { border-color: #000000; color: #000000; }
    .social-link.tiktok:hover { background: #000000; color: #ffffff; }

    .social-link.twitter { border-color: #1DA1F2; color: #1DA1F2; }
    .social-link.twitter:hover { background: #1DA1F2; color: #ffffff; }

    .social-link.bandcamp { border-color: #629AA0; color: #629AA0; }
    .social-link.bandcamp:hover { background: #629AA0; color: #ffffff; }

    .social-link.website { border-color: #666666; color: #666666; }
    .social-link.website:hover { background: #666666; color: #ffffff; }
} */

.loading {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: 'Times New Roman', serif;
    animation: pulse 2s infinite;
}

/* Participants grid animation */
.participants-grid {
    animation: fadeInUp 1s ease;
} 