* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  min-height: 100vh;
}

body::before {
  display: none;
}

body::after {
  display: none;
}

.pf-cursor-dot,
.pf-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  z-index: 9999;
  will-change: transform;
}

.pf-cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d7a4f;
  box-shadow: 0 0 18px rgba(45, 122, 79, 0.45);
  transition: opacity 0.15s ease;
}

.pf-cursor-ring {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 122, 79, 0.75);
  transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
}

html.pf-cursor-active .pf-cursor-dot,
html.pf-cursor-active .pf-cursor-ring {
  opacity: 1;
}

html.pf-cursor-hover .pf-cursor-ring {
  width: 44px;
  height: 44px;
  opacity: 0.88;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .pf-cursor-dot,
  .pf-cursor-ring {
    display: none !important;
  }
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(100px, 100px);
  }
}

@keyframes backgroundShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) rotate(5deg);
  }
}

.status-message {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: #00ff88;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
  z-index: 1000;
  display: none;
  animation: slideDown 0.3s ease;
  border: 2px solid #00dd77;
  min-width: 300px;
  text-align: center;
  letter-spacing: 0.5px;
}

.status-message.success {
  background: linear-gradient(135deg, #00ff88 0%, #00dd77 100%);
  color: #000;
  border-color: #00dd77;
}

.status-message.error {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: #fff;
  border-color: #cc0000;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  .status-message {
    min-width: 250px;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    top: 1rem;
  }
}
