/* ============================================
   NISSAN GT-R — MAIN CORE STYLES
============================================ */

@import url('https://googleapis.com');

/* ─── CSS Variables ─── */
:root {
  --red:       #e8001d;
  --red-glow:  #ff1a35;
  --gold:      #c9a84c;
  --silver:    #a8b2c0;
  --dark:      #050608;
  --dark-2:    #0a0c10;
  --dark-3:    #12151c;
  --dark-4:    #1a1f2b;
  --dark-5:    #242a38;
  --text:      #dde3ed;
  --text-dim:  #7a8499;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --trans:     cubic-bezier(0.23, 1, 0.32, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
