:root {
  --bg-color: #0a0a1a;
  --accent: #7289da;
  --text-color: #eaeaea;
  --muted: #999;
  --card-bg: #1a1a2f;
  --border-glow: 0 0 8px var(--accent);

  /* Fonts */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Press Start 2P', monospace;
  --font-accent: 'Orbitron', sans-serif;
}

/* ===== Base ===== */
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

ul {
  padding-left: 1.5rem;
}

ul li {
  margin: 0.5rem 0;
}

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

ul li a:hover {
  text-decoration: underline;
}

/* ===== Header ===== */
header {
  background: radial-gradient(circle, #7289da 0%, #2c2f6c 100%);
  padding: 2rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--border-glow);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-family: var(--font-heading);
}

header p {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ===== Sections ===== */
.section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--border-glow);
}

.section h2,
.section h3 {
  font-family: var(--font-accent);
  color: var(--accent);
  transition: color 0.3s ease;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.section h2 {
  font-size: 1.1rem;
}

.section h3 {
  font-size: 0.9rem;
}

.section h2:hover,
.section h3:hover {
  color: #99aaff;
}

/* ===== Projects ===== */
.project {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #141430;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
}

.project h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--accent);
}

.project p {
  margin: 0.5rem 0;
}

.project a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

.project a:hover {
  text-decoration: underline;
}

/* ===== Gallery ===== */
.gallery-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #141430;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  position: relative;
}

.gallery-group img {
  width: 64px;
  height: 64px;
  image-rendering: pixelated;
  background-color: #222244;
  border: 2px solid var(--accent);
  border-radius: 4px;
}

.gallery-group div {
  flex: 1;
}

.gallery-group h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 1rem;
  font-family: var(--font-accent);
}

.gallery-group p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== Armor Preview ===== */
.armor-preview {
  display: none;
  position: absolute;
  top: 100%;
  left: 1rem;
  background: #1a1a1a;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  z-index: 10;
  gap: 10px;
}

.armor-preview img {
  width: 48px;
  height: 48px;
  margin: 0 5px;
}

/* Show preview on hover */
.gallery-group:hover .armor-preview,
.gallery-group h3:hover + p + .armor-preview {
  display: flex;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: var(--font-heading);
}
