
@import url("https://fonts.googleapis.com/css2?family=Parkinsans:wght@300;400;500;600;700&display=swap");

*{
  font-family:"Parkinsans", sans-serif;
    margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 12px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: #1f1f1f00;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #39faad;
  border-radius: 10px;
  border: 3px solid #1f1f1f;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #39faad;
}

::selection {
  background-color: #39faad;
  color: rgb(100, 100, 100);
}


html, body {
  height: 100%;
  background: #000000;
  font-family: Arial, sans-serif;
  overflow: hidden;
  background-image: radial-gradient(circle, #6dffc576 4px, transparent 1px);
  background-size: 70px 70px;
  opacity: 1;
  cursor: url('../assets/cur.cur'), auto;
  cursor: url('../assets/cur.cur'), pointer;
}

.shapes-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  top: -150px;
  left: var(--left, 50%);
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
  animation: fall linear infinite;
  transform: rotate(45deg);
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(0.5px);
}

@keyframes fall {
  to {
    transform: translateY(120vh) rotate(360deg);
  }
}

#enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  background-image: radial-gradient(circle, #ffffff1a 4px, transparent 1px);
  background-size: 70px 70px;
  z-index: 3;
  transition: opacity 0.6s ease;
}

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

#enter-text {
  color: rgb(81, 131, 255);
  font-size: 3.8rem;
  cursor: url('../assets/cur.cur'), pointer;
  transition: color 0.25s ease;
}

#enter-text:hover {
  color: #3cff6f;
}

.content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.content.visible {
  opacity: 1;
}

.card {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 2rem 3rem;
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
}

.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.card hr.boghascp {
  border: 0;
  height: 3px;
  background-color: #00000000;
  width: 50%;
  margin: 20px 0;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card-btn {
  padding: 0.6rem 1.5rem;
  background: #1d1d1d;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.25s ease;
  cursor: url('../assets/cur.cur'), pointer;
}

.card-btn:hover {
  background: #33cc5c;
}
