/* 蓝鲸直播 Global Styles */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    color: #e0e0e0;
}

/* Custom Selection */
::selection {
    background: #D4AF37;
    color: #000;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

/* Transitions */
.transition-standard {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-fade-in {
    animation: fadeInSlideUp 0.8s forwards;
}

/* Navigation Blur */
nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.5s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(to right, #D4AF37, #f1d592, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Map Placeholder */
.map-container {
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(214, 175, 55, 0.1);
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #444;
}
