/* PixVPS — Global base styles (Firewatch theme) */

:root {
    --bg-color: #250902;
    --bg-alt: #1a0500;
    --text-main: #f5b25c;
    --text-muted: #d49448;
    --primary: #c95118;
    --primary-dark: #91340a;
    --border: #4a1c09;

    --hero-bg: #1c0803;
    --hero-glow: radial-gradient(circle at 50% 40%, rgba(245, 178, 92, 0.3) 0%, rgba(201, 81, 24, 0.15) 40%, rgba(28, 8, 3, 0.9) 80%);
    --hero-grid: rgba(245, 178, 92, 0.12);

    --glass-bg: rgba(26, 5, 0, 0.55);
    --glass-bg-elevated: rgba(37, 9, 2, 0.72);
    --glass-bg-light: rgba(245, 178, 92, 0.05);
    --glass-border: rgba(245, 178, 92, 0.16);
    --glass-border-strong: rgba(245, 178, 92, 0.32);
    --glass-blur: 18px;
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.42);
    --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    --glass-glow: 0 0 48px rgba(245, 178, 92, 0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-smooth: all 0.4s var(--ease-out-expo);

    --z-nav: 100;
    --z-dropdown: 105;
    --z-hero-content: 10;
    --transition: all 0.3s ease;
    --nav-height: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}
