/* Prime CSS Variables */
:root {
    --bg-1: #0f172a; 
    --bg-2: #0a1a4a; 
    --text: #ffffff; 
    --muted: #cbd5e1; 
    --muted-2: #94a3b8; 
    --accent: #7777ff; 
    --accent-2: #6666ee; 
    --card: rgba(15,23,42,0.6); 
    --stroke: rgba(51,65,85,0.6); 
    --glass: rgba(2,6,23,0.45); 
    --shadow: 0 10px 30px rgba(0,0,0,0.35); 
    --success: #4ade80; 
    --success-bg: rgba(34,197,94,0.15); 
    --success-stroke: rgba(34,197,94,0.3); 
    --error: #f87171; 
    --error-bg: rgba(239,68,68,0.15); 
    --error-stroke: rgba(239,68,68,0.3); 
    --warning: #fbbf24; 
    --warning-bg: rgba(251,191,36,0.15); 
    --warning-stroke: rgba(251,191,36,0.3); 
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; font-size: 100%; font-style: normal; }
html, body { scroll-behavior: smooth; overflow-x: hidden; position: relative; width: 100%; }
input, select, textarea, button, .click, a { -webkit-tap-highlight-color: rgba(0,0,0,0); outline: 0; outline-offset: 0; }
.click, a { -webkit-user-select: none; -ms-user-select: none; user-select: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
input::-webkit-inner-spin-button { display: none; }
input::-webkit-outer-spin-button { display: none; }
input[type=number] { -moz-appearance: textfield; appearance: textfield; }
.gradient-text {
background: linear-gradient(90deg, var(--accent), #7aa2ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}