/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  color: white;
  background: black;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur831.cur'), auto;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Content */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  animation: fadeIn 2s ease;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #d0d0d0;
}

.button {
  background: #0d6efd;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.4);
}

.button:hover {
  background: #084298;
  transform: scale(1.05);
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur831.cur'), pointer;
}

/* Footer */
footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  text-shadow: 0 0 5px #000;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
  }
}

.animate-pulse {
  animation: pulse 2.5s infinite ease-in-out;
}
