@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #141414;
    color: #E5E5E5;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-bar {
    height: 4px;
    background: rgba(229, 9, 20, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.loading-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #E50914;
    animation: loading 2s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        left: -30%;
        width: 30%;
    }
    70% {
        left: 100%;
        width: 30%;
    }
    100% {
        left: 100%;
        width: 0%;
    }
}

.logo-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.warning-message {
    background: rgba(229, 9, 20, 0.1);
    border-left: 3px solid #E50914;
    transition: all 0.5s ease;
}