input, textarea {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: #334155;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}
body {
    background: #0f172a;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 20px;
    transition: padding 0.3s ease;
}
.container {
    max-width: 900px;
    margin: auto;
}
.card {
    background: #1e293b;
    padding: 25px;
    border-radius: 18px;
}
.answer {
    background: #334155;
    padding: 16px;
    margin-top: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s;
}
.answer:hover {
    transform: scale(1.01);
}
.selected {
    border: 3px solid #60a5fa;
}
button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn-block {
    width: 100%;
    height: 60px;
    font-size: 18px;
    font-weight: 600;
}
.top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: bold;
}
.timer {
    color: #60a5fa;
}
.status-panel {
    padding: 15px;
    border-radius: 14px;
    background: #1e293b;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-sync {
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
    animation: pulse 1.5s infinite ease-in-out;
}
.dot-ready {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}


:root{
  --bg:#0f172a; --panel:#1e293b; --panel-2:#111827; --line:#334155;
  --text:#f8fafc; --muted:#94a3b8; --blue:#3b82f6; --blue-2:#2563eb;
}
html{scroll-behavior:smooth}
body{min-height:100vh;overflow-x:hidden}
*{box-sizing:border-box}
