/* === Retro Modern CSS for Indiehoo === */
/* Designed for: indiehoo.neocities.org */
/* Vibe: early web meets synthwave neon with crisp modern layout */

:root {
  --bg-color: #0b0b1a;
  --accent1: #ff6ec7; /* hot pink */
  --accent2: #5dfdcf; /* aqua green */
  --accent3: #ffe66d; /* retro yellow */
  --text-light: #f5f5f5;
  --text-muted: #b5b5b5;
  --menu-bg: rgba(255, 255, 255, 0.08);
  --font-main: "Press Start 2P", monospace;
  --font-alt: "IBM Plex Sans", sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=IBM+Plex+Sans:wght@400;700&display=swap');

/* Body setup */
body {
  background: radial-gradient(circle at top right, #1a1a3f, var(--bg-color));
  color: var(--text-light);
  font-family: var(--font-alt);
  margin: 0;
  padding: 20px;
  line-height: 1.6;
  text-shadow: 0 0 4px rgba(255,255,255,0.1);
}

/* Header */
h1 {
  font-family: var(--font-main);
  color: var(--accent1);
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-top: 40px;
  text-shadow: 0 0 6px var(--accent1), 0 0 15px var(--accent2);
}

/* Paragraphs */
p {
  max-width: 700px;
  margin: 10px auto;
  font-size: 1rem;
}

/* Emphasized text */
em {
  color: var(--accent3);
}

/* === Menu Bar === */
.menu {
  text-align: center;
  background: var(--menu-bg);
  border: 2px solid var(--accent2);
  border-radius: 10px;
  padding: 10px;
  margin: 20px auto;
  width: fit-content;
  box-shadow: 0 0 15px var(--accent2);
  font-family: var(--font-main);
  letter-spacing: 1px;
}

.menu a {
  color: var(--accent2);
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid var(--accent1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.menu a:hover {
  background: var(--accent1);
  color: var(--bg-color);
  box-shadow: 0 0 20px var(--accent1);
  transform: scale(1.05);
}

/* === Tables === */
/* === Directory Table === */
.directory-table {
  margin: 40px auto;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #5dfdcf;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(93, 253, 207, 0.5);
  padding: 10px;
  width: 80%; /* changed from 90% */
  max-width: none; /* removes the hard limit */
  font-family: "Press Start 2P", monospace;
  font-size: 0.7rem;
  color: #ffe66d;
  text-align: center;
}

.directory-table td {
  padding: 12px 10px;
  border: 1px solid rgba(255, 110, 199, 0.4);
}

.directory-header td {
  color: #ff6ec7;
  text-shadow: 0 0 6px #ff6ec7, 0 0 12px #5dfdcf;
  font-weight: bold;
}

.directory-table a {
  color: #5dfdcf;
  text-decoration: none;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.directory-table a:hover {
  color: #ff6ec7;
  text-shadow: 0 0 10px #ff6ec7;
  transform: scale(1.05);
}

.site-desc {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.85rem;
  color: #b5b5b5;
  margin-top: 3px;
}

/* Responsive glow cleanup */
@media (max-width: 600px) {
  .directory-table {
    font-size: 0.55rem;
  }
  .directory-table td {
    padding: 8px 4px;
  }
}

/* === Images === */
img {
  display: block;
  margin: 20px auto;
  border: 3px solid var(--accent1);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 110, 199, 0.5);
  max-width: 90%;
  height: auto;
}

/* === Links === */
a {
  color: var(--accent1);
}

a:hover {
  color: var(--accent2);
  text-shadow: 0 0 8px var(--accent2);
}

/* === Responsive Adjustments === */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .menu {
    width: 90%;
    font-size: 0.8rem;
  }

  h1 {
    font-size: 1.1rem;
  }
}
.retro-button-container {
  text-align: center;
  margin: 40px 0;
}

.retro-button {
  font-family: "Press Start 2P", monospace;
  color: #5dfdcf; /* aqua */
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid #ff6ec7; /* neon pink border */
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px #5dfdcf;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 1px;
  cursor: pointer;
}

.retro-button:hover {
  background: #ff6ec7;
  color: #0b0b1a;
  box-shadow: 0 0 25px #ff6ec7;
  transform: scale(1.08);
}
/* === Neon Divider Line === */
.neon-divider {
  display: block;
  margin: 40px auto;
  border: none;
  outline: none;
  box-shadow: none;
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 0 6px #5dfdcf) drop-shadow(0 0 12px #ff6ec7);
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.neon-divider:hover {
  filter: drop-shadow(0 0 10px #ff6ec7) drop-shadow(0 0 20px #5dfdcf);
  opacity: 1;
}
