* { cursor: none; }

body {
  margin: 0;
  font-family: Arial;
  background: #000;
  color: white;
}

/* Cursor */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Navbar */
nav {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

nav a {
  color: #aaa;
  margin: 0 15px;
  text-decoration: none;
}

nav a:hover {
  color: white;
}

/* Cards */
.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 14px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* Inputs */
input, textarea {
  width: 100%;
  background: #111;
  border: 1px solid #222;
  color: white;
  padding: 10px;
  border-radius: 6px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: white;
}

/* Popup */
#popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: white;
  color: black;
  padding: 10px 18px;
  border-radius: 8px;
  opacity: 0;
  transition: 0.3s;
  z-index: 9999;
}

#popup.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
