:root {
    --bg-main: #05070b;
    --bg-elevated: #0c1017;
    --bg-soft: #101622;
    --accent-1: #00e5ff;
    --accent-2: #16ff8f;
    --accent-3: #b067ff;
    --text-main: #ffffff;
    --text-muted: #a4b0c3;
    --border-soft: rgba(255, 255, 255, 0.06);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 180ms ease-out;
    --container-width: 1120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top left, #10152a 0, #05070b 55%, #030308 100%);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
