/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
}

/* BODY */
body {
  background: #020617;
  color: white;
  height: 100vh;
  overflow: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 30px;
  display: flex;
  align-items: center;

  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.06);

  z-index: 10;

  transition: all 0.3s ease;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.navbar:hover {
  border-bottom: 1px solid rgba(168,85,247,0.2);
}

.logo {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* BACKGROUND GLOW ANIMATION */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* CENTER CONTENT */
.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* FADE-IN ANIMATION */
.content {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TEXT */
h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
}

p {
  color: #94a3b8;
  margin-bottom: 30px;
  font-size: 18px;
}

/* LINKS CONTAINER */
.links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* MODERN BUTTON STYLE */
.links a {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  color: #c084fc;
  text-decoration: none;
  font-size: 15px;

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.links a .icon {
  font-size: 16px;
}

/* TEXT */
.links a .text {
  font-weight: 500;
}

/* GLOW EFFECT */
.links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(168,85,247,0.3), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.links a:hover {
  transform: translateY(-4px) scale(1.03);
  border: 1px solid rgba(168,85,247,0.5);
  box-shadow: 0 10px 25px rgba(168,85,247,0.25);
  color: #e9d5ff;
}

.links a:hover::before {
  opacity: 1;
}

/* CLICK */
.links a:active {
  transform: scale(0.96);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }

  .links {
    gap: 15px;
  }
}

/* NAVBAR RIGHT TEXT */
.creator {
  margin-left: auto;
  font-size: 14px;
  color: #64748b;
  opacity: 0.8;
  transition: 0.3s;
}

/* subtle hover */
.creator:hover {
  color: #c084fc;
  opacity: 1;
}