:root {
    --background-color: #0a0a0a;
    --accent-color: #e50914;
    /* アクセントカラーの赤色 */
}

body {
    margin: 0;
    background-color: var(--background-color);
}


/* アニメーション全体のコンテナ */
.loading-container {
    position: relative;
    width: 250px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ローディングバーのスタイル */
.loading-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(229, 9, 20, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s;
}

/* ローディングバーの進捗部分 */
.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color), 0 0 15px var(--accent-color);
    transform: translateX(-100%);
    animation: fill-bar 1s ease-in-out forwards;
}

@keyframes fill-bar {
    to {
        transform: translateX(0);
    }
}