* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.verify-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    user-select: none;
}

.verify-label {
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.5;
    max-width: 280px;
}

.signal-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.signal-ring {
    position: absolute;
    border-radius: 50%;
    border: 2.5px solid rgba(0, 0, 0, 0.55);
    animation: signal-pulse 2.2s ease-out infinite;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.signal-ring:nth-child(1) {
    width: 140px;
    height: 140px;
    animation-delay: 0s;
}

.signal-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    animation-delay: 0.45s;
}

.signal-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    animation-delay: 0.9s;
}

.signal-hit {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

@keyframes signal-pulse {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    60% {
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.signal-wrapper.verified .signal-ring {
    animation: none;
    opacity: 0;
}

.tick-svg {
    display: none;
    position: absolute;
    z-index: 3;
}

.signal-wrapper.verified .tick-svg {
    display: block;
}

@keyframes tick-draw {
    from {
        stroke-dashoffset: 50;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.tick-path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: tick-draw 0.5s ease forwards;
}
