.back-button {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
body,
html {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #1e0033, #3a0066);
  color: #fff;
  overflow-x: hidden;
}

.background-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 10s infinite linear;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  animation: slideDown 0.8s ease-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    filter: blur(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slideUP {
  from {
    transform: translateY(100%);
    filter: blur(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.navbar img {
  height: 40px;
}

.navbar a {
  font-family: "Montserrat", sans-serif;
  color: #ccc;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: white;
}

.content {
  font-family: "Montserrat", sans-serif;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  animation: slideUP 1s ease;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.content h1 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 50px;
  font-weight: 900;
}

.content h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
}

.content p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  padding: 14px 18px;
  border-radius: 12px;
  margin: 8px 0;
  font-size: 1rem;
}

.content span {
  font-weight: 700;
  color: white;
}

@media (max-width: 768px) {
  .content {
    margin: 30px 15px;
    padding: 25px;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
