﻿/* ============================================
   BJNFNE — Base: Reset, Variables & Layout
   Designed & developed by DosX
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #06060b;
    --bg-secondary: #0c0c14;
    --bg-card: rgba(14, 14, 24, 0.6);
    --bg-card-hover: rgba(20, 20, 35, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #f0f0f5;
    --text-secondary: #8888a0;
    --text-muted: #55556a;
    --accent: #4d90e4;
    --accent-bright: #93c5fd;
    --accent-glow: rgba(77, 144, 228, 0.3);
    --cyan: #00d2ff;
    --cyan-glow: rgba(0, 210, 255, 0.2);
    --gradient-1: linear-gradient(135deg, #4d90e4, #00d2ff);
    --gradient-2: linear-gradient(135deg, #93c5fd, #4d90e4);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", monospace;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
