/* === Reset & Base === */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body, html {
  height: 100%;
  background: black;
  font-family: monospace;
  color: white;
  overflow: hidden;
}

/* === Click Screen === */
#clickScreen {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 1000;
  user-select: none;
}

/* === Loader (Green Terminal) === */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 900;
  padding: 2rem;
  color: #00ff00;
  font-size: 0.85rem;
  overflow: hidden;
  white-space: pre-wrap;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#terminal {
  width: 37.5vw; /* 3/8 screen width */
  height: 100%;
}

/* === Main Site === */
#siteContent {
  height: 100vh;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  overflow-y: auto;
  color: white;
  padding: 2rem;
}

/* Site content - default hidden with opacity */
#siteContent {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
  pointer-events: none;
}

/* When visible, fade and slide in */
#siteContent.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* === Profile Box === */
.profile-box {
  background-color: #111;
  border: 2px solid #a020f0;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 0 20px rgba(160, 32, 240, 0.5);
  text-align: center;
  max-width: 700px;
  width: 100%;
}

/* Header */
header h1 {
  font-size: 4rem;
  color: #a020f0;
  margin-bottom: 2rem;
}

/* Profile Section */
.profile {
  margin-top: 1rem;
}
.profile img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #a020f0;
  margin-bottom: 1.5rem;
}
.profile p {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #ddd;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hidden utility */
.hidden {
  display: none !important;
}
