/* 로딩 컨테이너 스타일 */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

/* 로딩 스피너 애니메이션 */
.loading-spinner {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(79, 172, 254, 0.1);
    border-radius: 50%;
    border-top-color: #4facfe;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 진행 바 컨테이너 */
.progress-container {
    width: 80%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 3px;
    margin: 15px 0;
}

/* 진행 바 */
.progress-bar {
    height: 10px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 7px;
    transition: width 0.3s ease;
    width: 0%;
}

/* 로딩 텍스트 */
.loading-text {
    color: white;
    font-size: 1.2em;
    margin-top: 15px;
    text-align: center;
}

/* 게임 팁 스타일 */
.game-tip {
    color: #8a8aa3;
    font-size: 0.9em;
    max-width: 80%;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #4facfe;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .loading-spinner {
        width: 60px;
        height: 60px;
    }

    .progress-container {
        width: 90%;
    }

    .loading-text {
        font-size: 1em;
    }

    .game-tip {
        font-size: 0.8em;
        padding: 10px;
    }
} 