body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
}


.container {
  position: absolute;
  left: 1vw; /* small inset from the left edge */
  top: 5vh; /* position near the top instead of center */
  max-width: 520px;
  text-align: left; /* left-align text */
  z-index: 10;
}

.title {
  font-size: 2.25rem;
  margin: 0 0 0.5rem 0;
}

.description {
  max-width: 520px;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}

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

#stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;    /* cover the entire page */
  height: 100vh;
  pointer-events: none;
  z-index: 5;
}

#solar-system {
  position: absolute;
  top: 5vh;
  right: 5vw;
  width: 250px;
  height: 250px;
  pointer-events: none;
  z-index: 6;
}


.content {
  position: relative;
  z-index: 10;
}

.projects {
  margin-top: 1.5rem;
}

.projects-title {
  font-size: 1.2rem;
  margin: 0 0 0.75rem 0;
  color: #ffffff;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-item {
  margin-bottom: 0.5rem;
}

.project-link {
  color: #00ffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.project-link:hover {
  color: #66ffff;
  text-decoration: underline;
}

/* Security Verification Overlay */
.security-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}

.security-content {
  text-align: center;
  max-width: 400px;
  padding: 2rem;
}

.security-title {
  font-size: 2.25rem;
  margin: 0 0 1rem 0;
  color: white;
}

.security-message {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem 0;
  font-size: 1rem;
}

.turnstile-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.verification-status {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  min-height: 1.2rem;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.verification-status.success {
  background: linear-gradient(135deg, 
    rgba(0, 255, 150, 0.15) 0%, 
    rgba(0, 255, 100, 0.08) 50%, 
    rgba(0, 255, 200, 0.12) 100%);
  border: 1px solid rgba(0, 255, 150, 0.25);
  color: #66ff99;
  box-shadow: 0 4px 15px rgba(0, 255, 150, 0.1);
}

.verification-status.error {
  background: linear-gradient(135deg, 
    rgba(255, 100, 100, 0.15) 0%, 
    rgba(255, 50, 50, 0.08) 50%, 
    rgba(255, 150, 150, 0.12) 100%);
  border: 1px solid rgba(255, 100, 100, 0.25);
  color: #ff9999;
  box-shadow: 0 4px 15px rgba(255, 100, 100, 0.1);
}

/* Main Content (initially hidden) */
.main-content {
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
}

.main-content.hidden {
  display: none;
}

/* Turnstile widget styling */
.cf-turnstile {
  margin: 0;
}