/* Verify Page Styles */

.verify-hero {
    min-height: 50vh;
    text-align: center;
}

.verify-container {
    max-width: 900px;
    margin: 0 auto;
}

.verify-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 2px solid var(--color-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.verify-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

/* Instructions Card */
.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Demo Card */
.demo-description {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', monospace;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.form-hint {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

#verify-form button {
    margin-top: 1rem;
    margin-right: 1rem;
}

.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

/* Result Card */
.result-card {
    border-width: 3px;
}

.result-success {
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #d1fae5 100%);
}

.result-warning {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}

.result-error {
    border-color: #ef4444;
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 100%);
}

.result-status {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.status-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.result-status h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result-status p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.result-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.status-valid {
    color: #10b981;
}

.status-invalid {
    color: #ef4444;
}

#verify-another {
    margin-top: 2rem;
    width: 100%;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-card p strong {
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .verify-card {
        padding: 2rem;
    }

    .verify-hero {
        min-height: 40vh;
    }

    .instruction-steps {
        gap: 1.5rem;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    #verify-form button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
