.boot-screen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(228, 195, 106, 0.22), transparent 28%),
        linear-gradient(165deg, #1a1612 0%, #2a2118 48%, #3d2e1c 100%);
}

.boot-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 195, 106, 0.28), transparent 68%);
    filter: blur(8px);
    animation: bootPulse 2.8s ease-in-out infinite;
}

.boot-card {
    position: relative;
    z-index: 1;
    width: min(420px, 88vw);
    padding: 36px 28px 28px;
    text-align: center;
    border-radius: 28px;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.boot-card img {
    width: min(240px, 70%);
    height: auto;
    object-fit: contain;
}

.boot-ring {
    width: 46px;
    height: 46px;
    margin: 22px auto 14px;
    border-radius: 50%;
    border: 3px solid rgba(140, 100, 36, 0.18);
    border-top-color: #c6a04a;
    animation: bootSpin 0.9s linear infinite;
}

.boot-title {
    margin: 0;
    color: #2a2118;
    font-family: "Cairo", "Montserrat", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.boot-sub {
    margin: 6px 0 0;
    color: #6e6254;
    font-family: "Cairo", "Montserrat", sans-serif;
    font-size: 0.95rem;
}

@keyframes bootSpin {
    to { transform: rotate(360deg); }
}

@keyframes bootPulse {
    0%, 100% { transform: scale(0.92); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}
