/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Poppins', sans-serif;
  background: #0f0f14;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Section Spacing */
section {
  position: relative;
  width: 100%;
}

/* Shared Footer (sub-pages using footer.php) */
.site-footer {
  background: #0f0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.site-footer .footer-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-content p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.site-footer .footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 200, 50, 0.9);
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Global Particles */
.global-particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.global-particles-container .particle {
  position: absolute;
  background: rgba(255, 200, 50, 0.8);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255, 180, 40, 0.6);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
