:root {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --primary-blue: #2563eb;
    --primary-hover: #1d4ed8;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --success-green: #10b981;
}

body, html {
    margin: 0; padding: 0;
    height: 100%;
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-color);
    display: flex; align-items: center; justify-content: center;
}

.verify-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: all 0.4s ease;
}

.icon-wrapper {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

h1 {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

/* Interaction Area */
.progress-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hold-button {
    position: absolute;
    width: 90px; height: 90px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
    z-index: 2;
    padding: 10px;
    line-height: 1.2;
}

.hold-button:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.hold-button:active {
    transform: scale(0.95);
}

/* SVG Progress Ring */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.1s linear;
    stroke-dasharray: 326.7; /* 2 * PI * r */
    stroke-dashoffset: 326.7;
}

.status-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    height: 1.2rem;
}

.verified-state h1 { color: var(--success-green); }
.verified-state .hold-button { background: var(--success-green); pointer-events: none; }









/* Fix the container distortion */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh; /* Use 'dvh' for better mobile height support */
    padding: 20px;
    box-sizing: border-box;
}

/* Ensure the interaction area is a perfect square for centering */
.interaction-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}






.hold-button {
    /* ... your existing styles ... */
    
    /* Prevent text selection */
    -webkit-user-select: none;  /* Safari/Chrome */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE10+ */
    user-select: none;          /* Standard */
    
    /* Prevent the gray/blue "tap highlight" box on mobile */
    -webkit-tap-highlight-color: transparent;
    
    /* Prevent the iOS "magnifying glass" on long press */
    -webkit-touch-callout: none;
}

