:root {
  --text-color: #ffffff;
  --accent-color: #ff00ff;
  --nav-link-color: #e0e0e0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: linear-gradient(135deg, #10122a, #ff00ff);
  min-height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100% !important;
  -ms-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem !important;
  line-height: 1.75 !important;
  color: var(--text-color);
  background: transparent;
  text-align: justify;
  width: 100%;
  min-width: 320px;
}

body a {
  color: inherit;
  text-decoration: none;
}

main {
  flex: 1;
  padding-top: 5rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 0 0 10px 10px;
}



.language {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.4s ease, transform 0.4s ease;
}

.language:hover,
.language:focus-visible {
  color: var(--text-color);
}

.language.is-rotating {
  transform: rotate(360deg);
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 2rem 3rem;
}

.content h2 {
  margin-bottom: 1.5rem;
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
}

.content p {
  margin: 0;
  font-size: 1.4rem;
  color: #ffffff;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  font-size: 1.2rem;
  color: var(--text-color);
  border-radius: 10px 10px 0 0;
}

.contact-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--nav-link-color);
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.contact-buttons a:hover,
.contact-buttons a:focus-visible {
  text-decoration: none !important;
}


.contact-buttons a:hover,
.contact-buttons a:focus-visible {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-icon {
  display: block;
  width: 1em;
  height: 1em;
}

@media (max-width: 768px) {
  body {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
  }

  .navbar {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }

  .language {
    font-size: 1.4rem;
  }

  .content {
    padding: 4rem 1rem 2rem;
  }

  .content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .content p {
    font-size: 1rem;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: 0.75rem;
  }

  .contact-buttons {
    gap: 0.9rem;
  }

  .contact-buttons a {
    font-size: 1.6rem;
  }
}
