:root {
  --bg-color: #080808;
  --text-color: #d0d0d0;
  --border-color: #666666;
  --hover-bg: #1a1a1a;
  --accent-color: #ffffff;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  width: 100%;
  max-width: 650px;
  border: 1px solid var(--border-color);
  padding: 3rem 2rem 5rem 2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.links-section {
  padding: 0 1rem;
}

.profile-icon {
  width: 100px;
  height: 100px;
  border-radius: 0; /* Square for blueprint look */
  object-fit: cover;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1, h2 {
  font-weight: normal;
  letter-spacing: 2px;
  color: var(--accent-color);
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.1rem; color: #aaaaaa; }

.bio {
  text-align: center;
  font-size: 0.95rem;
}

/* Status section split */
.status-indicator, .queue {
  padding: 0.2rem;
  text-align: center;
  font-weight: bold;
}

.status-indicator {
  margin-bottom: 0.5rem;
}

.queue {
  margin-bottom: 1.5rem;
}

.btn, .link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.5rem;
  border: 1px solid var(--border-color);
  background-color: transparent;
  color: var(--text-color);
  text-decoration: none;
  font-weight: normal;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-align: center;
}

/* -------------------------------------
   Supporters Ticker
   ------------------------------------- */

.ticker-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: var(--bg-color);
  border-top: 1px solid var(--border-color);
  padding: 0.5rem 0;
  white-space: nowrap;
  box-sizing: border-box;
  z-index: 1000;
}

.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 120s linear infinite;
  font-family: monospace;
  color: #666;
  font-size: 0.8rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.btn:hover, .link-btn:hover {
  background-color: var(--hover-bg);
  border-color: #aaaaaa;
  color: var(--accent-color);
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.guidelines-content ul {
  list-style: none;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.guidelines-content li {
  margin-bottom: 0.5rem;
}

.notes {
  border: 1px dashed var(--border-color);
  padding: 1rem;
  font-size: 0.85rem;
  color: #aaaaaa;
}

.btn-back {
  margin-top: 1.5rem;
  width: 100%;
}

/* -------------------------------------
   Responsive / Mobile adjustments
   ------------------------------------- */
@media (max-width: 600px) {
  body {
    padding: 0; /* Remove body padding on small screens */
  }
  
  .container {
    border: none;
    margin-top: 0;
    margin-bottom: 2rem;
    padding: 2rem 1rem 5rem 1rem; /* Adjust padding, keep bottom padding for ticker */
    max-width: 100%;
  }

  h1 { font-size: 1.3rem; }
  h2 { font-size: 1rem; }
  
  .bio { font-size: 0.85rem; }
  
  .button-grid {
    /* Force a 2-column layout on mobile to keep buttons readable */
    grid-template-columns: repeat(2, 1fr);
  }
  
  .btn, .link-btn {
    padding: 0.8rem 0.2rem;
    font-size: 0.8rem; /* Slightly smaller text */
  }
  
  .ticker {
    font-size: 0.75rem; /* Smaller ticker text on mobile */
  }
}
