/* Gymdates.de Custom Styles */

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a2e; }
::-webkit-scrollbar-thumb { background: #D4A843; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #e0b84d; }

/* Gold shimmer text */
.shimmer-text {
    background: linear-gradient(
        110deg,
        #D4A843 0%,
        #f5d998 25%,
        #D4A843 50%,
        #f5d998 75%,
        #D4A843 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}

/* Shimmer border effect */
.shimmer-border {
    position: relative;
    overflow: hidden;
}
.shimmer-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(110deg, transparent 30%, rgba(212,168,67,0.5) 50%, transparent 70%);
    background-size: 200% auto;
    animation: shimmer 3s ease-in-out infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Gold glow */
.gold-glow {
    box-shadow: 0 0 30px rgba(212,168,67,0.15), 0 0 60px rgba(212,168,67,0.05);
}

/* Card hover */
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(212,168,67,0.1);
}

/* Glass card */
.glass-card {
    background: rgba(42, 42, 61, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Gradient mesh background */
.gradient-mesh {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,168,67,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(100,60,180,0.05) 0%, transparent 50%);
}

/* Input styles */
.input-dark {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #f5f5f5;
    transition: all 0.2s;
}
.input-dark:focus {
    outline: none;
    border-color: rgba(212,168,67,0.5);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
    background: rgba(255,255,255,0.05);
}
.input-dark::placeholder {
    color: rgba(255,255,255,0.25);
}

/* Button primary */
.btn-gold {
    background: linear-gradient(135deg, #D4A843, #b8922e);
    color: #1a1a2e;
    font-weight: 700;
    transition: all 0.2s;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #e0b84d, #D4A843);
    box-shadow: 0 4px 20px rgba(212,168,67,0.3);
    transform: translateY(-1px);
}

/* Button secondary */
.btn-dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e5e5e5;
    transition: all 0.2s;
}
.btn-dark:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,168,67,0.3);
}

/* Stagger animation */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Hide scrollbar for horizontal scroll */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Toast notification */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Pulse dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4A843;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(212,168,67,0); }
}
