:root {
  --color-bg-dark: #0f0529;
  --color-bg-purple: #1f0b47;
  --color-accent-violet: #2e1065;
  --color-text-primary: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-gold-accent: #c6a15b;
}

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

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  /*font-family: "Inter", "Helvetica Neue", sans-serif;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  height: 100vh;*/

  /* Changed from center to flex-start */
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
}

/* From Uiverse.io by mobinkakei */
.wrapper {
  width: 200px;
  height: 65px;

  position: relative;
  z-index: 20;

  margin: 2rem auto 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 0.5s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 75);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 0.5s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

/* =========================
   MAIN CONTENT
========================= */

.content-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 600px;

  /* Controls distance from the top */
  padding-top: 20px;
}

/* =========================
   ANIMATED BACKGROUND
========================= */

.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.65;
  pointer-events: none;
  will-change: transform;
}

/* Purple + Violet + Gold Orbs */

.sphere-1 {
  width: 45vw;
  height: 45vw;

  background: radial-gradient(
    circle,
    var(--color-accent-violet),
    var(--color-bg-purple)
  );

  top: -10%;
  left: -10%;

  animation: spotlight-sweep-1 16s ease-in-out infinite alternate;
}

.sphere-2 {
  width: 40vw;
  height: 40vw;

  background: radial-gradient(
    circle,
    var(--color-bg-purple),
    var(--color-bg-dark)
  );
  bottom: -15%;
  right: -10%;
  animation: spotlight-sweep-2 20s ease-in-out infinite alternate;
}

.sphere-3 {
  width: 35vw;
  height: 35vw;
  background: radial-gradient(
    circle,
    rgba(198, 161, 91, 0.45),
    var(--color-accent-violet)
  );
  top: 35%;
  left: 30%;
  animation: spotlight-sweep-3 14s ease-in-out infinite alternate;
}

/* =========================
   NOISE
========================= */

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.05;
  z-index: 5;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* =========================
   ANIMATIONS
========================= */

@keyframes spotlight-sweep-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(22vw, 15vh) scale(1.25);
  }
  66% {
    transform: translate(10vw, 32vh) scale(0.9);
  }
  100% {
    transform: translate(28vw, -5vh) scale(1.1);
  }
}

@keyframes spotlight-sweep-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-22vw, -18vh) scale(1.2);
  }
  66% {
    transform: translate(-8vw, -32vh) scale(0.85);
  }
  100% {
    transform: translate(-26vw, 10vh) scale(1.15);
  }
}

@keyframes spotlight-sweep-3 {
  0% {
    transform: translate(0, 0) scale(0.95);
    opacity: 0.4;
  }
  33% {
    transform: translate(-18vw, 22vh) scale(1.3);
    opacity: 0.75;
  }
  66% {
    transform: translate(16vw, -16vh) scale(0.85);
    opacity: 0.45;
  }
  100% {
    transform: translate(-10vw, -25vh) scale(1.1);
    opacity: 0.6;
  }
}

/* =========================
   GRID
========================= */

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-size: 40px 40px;

  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  z-index: 2;
}

/* =========================
   CENTER GLOW
========================= */

.glow {
  position: absolute;

  width: 40vw;
  height: 40vh;

  background: radial-gradient(circle, rgba(205, 26, 255, 0.5), transparent 70%);

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 2;

  animation: pulse 8s infinite alternate;

  filter: blur(30px);
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.9);
  }

  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* =========================
   PARTICLES
========================= */

.particles-container {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  z-index: 3;

  pointer-events: none;
}

.particle {
  position: absolute;

  background: white;

  border-radius: 50%;

  opacity: 0;

  pointer-events: none;
}

/* =========================
   LAYOUT & CONTAINER
========================= */

.whole {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

/* =========================
   LOGO (TOP)
========================= */

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.logo img {
  display: block;
  width: clamp(7.5rem, 15vw, 11rem);
  height: auto;
}

/* =========================
   CENTER CONTENT
========================= */

.center-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  padding: 1.5rem 0;
}

.h1 {
  display: flex;
  font-size: clamp(2.8rem, 8.5vw, 6.5rem);
  color: rgba(249, 249, 255, 0.95);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.h {
  display: flex;
  font-size: 1.3rem;
  color: rgb(249, 249, 255);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* =========================
   FOOTER / CONTACT (BOTTOM)
========================= */

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.socials {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0;
}

.socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  transition: transform 0.3s, color 0.3s;
}

.socials a:hover {
  transform: translateY(-3px);
  color: var(--color-gold-accent);
}

.socials1 {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-top: 0.2rem;
  transition: transform 0.3s, color 0.3s;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.socials1 a:hover {
  transform: translateY(-2px);
  color: var(--color-gold-accent);
}

@media screen and (max-width: 600px) {
  .whole {
    padding: 1.5rem 1rem;
  }
}

