	a {
	  color: #00ffff;           /* bright cyan for unvisited links */
	  text-decoration: underline;
	  transition: color 0.15s;
	}
	a:visited {
	  color: #50f3f3;           /* slightly muted cyan for visited links */
	}
	a:hover,
	a:focus {
	  color: #00fdfd;           /* lighter cyan on hover/focus */
	  text-shadow: 0 0 6px #00ffff88;
	  outline: none;
	}
	a:active {
	  color: #5deebb;           /* soft green for active/clicked */
	}    
	body {
      font-family: 'Courier New', Courier, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', monospace, sans-serif;
      background-color: #000;
      color: #00ffff;
      margin: 0;
      padding: 0;
    }

    header {
      background-color: #007f7f;
      padding: 1em;
      text-align: center;
    }

    nav ul {
      list-style-type: none;
      padding: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    nav ul li {
      display: inline;
    }

    nav ul li a {
      color: #00f6f6;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
    }

    nav ul li a:hover {
      color: #00fdfd;
    }

    .hero {
      background-color: #002828;
      text-align: center;
      padding: 2em;
      color: #b3feb3;
    }

    .hero h1 {
      font-size: 2.5em;
      color: #b3feb3;
    }

    .hero p {
      color: #78c878;
      font-size: 1.2em;
    }

    .cta-button {
      background-color: #00c8c8;
      color: #000;
      padding: 0.8em 1.2em;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      display: inline-block;
      margin-top: 1em;
      cursor: pointer;
    }

    .cta-button:hover {
      background-color: #00fdfd;
    }

    section {
      padding: 2em;
      border-bottom: 1px solid #007878;
    }

    .thread-of-week h2 {
      color: #00ffff;
    }

    .main-content {
      /* wrapper for main page highlights */
    }

    .card {
      background-color: #001010;
      padding: 1.5em;
      margin: 1em 0;
      border-left: 5px solid #00b7b7;
    }

    .card h3 a {
      color: #00ffff;
      text-decoration: none;
    }

    .card p {
      color: #c0fefe;
    }

    .forum-embed-container {
      width: 100%;
      background: #000;
      padding: 0;
      margin: 0;
      display: none; /* hidden by default */
      flex-direction: column;
      align-items: center;
    }

    .forum-embed {
      width: 100vw;
      max-width: 100%;
      height: 80vh;
      border: none;
      background: #000;
      box-shadow: 0 0 16px #00787860;
    }

    @media (max-width: 900px) {
      .forum-embed {
        height: 70vh;
      }
    }

    footer {
      background-color: #007878;
      color: #00ffff;
      text-align: center;
      padding: 1em;
    }

    footer p {
      margin: 0;
    }

    .sysop {
      color: #5deebb;
      font-style: italic;
      text-align: center;
      padding-bottom: 1em;
    }
/* General link styling for your theme */
