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

:root {
  --bg:        #0a0c10;
  --panel:     #10141c;
  --panel2:    #161b26;
  --border:    rgba(255, 255, 255, 0.07);
  --accent:    #4af0c8;
  --accent2:   #f0a44a;
  --accent3:   #4a8af0;
  --text:      #e8edf5;
  --muted:     #6b7a99;
  --rain:      #4a8af0;
  --sun:       #f0c14a;
  --cloud:     #8a9ab5;
  --hot:       #f0604a;
  --cold:      #4ab5f0;
  --font-display: 'Syne', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(74,240,200,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(74,138,240,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Keyframes ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}


.fadein     { animation: fadein .5s ease forwards; }
.delay-1    { animation-delay: .1s; opacity: 0; }
.delay-2    { animation-delay: .2s; opacity: 0; }
.delay-3    { animation-delay: .3s; opacity: 0; }
.delay-4    { animation-delay: .4s; opacity: 0; }


::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--panel); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

footer {
  text-align: center;
  padding: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  border-top: 1px solid var(--border);
}
footer a { color: var(--accent); text-decoration: none; }
