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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #1a1a1a;
}

.page {
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.status-icon {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
}

.logo-wrap {
    --logo-color: darkviolet;
}

.logo-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(148, 0, 211, 0.03) 0%, rgba(148, 0, 211, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(148, 0, 211, 0.1);
}

.logo--draw {
    fill: none;
    stroke: var(--logo-color, darkviolet);
    stroke-width: 3;
    width: 100%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(148, 0, 211, 0.25));
}

.logo--draw .logo-path {
    fill: transparent;
    stroke: var(--logo-color, darkviolet);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: var(--path-length, 1000);
    stroke-dashoffset: var(--path-length, 1000);
}

.logo--draw.animating .logo-path {
    animation: logo-draw-cycle 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes logo-draw-cycle {
    0% { stroke-dashoffset: var(--path-length, 1000); fill: transparent; }
    20% { stroke-dashoffset: 0; fill: transparent; }
    30% { stroke-dashoffset: 0; fill: var(--logo-color, darkviolet); }
    70% { stroke-dashoffset: 0; fill: var(--logo-color, darkviolet); }
    75% { stroke-dashoffset: 0; fill: transparent; }
    95% { stroke-dashoffset: var(--path-length, 1000); fill: transparent; }
    100% { stroke-dashoffset: var(--path-length, 1000); fill: transparent; }
}

@media (prefers-reduced-motion: reduce) {
    .logo--draw .logo-path {
        animation: none !important;
        stroke-dashoffset: 0 !important;
        fill: darkviolet !important;
    }
}
