/* ═══════════════════════════════════════════════
   DAIKOKU USA — Shared Design Tokens
   All pages import this file first
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600;700&family=Bebas+Neue&family=Noto+Sans+JP:wght@300;400&display=swap');

:root {
    --neon-pink:   #ff00cc;
    --neon-cyan:   #00e5ff;
    --neon-purple: #9d00ff;
    --neon-gold:   #ffc800;
    --dark-bg:     #02010a;
    --dark-mid:    #060414;
    --dark-card:   rgba(6, 4, 20, 0.95);
    --grid-color:  rgba(0, 229, 255, 0.12);
    --grid-pink:   rgba(255, 0, 204, 0.10);

    --radius-sm:  2px;
    --radius-md:  4px;

    --font-display: 'Orbitron', sans-serif;
    --font-body:    'Inter', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    --font-wide:    'Bebas Neue', sans-serif;
    --font-jp:      'Noto Sans JP', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--dark-bg);
    color: white;
    font-family: 'Inter', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
