/* Monochrome green-screen retro theme */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

:root {
  --green: #00ff41;
  --green-dim: #0b9b2b;
  --bg: #000000;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--green);
  font-family: 'VT323', monospace;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 1rem 0;
}

header {
  padding: 1.5rem 0 0.5rem 0;
  text-align: center;
}

header h1 {
  margin: 0;
  color: var(--green);
  font-size: 2.25rem;
  text-shadow: 0 0 6px rgba(0,255,65,0.5);
}

header p {
  margin: 0.25rem 0 0.75rem 0;
  color: var(--green-dim);
  font-size: 1.1rem;
}

nav ul { list-style: none; padding: 0; margin: 0.5rem 0 1rem 0; }
nav ul li { display: inline-block; margin: 0 0.8rem; }
nav ul li a {
  color: var(--green);
  text-decoration: none;
  opacity: 0.95;
  border-bottom: 1px dashed rgba(0,255,65,0.15);
}
nav ul li a:hover { opacity: 1; }

main { padding-bottom: 4rem; }

section { margin-bottom: 1.5rem; }

.project {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(0,255,65,0.08);
  padding: 1rem;
  margin-bottom: 1rem;
}

.project h3 { margin: 0 0 0.5rem 0; font-size: 1.4rem; }
.project p { margin: 0; color: var(--green-dim); }
.project a { color: var(--green); text-decoration: underline; }

.tier-grid,
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.tier-grid ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: var(--green-dim);
}

footer { text-align: center; padding: 1rem 0 3rem 0; color: var(--green-dim); }

/* Boot overlay */
.boot-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #001100 0%, #000000 80%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-direction: column;
  padding: 2rem;
}
.boot-console {
  width: min(900px, 95%);
  max-height: 80%;
  overflow: hidden;
  border: 2px solid rgba(0,255,65,0.06);
  padding: 1rem 1.25rem;
  box-shadow: 0 0 40px rgba(0,255,65,0.08) inset;
  background: rgba(0,0,0,0.25);
}
.boot-line { white-space: pre-wrap; font-size: 1.15rem; line-height: 1.5; }
.cursor { display: inline-block; width: 10px; background: var(--green); margin-left: 6px; animation: blink 1s steps(2,end) infinite; height: 1.2rem; vertical-align: text-bottom; }

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

/* Scanlines & subtle flicker */
.scanlines::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0) 50%, rgba(255,255,255,0.02) 51%);
  background-size: 100% 4px;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 9998;
}

.crt-glow { filter: drop-shadow(0 0 6px rgba(0,255,65,0.12)); }

/* small utilities */
.muted { color: var(--green-dim); }

/* Verified badge */
.verified { color: var(--green); font-weight: bold; }

/* Skip button styling (subtle, professional) */
.skip-button {
  background: transparent;
  color: var(--green-dim);
  border: 1px solid rgba(0,255,65,0.06);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
}
.skip-button:hover { color: var(--green); border-color: rgba(0,255,65,0.12); }

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(0,255,65,0.6);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-size: 0.95rem;
  margin-top: 0.8rem;
  background: linear-gradient(135deg, rgba(0,255,65,0.1), rgba(0,255,65,0.05));
  box-shadow: 0 0 20px rgba(0,255,65,0.25);
}

.button-link:hover {
  border-color: rgba(0,255,65,1);
  box-shadow: 0 0 25px rgba(0,255,65,0.45);
}

/* snow container preserved */
#snowContainer { pointer-events: none; position: fixed; inset: 0; z-index: 8000; }
.snowflake { position: absolute; top: -5vh; animation: fall linear; }
@keyframes fall { to { transform: translateY(110vh); } }

/* Responsive tweaks */
@media (max-width: 600px) {
  header h1 { font-size: 2.25rem; }
  body { font-size: 18px; }
}

