/* BETA Ticker Tape Banner */
.beta-ticker-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.95) 0%, rgba(99, 102, 241, 0.85) 50%, rgba(139, 92, 246, 0.85) 100%);
    backdrop-filter: blur(12px) saturate(1.2);
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.beta-ticker-content {
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.beta-ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    gap: 10px;
}

.beta-ticker-item:not(:last-child)::after {
    content: "• BETA •";
    margin-left: 30px;
    opacity: 0.8;
    font-weight: 900;
    letter-spacing: 1px;
}

.beta-glow {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    font-weight: 900;
    font-stretch: expanded;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Adjust body padding to account for fixed banner */
body {
    padding-top: 45px !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .beta-ticker-banner {
        height: 35px;
    }
    
    .beta-ticker-content {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    
    .beta-ticker-item {
        padding: 0 20px;
    }
    
    .beta-ticker-item:not(:last-child)::after {
        margin-left: 20px;
    }
    
    body {
        padding-top: 40px !important;
    }
}

/* Hide banner on print */
@media print {
    .beta-ticker-banner {
        display: none;
    }
    
    body {
        padding-top: 0 !important;
    }
} 