* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.boot-splash {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
}

.boot-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.boot-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.boot-logo {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.boot-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.boot-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.boot-subtitle {
    color: #93c5fd;
    font-size: 1rem;
}

.boot-main-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.boot-header-skeleton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.boot-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.boot-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.boot-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.boot-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.boot-button-skeleton {
    width: 96px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
}

.boot-icon-skeleton {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.boot-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.boot-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
}

.boot-stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.boot-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
}

.boot-stat-value {
    width: 64px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.boot-stat-label {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.boot-stat-change {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.boot-charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.boot-chart-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.boot-chart-title {
    width: 192px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.boot-chart-subtitle {
    width: 128px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

.boot-chart-area {
    height: 192px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.boot-rows-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.boot-row {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.boot-row-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.boot-row-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.boot-row-text-long {
    width: 75%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.boot-row-text-short {
    width: 50%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.boot-row-badge {
    width: 80px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.boot-progress-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boot-progress-bar-container {
    width: 256px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    overflow: hidden;
}

.boot-progress-bar {
    height: 100%;
    background: #60a5fa;
    border-radius: 9999px;
    animation: progress 2s ease-in-out;
    width: 100%;
}

.boot-progress-text {
    color: #93c5fd;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    background-size: 1000px 100%;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.sk-text-32 {
    width: 128px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.sk-text-24 {
    width: 96px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.a11y-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .boot-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .boot-charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .boot-container {
        padding: 0 1rem;
    }

    .boot-stats-grid {
        grid-template-columns: 1fr;
    }

    .boot-header-skeleton {
        flex-direction: column;
        gap: 1rem;
    }

    .boot-header-right {
        width: 100%;
        justify-content: center;
    }

    .boot-title {
        font-size: 1.5rem;
    }
}
