/* CSS Playground - Edit me! */
/* CSS Variables - Try changing these colors! */
:root {
--primary: #a855f7;
--secondary: #ec4899;
--accent: #06b6d4;
--bg-dark: #09090b;
--bg-card: #18181b;
--text: #fafafa;
--text-muted: #71717a;
}
/* Reset & Base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
background: var(--bg-dark);
font-family: 'Inter', system-ui, sans-serif;
color: var(--text);
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
/* Container */
.container {
width: 100%;
max-width: 28rem;
}
/* Card */
.card {
position: relative;
background: var(--bg-card);
border-radius: 1.5rem;
border: 1px solid #27272a;
overflow: hidden;
}