:root {
    --bg-main: #0b0f19;
    --card-bg: #151b2b;
    --sky-blue: #0ea5e9;
    --sky-blue-hover: #38bdf8;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --card-border: rgba(14, 165, 233, 0.15);
    --glow-color: rgba(14, 165, 233, 0.3);
    --success-green: #22c55e;
    --danger-red: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #000;
    display: flex;
    justify-content: center;
    height: 100vh;
}
