/* _content/WoSBattleSimulator.Web/Components/Pages/ImageUpload.razor.rz.scp.css */
/* ImageUpload.razor.css - Minimal essential styles */
/* Global classes (.glass, .glass-input, .hero-section, etc.) are defined in site.css */

/* Note: Most custom styling removed - now using MudBlazor components with Ice Fortress theme */
/* Reduced from 661 lines to ~60 lines by eliminating Bootstrap overrides and dark theme CSS */

/* Upload zone with hover effects - essential for UX */
.upload-zone-compact[b-nxemfcm6q6] {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(8, 145, 178, 0.05);
}

.upload-zone-compact:hover[b-nxemfcm6q6] {
    border-color: #22d3ee;
    background-color: rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.15);
}

/* Image zoom effect - essential for viewing screenshots */
.image-container[b-nxemfcm6q6] {
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.zoomable-image[b-nxemfcm6q6] {
    max-height: 750px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.zoomable-image:hover[b-nxemfcm6q6] {
    transform: scale(1.05);
}

.zoom-hint[b-nxemfcm6q6] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .zoom-hint[b-nxemfcm6q6] {
    opacity: 1;
}
/* _content/WoSBattleSimulator.Web/Components/Shared/LoadingOverlayIce.razor.rz.scp.css */
.ice-loading-overlay[b-8hfe2ik04y] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ice-loading-container[b-8hfe2ik04y] {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(34, 211, 238, 0.2), 0 0 60px rgba(34, 211, 238, 0.1);
    min-width: 320px;
    max-width: 500px;
    animation: fadeInScale-b-8hfe2ik04y 0.3s ease-out;
}

@keyframes fadeInScale-b-8hfe2ik04y {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ice-loading-title[b-8hfe2ik04y] {
    color: #f1f5f9;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ice-loading-message[b-8hfe2ik04y] {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.ice-loading-stages[b-8hfe2ik04y] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.ice-stage-item[b-8hfe2ik04y] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ice-stage-item.current[b-8hfe2ik04y] {
    background: rgba(34, 211, 238, 0.1);
    border-left: 3px solid #22d3ee;
    padding-left: calc(0.5rem - 3px);
}

.ice-stage-item.complete[b-8hfe2ik04y] {
    opacity: 0.7;
}

.ice-stage-item.pending[b-8hfe2ik04y] {
    opacity: 0.5;
}

.ice-stage-icon[b-8hfe2ik04y] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.ice-stage-text[b-8hfe2ik04y] {
    color: #f1f5f9;
    font-size: 0.875rem;
}

.ice-stage-item.complete .ice-stage-text[b-8hfe2ik04y] {
    color: #cbd5e1;
}

.ice-stage-item.pending .ice-stage-text[b-8hfe2ik04y] {
    color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .ice-loading-container[b-8hfe2ik04y] {
        min-width: 280px;
        max-width: 90vw;
        padding: 2rem 1.5rem;
    }

    .ice-loading-title[b-8hfe2ik04y] {
        font-size: 1.25rem;
    }

    .ice-loading-message[b-8hfe2ik04y] {
        font-size: 0.875rem;
    }
}

/* Main spinner */
.ice-loading-spinner[b-8hfe2ik04y] {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(34, 211, 238, 0.2);
    border-top-color: #22d3ee;
    border-radius: 50%;
    animation: spin-b-8hfe2ik04y 1s linear infinite;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.4));
}

@keyframes spin-b-8hfe2ik04y {
    to {
        transform: rotate(360deg);
    }
}

/* Stage icons */
.stage-check[b-8hfe2ik04y] {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: bold;
}

.stage-spinner[b-8hfe2ik04y] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(34, 211, 238, 0.2);
    border-top-color: #22d3ee;
    border-radius: 50%;
    animation: spin-b-8hfe2ik04y 0.8s linear infinite;
}

.stage-circle[b-8hfe2ik04y] {
    color: #64748b;
    font-size: 1.2rem;
}
