/*Specific fonts' styles*/
@import url("https://fonts.googleapis.com/css2?family=Anta&family=Audiowide&family=Electrolize&family=Geo:ital@0;1&family=Orbitron:wght@400..900&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Iceberg&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prosto+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  background-color: #1a1a1a;
  min-height: 100vh;
  position: relative;
}

.footer-page-header {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: 2rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .footer-page-header {
    padding: 2.5rem 2rem 1.5rem;
  }
}

.go-back-btn {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  right: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-family: "Audiowide", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideInFromLeft 0.6s ease 0.8s forwards;
  max-width: calc(100vw - 3rem);
  white-space: nowrap;
}
.go-back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.go-back-btn:active {
  transform: translateX(-1px) scale(0.98);
}
.go-back-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}
.go-back-btn:hover svg {
  transform: translateX(-2px);
}
@media (min-width: 768px) {
  .go-back-btn {
    top: 2.5rem;
    left: 2rem;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    max-width: calc(100vw - 4rem);
  }
}
@media (max-width: 480px) {
  .go-back-btn {
    left: 1rem;
    max-width: calc(100vw - 2rem);
    padding: 0.5rem;
    min-width: 2.5rem;
    justify-content: center;
  }
  .go-back-btn span {
    display: none;
  }
}

.footer-page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Dots", sans-serif;
  color: #fff;
  margin-top: 2rem;
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  hyphens: auto;
}
@media (min-width: 768px) {
  .footer-page-title {
    margin-top: 1.5rem;
  }
}

.footer-page-content {
  width: 100%;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-page-content {
    padding: 0 2rem;
    margin-top: 4rem;
    min-height: 60vh;
  }
}
@media (max-width: 480px) {
  .footer-page-content {
    min-height: 40vh;
  }
}

.footer-page-paragraph {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: justify;
  opacity: 0;
  animation: fadeInStagger 0.6s ease forwards;
  animation-delay: 1.4s;
}
@media (min-width: 768px) {
  .footer-page-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .footer-page-paragraph {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
}

.copy-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin-top: 40px;
  opacity: 0;
  animation: fadeInStagger 0.8s ease 2.2s forwards;
}

.copy-container h3 {
  font-family: "Zen Dots", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 400;
  margin: 0.5rem 0;
}

.dev-link {
  text-decoration: none;
  color: #939393;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.dev-link:hover {
  color: #6e6e6e;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInStagger {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=privacy-policy.css.map */
