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

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b0b0b, #141414, #1c1c1c);
    color: #f2f2f2;
}

.container {
    max-width: 600px;
    width: 96%;
    padding: 40px 30px;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
}

.progress {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress span {
    display: block;
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #c8006f, #ff1493);
    border-radius: 10px;
    animation: load 2s ease-in-out;
}

@keyframes load {
    from {
        width: 0;
    }

    to {
        width: 65%;
    }
}

.contact {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.contact a {
    color: #00c6ff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 25px;
    font-size: 13px;
    opacity: 0.7;
}