/* Onneta — Global Theme */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F7931E;
  --pink: #FF4081;
  --purple: #CC44CC;
  --gradient: linear-gradient(135deg, #F7931E, #FF4081, #CC44CC);
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #1a1a1a;
  --text: #f0f0f0;
  --text-dim: #888888;
  --text-muted: #555555;
  --border: rgba(255,255,255,0.06);
  --glow: rgba(255,64,129,0.15);
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.logo-text { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 14px; color: var(--text-dim); text-decoration: none;
  padding: 8px 14px; border-radius: 6px; transition: color 0.2s;
  min-height: 44px; display: flex; align-items: center;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  background: var(--gradient); color: #fff; padding: 9px 22px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s, transform 0.2s;
  min-height: 44px; display: flex; align-items: center;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

@media (max-width: 640px) {
  nav { padding: 0 16px; }
}
