:root {
  --tung: #0a1f0f;
  --accent: #1e8449;
  --accent-hover: #27ae60;
  --text: #ffffff;
  --text-dim: #f3f3f3;
  --socialhovercolorwhateverbruh: rgba(94, 255, 161, 0.5);
}

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

html, body {
  width: 100%;
  height: 100%;
  background: var(--tung);
}

#tungtungtuff {
  position: fixed;
  inset: 0;
  background-image: url('stuff/bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

#tungtungtuffer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

#tungtungtuffer.visible {
  opacity: 1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 1;
}

#roddyricchbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

#pfp {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

#qatualqatualqatualqatualqatual {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text);
}

#bio {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 185px;
  line-height: 1.5;
}

#socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

#socials-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

#socials-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  color: var(--text);
  font-size: 1.7rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 10px var(--accent-hover), 0 0 20px var(--accent-hover);
}

#projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#projects-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.project-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 24px;
  background-color: var(--tung);
  color: var(--text);
  border-radius: 8px;
  outline: 2px solid var(--accent);
  border: 4px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.project-btn:hover {
  border: 4px solid var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 30px var(--accent);
  outline: 2px solid transparent;
}

#enter-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px) brightness(0.45);
  -webkit-backdrop-filter: blur(8px) brightness(0.45);
  cursor: pointer;
  transition: opacity 0.6s ease;
  z-index: 100;
}

#enter-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

#clicktoenterthingy {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
