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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0F0F1A;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #ff00ee15, #00ff8815, #00ffee15);
    animation: gradient-rotate 15s linear infinite;
    z-index: -1;
}

@keyframes gradient-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    background: rgba(15, 15, 26, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.status-badge {
    background: #ff3366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ff00ee, #00ff88, #00ffee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    animation: text-shine 5s linear infinite;
}

h2 {
    font-size: 2rem;
    color: #ff3366;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
}

@keyframes text-shine {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.message {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.server {
    position: relative;
    width: 120px;
    height: 180px;
    margin: 0 auto 2rem;
    transform-style: preserve-3d;
    animation: server-float 3s ease-in-out infinite;
}

@keyframes server-float {
    0%, 100% { transform: translateY(0) rotate3d(1, 1, 1, 0deg); }
    50% { transform: translateY(-10px) rotate3d(1, 1, 1, 5deg); }
}

.server-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d44, #1a1a2e);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.server-body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #ff00ee, transparent);
    animation: scan-line 2s linear infinite;
}

@keyframes scan-line {
    0% { top: 0; }
    100% { top: 100%; }
}

.server-body::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ff3366;
    border-radius: 50%;
    top: 20px;
    right: 20px;
    box-shadow: 0 0 20px #ff3366;
    animation: blink 1s infinite;
}

.smoke {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff336633, #00ff8833);
    border-radius: 50%;
    top: -20px;
    left: 40px;
    animation: smoke 2s infinite;
}

@keyframes smoke {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-50px) scale(2) rotate(180deg);
        opacity: 0;
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.progress-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: progress-shine 2s linear infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-bar {
    height: 20px;
    background: linear-gradient(90deg, #ff3366, #00ff88, #00ffee);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

#loading-text {
    margin-top: 1rem;
    color: #00ff88;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.facts-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.facts-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: facts-shine 3s linear infinite;
}

@keyframes facts-shine {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

#random-fact {
    font-style: italic;
    color: #00ffee;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 238, 0.3);
    position: relative;
    z-index: 1;
}

.info-box {
    background: rgba(255, 51, 102, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.info-box h3 {
    color: #ff3366;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box p {
    margin: 0.5rem 0;
    color: #fff;
}

footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.timestamp {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}