* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    padding: 20px;
    text-align: center;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    border-top: 5px solid #e74c3c; /* To'xtatish ramzi sifatida qizil */
}

.icon-box {
    font-size: 60px;
    color: #e74c3c;
    margin-bottom: 20px;
}

h1 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    background: #fff5f5;
    color: #e74c3c;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    animation: blink 1s infinite;
}

.info-text {
    background: #fdf2f2;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #c0392b;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    background: #2c3e50;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    transition: 0.3s;
    font-weight: 600;
}

.btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Animatsiyalar */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}