/**
 * Verification Page Styles
 */

:root {
    --bg-primary: #0f1729;
    --bg-secondary: #151d2b;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.verify-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    padding: 2rem;
}

.verify-header {
    text-align: center;
    margin-bottom: 3rem;
}

.verify-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.verify-header h1 {
    color: var(--text-primary);
    font-size: 2rem;
    margin: 0;
}

.verify-content {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Loading State */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.verify-content > p {
    color: var(--text-secondary);
    margin: 0;
}

/* Success State */
.verify-success {
    text-align: center;
    width: 100%;
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.verify-success h2 {
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
}

.verify-success > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.report-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

.status-invalid {
    color: #ef4444;
}

.verification-badge {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.verification-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.verification-badge p {
    margin: 0.5rem 0 0 0;
    font-weight: 600;
}

/* Error State */
.verify-error {
    text-align: center;
    width: 100%;
}

.error-icon {
    font-size: 5rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.verify-error h2 {
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
}

.verify-error > p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.warning-text {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-weight: 600;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

    .verify-header h1 {
        font-size: 1.5rem;
    }

    .success-icon,
    .error-icon {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .verify-container {
        padding: 1rem;
    }

    .verify-content {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .verify-header h1 {
        font-size: 1.25rem;
    }

    .success-icon,
    .error-icon {
        font-size: 3rem;
    }

    .report-details {
        padding: 1rem;
    }

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