/* Basic reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #18212f 0, #0b111a 45%, #05070a 100%);
    color: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layout wrapper */
.uc-wrapper {
    width: 100%;
    max-width: 960px;
    padding: 24px;
}

/* Main card */
.uc-card {
    background: rgba(10, 16, 25, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    padding: 32px 28px 26px;
    backdrop-filter: blur(12px);
}

/* Logo area */
.uc-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.uc-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #35b889, #22a0ff);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.uc-logo-text {
    display: flex;
    flex-direction: column;
}

.uc-logo-main {
    font-size: 1.35rem;
    font-weight: 650;
    letter-spacing: 0.03em;
}

.uc-logo-sub {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Title & copy */
.uc-title {
    font-size: 2rem;
    line-height: 1.2;
    margin: 10px 0 14px;
}

.uc-text {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 36rem;
    opacity: 0.86;
}

/* Status area */
.uc-status {
    margin: 26px 0 20px;
}

.uc-status-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.85;
    margin-bottom: 10px;
}

.uc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #35b889;
    animation: uc-dot-pulse 1.4s infinite ease-in-out both;
}

.uc-dot-2 {
    animation-delay: 0.18s;
}

.uc-dot-3 {
    animation-delay: 0.36s;
}

@keyframes uc-dot-pulse {
    0%, 80%, 100% {
        transform: scale(0.7);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Progress bar */
.uc-progress-bar {
    position: relative;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    max-width: 280px;
}

.uc-progress-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    border-radius: 999px;
    background: linear-gradient(90deg, #35b889, #22a0ff);
    animation: uc-progress-animate 2.4s infinite ease-in-out;
}

@keyframes uc-progress-animate {
    0% {
        transform: translateX(-60%);
    }
    50% {
        transform: translateX(40%);
    }
    100% {
        transform: translateX(140%);
    }
}

/* Footer */
.uc-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.uc-contact {
    font-size: 0.9rem;
    opacity: 0.9;
}

.uc-contact a {
    color: #35b889;
    text-decoration: none;
    border-bottom: 1px dotted rgba(53, 184, 137, 0.6);
}

.uc-contact a:hover {
    border-bottom-style: solid;
    opacity: 0.9;
}

.uc-meta {
    font-size: 0.78rem;
    opacity: 0.6;
}

/* Responsive tweaks */
@media (min-width: 768px) {
    .uc-card {
        padding: 36px 40px 30px;
    }

    .uc-title {
        font-size: 2.3rem;
    }

    .uc-text {
        font-size: 1rem;
    }

    .uc-footer {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
        gap: 16px;
    }
}
