﻿:root {
    --bg: #0B1220;
    --bg-soft: #111c33;
    --panel: rgba(17, 28, 51, 0.72);
    --panel-strong: rgba(11, 18, 32, 0.88);
    --text: #FFFFFF;
    --muted: #94A3B8;
    --gold: #D4AF37;
    --gold-soft: rgba(212, 175, 55, 0.14);
    --line: rgba(148, 163, 184, 0.20);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1080px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.22), transparent 35%), linear-gradient(180deg, #071120 0%, #08111f 100%);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

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

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

code {
    background: rgba(255,255,255,0.06);
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

    .site-shell::before {
        content: "";
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at 50% 22%, rgba(37, 99, 235, 0.18), transparent 24%), linear-gradient(90deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.015) 50%, rgba(255,255,255,0.00) 100%);
        pointer-events: none;
        z-index: -1;
    }
