@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400&display=swap');

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  -webkit-user-select: none;
  user-select: none;
}

h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  margin: 0 0 12px 0;
  letter-spacing: 2px;
  font-weight: 700;
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem;
  margin: 32px 0 8px 0;
  letter-spacing: 1px;
  font-weight: 700;
  color: #38ef7d;
}

p {
  font-size: 1.2rem;
  margin: 0 0 32px 0;
  color: #e0e0e0;
}

a {
  color: #38ef7d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(56, 239, 125, 0.15);
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #38ef7d 0%, #11998e 100%);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* Login link (upper right) */
.login-link {
  position: fixed;
  top: 16px;
  right: 20px;
  font-size: 0.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  text-transform: uppercase;
}

.login-link:hover {
  color: #38ef7d;
  text-decoration: none;
}

/* Footer links */
footer {
  position: fixed;
  bottom: 16px;
  width: 100%;
  text-align: center;
}

.footer-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  margin: 0 8px;
  -webkit-user-select: none;
  user-select: none;
}

/* Content pages (privacy policy, etc.) */
body:has(.content-page) {
  display: block;
  height: auto;
}

.content-page {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: left;
  padding: 48px 0 64px 0;
}

.content-page h1 {
  text-align: center;
  margin-bottom: 8px;
}

.content-page .subtitle {
  text-align: center;
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 40px;
}

.content-page p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.content-page h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 6px 0;
}

.content-page ul {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.content-page .back-link {
  display: block;
  text-align: center;
  margin-top: 48px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .logo {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .contact-btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
}
