/* ===========================
   GLOBAL CUSTOM CURSOR
=========================== */
* {
  cursor: url("cursor.png"), auto;
}

a, button {
  cursor: pointer;
}

/* ===========================
   REST OF YOUR STYLES
=========================== */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* BACKGROUND */
body {
  height: 100vh;
  background: url("Background.gif") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ENTER SCREEN */
/* Update this section in your CSS */
#enter-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.5s, visibility 0.5s; /* Add visibility here */
}

/* Add this helper class to use in JS */
.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* MAIN CONTENT */
.main {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease;
}

.hidden {
  display: none;
}

/* CARD (BLUR GLASS STYLE) */
.card {
  backdrop-filter: blur(20px);
  background: rgba(20, 20, 20, 0.6);
  border-radius: 20px;
  padding: 40px;
  width: 350px;
  text-align: center;
  color: white;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}

/* PROFILE */
.profile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* TEXT */
h1 {
  font-size: 28px;
}

.subtitle {
  opacity: 0.7;
  margin-bottom: 10px;
}

.description {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.6;
}

/* SOCIALS */
.socials {
  display: flex;
  justify-content: space-between;
}

.socials img {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.socials img:hover {
  transform: scale(1.15);
  filter: brightness(1.3);
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
