/* seteclabs.io - Terminal Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=VT323&family=Share+Tech+Mono&display=swap');

:root {
  --green: #00ff41;
  --green-dim: #00cc33;
  --green-dark: #009922;
  --bg: #0a0a0a;
  --bg-light: #111111;
  --border: #00ff4133;
  --text: #00ff41;
  --text-dim: #00aa2a;
  --link: #00ffaa;
  --link-hover: #ffffff;
  --red: #ff3333;
  --amber: #ffaa00;
}

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

html {
  scrollbar-color: var(--green-dark) var(--bg);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scanline effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 9999;
}

/* CRT flicker */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.8; }
  94% { opacity: 1; }
  96% { opacity: 0.9; }
  97% { opacity: 1; }
}

body {
  animation: flicker 8s infinite;
}

#container {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px;
}

/* ASCII Art Logo */
#ascii-logo {
  text-align: center;
  margin: 20px 0 10px 0;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  line-height: 1.1;
  color: var(--green);
  white-space: pre;
  text-shadow: 0 0 10px var(--green), 0 0 20px var(--green-dark);
  letter-spacing: 1px;
}

/* Tagline */
#tagline {
  text-align: center;
  font-size: 18px;
  font-family: 'VT323', monospace;
  color: var(--green);
  margin: 10px 0 5px 0;
  text-shadow: 0 0 15px var(--green);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Dividers */
.divider {
  border: none;
  border-top: 1px solid var(--green-dark);
  margin: 20px 0;
  opacity: 0.5;
}

.divider-heavy {
  border: none;
  border-top: 2px solid var(--green);
  margin: 25px 0;
  box-shadow: 0 0 5px var(--green-dark);
}

/* Navigation */
nav {
  text-align: center;
  margin: 15px 0;
  padding: 10px 0;
  border-top: 1px dashed var(--green-dark);
  border-bottom: 1px dashed var(--green-dark);
}

nav a {
  color: var(--link);
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav a:hover {
  color: var(--link-hover);
  text-shadow: 0 0 10px var(--green);
}

/* Sections */
.section {
  margin: 25px 0;
  padding: 15px;
  border-left: 2px solid var(--green-dark);
}

.section-title {
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 15px;
  text-shadow: 0 0 8px var(--green-dark);
  letter-spacing: 2px;
}

.section-title::before {
  content: '> ';
  color: var(--text-dim);
}

/* Text content */
.text-block {
  margin: 10px 0;
  color: var(--green-dim);
  text-align: left;
}

.text-block p {
  margin-bottom: 12px;
  text-indent: 0;
}

/* Quote */
.quote-block {
  margin: 25px 0;
  padding: 20px;
  border: 1px solid var(--green-dark);
  background: var(--bg-light);
  text-align: center;
  position: relative;
}

.quote-block::before {
  content: '/*';
  position: absolute;
  top: 5px;
  left: 10px;
  color: var(--text-dim);
  font-size: 12px;
}

.quote-block::after {
  content: '*/';
  position: absolute;
  bottom: 5px;
  right: 10px;
  color: var(--text-dim);
  font-size: 12px;
}

.quote-text {
  font-style: italic;
  color: var(--amber);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.quote-attr {
  color: var(--text-dim);
  font-size: 12px;
}

/* Text file links */
.text-files {
  margin: 20px 0;
}

.text-file-link {
  display: block;
  padding: 10px 15px;
  margin: 8px 0;
  border: 1px solid var(--green-dark);
  background: var(--bg-light);
  color: var(--link);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 13px;
}

.text-file-link:hover {
  background: #001a00;
  border-color: var(--green);
  color: var(--link-hover);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
  padding-left: 25px;
}

.text-file-link::before {
  content: '[TXT] ';
  color: var(--text-dim);
}

.text-file-link .author {
  color: var(--text-dim);
  font-size: 11px;
}

/* Members list */
.members-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.members-list li {
  color: var(--green-dim);
  font-size: 13px;
}

.members-list li::before {
  content: '~ ';
  color: var(--text-dim);
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 15px 0;
  border-top: 1px solid var(--green-dark);
  text-align: center;
  color: var(--text-dim);
  font-size: 11px;
}

footer a {
  color: var(--text-dim);
  text-decoration: none;
}

footer a:hover {
  color: var(--green);
}

/* Cursor blink effect for prompt */
.prompt::after {
  content: '_';
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Essay pages */
.essay-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 20px;
}

.essay-title {
  font-family: 'VT323', monospace;
  font-size: 26px;
  color: var(--green);
  text-shadow: 0 0 10px var(--green-dark);
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.essay-author {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 25px;
}

.essay-body {
  color: var(--green-dim);
  line-height: 1.8;
}

.essay-body p {
  margin-bottom: 16px;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--link);
  text-decoration: none;
  font-size: 13px;
}

.back-link:hover {
  color: var(--link-hover);
  text-shadow: 0 0 10px var(--green);
}

.back-link::before {
  content: '<< ';
}

/* Mobile responsive */
@media (max-width: 600px) {
  #ascii-logo {
    font-size: 6px;
  }

  #container {
    padding: 10px;
  }

  nav a {
    margin: 0 8px;
    font-size: 12px;
  }

  .members-list {
    flex-direction: column;
  }
}
