/* Androgynous Ether Preset + Orbitt Site Base */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@400;700&display=swap');

:root {
  --bg: #0e0c1b;
  --fg: #e0d0ff;
  --accent: #7159d9;
  --soft-accent: #9e8eff;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Cormorant Garamond', serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  padding: 2em;
  transition: background 0.5s, color 0.5s;
}

nav {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
}

nav li {
  cursor: pointer;
  color: var(--soft-accent);
  font-weight: bold;
  transition: color 0.3s;
}

nav li:hover {
  color: var(--accent);
}

main {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5em;
}

main img {
  width: 256px;
  height: 256px;
  border-radius: 50px;
  object-fit: cover;
}

h1 {
  font-family: var(--font-heading);
  color: var(--soft-accent);
  font-weight: 600;
  font-size: 2.5em;
}

p {
  font-size: 1.1em;
  max-width: 600px;
}

span.rolling {
  color: var(--accent);
  font-weight: bold;
}

span.username {
  color: var(--soft-accent);
  font-style: italic;
}

button {
  background: var(--accent);
  color: white;
  font-family: var(--font-body);
  border: none;
  border-radius: 1em;
  padding: 0.6em 1.4em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 0 10px var(--accent);
}

button:hover {
  background: var(--soft-accent);
  transform: translateY(-2px);
}

a {
  color: var(--soft-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}