/* Beta Badge Styling */
.beta-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: betaGlow 2s ease-in-out infinite alternate;
}

.beta-badge:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.beta-badge:active {
    transform: translateY(0px) scale(1);
}

@keyframes betaGlow {
    0% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 5px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 10px rgba(255, 107, 53, 0.6);
    }
}

/* Size variations */
.beta-badge.fs-8 {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
}

.beta-badge.fs-7 {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
}

.beta-badge.fs-6 {
    font-size: 0.875rem;
    padding: 0.45rem 0.7rem;
}

/* Theme compatibility */
.theme-dark .beta-badge {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%) !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-dark .beta-badge:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 140, 66, 0.4);
}
