/* Tag Styles */
.tag-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tag-green {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.tag-gold {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.tag-neon {
    background: linear-gradient(90deg, #39FF9B 0%, #00ff8c 100%);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
} 