.verify-container { max-width: 720px; margin: 0 auto; }
.verify-header { text-align: center; margin-bottom: var(--fs-spacing-xl); }
.verify-header h1 { margin-bottom: 8px; }

.verify-dropzone {
    border: 2px dashed var(--fs-border-strong);
    border-radius: var(--fs-radius-xl);
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all var(--fs-transition-base);
    background: var(--fs-accent-subtle);
    margin-bottom: var(--fs-spacing-xl);
}
.verify-dropzone:hover {
    border-color: var(--fs-accent);
    box-shadow: inset 0 0 40px var(--fs-accent-glow);
}
.verify-dropzone .drop-icon { font-size: 4rem; margin-bottom: 16px; }

.hash-input-section { margin-bottom: var(--fs-spacing-xl); }
.hash-input-section .divider {
    text-align: center; color: var(--fs-text-muted); margin: 24px 0;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
}

.result-card {
    background: var(--fs-bg-card);
    border-radius: var(--fs-radius-xl);
    overflow: hidden;
    animation: scaleIn 0.3s ease;
}
.result-header {
    padding: 24px;
    text-align: center;
}
.result-header.verified {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}
.result-header.not-found {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    border-bottom: 1px solid rgba(239, 68, 68, 0.3);
}
.result-icon { font-size: 3rem; margin-bottom: 12px; }
.result-title { font-size: 1.3rem; font-weight: 700; }
.result-body { padding: 24px; }
.result-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid var(--fs-border-subtle);
}
.result-label { font-size: 0.8rem; color: var(--fs-text-muted); text-transform: uppercase; }
.result-value { font-size: 0.9rem; font-weight: 500; }
.result-value.mono { font-family: var(--fs-font-mono); font-size: 0.8rem; color: var(--fs-text-accent); }

.hashing-animation {
    text-align: center; padding: 40px;
}
.hash-grid {
    display: grid; grid-template-columns: repeat(16, 1fr); gap: 2px;
    max-width: 400px; margin: 16px auto;
}
.hash-cell {
    width: 100%; aspect-ratio: 1; border-radius: 2px;
    background: var(--fs-accent); opacity: 0.1;
    animation: hashPulse 0.5s ease-in-out forwards;
}
@keyframes hashPulse {
    0% { opacity: 0.05; background: var(--fs-accent); }
    50% { opacity: 0.8; background: var(--fs-accent-hover); }
    100% { opacity: 0.3; background: var(--fs-accent); }
}
