body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Black', sans-serif;
    overflow: hidden;
    background: linear-gradient(
        124deg,
        #ff2400,
        #e81d1d,
        #e8b71d,
        #e3e81d,
        #1de840,
        #1ddde8,
        #2b1de8,
        #dd00f3,
        #dd00f3
    );
    background-size: 1800% 1800%;
    animation: rainbow-bg 18s ease infinite;
}

.cloud-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cloud-title, .cloud-icon {
    display: none;
}

.status-text {
    font-size: clamp(2.5em, 8vw, 5em);
    letter-spacing: clamp(3px, 1.5vw, 8px);
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.4),
        0 0 80px rgba(255, 255, 255, 0.2);
    font-family: 'Roboto', 'Arial Black', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        filter: brightness(1);
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 60px rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        filter: brightness(1.3);
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.9),
            0 0 60px rgba(255, 255, 255, 0.7),
            0 0 90px rgba(255, 255, 255, 0.5);
    }
    100% { 
        transform: scale(1);
        filter: brightness(1);
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 60px rgba(255, 255, 255, 0.4);
    }
}

@keyframes rainbow-bg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.horse {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: -1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    font-size: clamp(40px, 10vw, 80px);
}

.horse i {
    transform-origin: center;
    transition: color 0.3s ease;
}

.horse i:hover {
    color: white;
    filter: brightness(1.5);
}

.loading-bar-container {
    width: 300px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.8),
        rgba(255,255,255,1)
    );
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: width 0.1s linear;
}

/* Mobil için loading bar boyutu */
@media (max-width: 480px) {
    .loading-bar-container {
        width: 200px;
        height: 8px;
    }
} 