/* Bizarriusz Styles */

:root {
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --neon-glow: 0 0 10px rgba(0, 243, 255, 0.4);
    --pink-glow: 0 0 10px rgba(255, 0, 122, 0.4);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.gold-shimmer {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite linear;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.timeline-line {
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        #00F3FF 10%,
        #FF007A 50%,
        #D4AF37 90%,
        transparent
    );
    opacity: 0.3;
}

.glow-cyan {
    text-shadow: var(--neon-glow);
}

.glow-pink {
    text-shadow: var(--pink-glow);
}

.glass-card {
    background: rgba(26, 16, 61, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gold-button {
    background: var(--gold-gradient);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.gold-button:active {
    transform: scale(0.95);
}

body {
    min-height: 100dvh;
}

/* Modal animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-backdrop {
    animation: fadeIn 0.2s ease-out;
}

.modal-content {
    animation: scaleIn 0.3s ease-out;
}

.clickable-event {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-event:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}
