
@font-face {
  font-family: 'AstrumVeraFont';
  src: url('./AstrumVeraFont.ttf') format('truetype');
}

html {
  min-height: 100%;
  background-color: black;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'AstrumVeraFont', serif;
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('bg.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.site-content {
  flex: 1;
  padding: 40px 20px;
  overflow-y: auto;
}

.site-content p {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .site-content {
    padding: 20px;
  }
  
  .site-content p {
    font-size: 14px;
  }
}

.center-content {
  text-align: center;
  margin-top: 180px;
}

@media (max-width: 768px) {
  .center-content {
    margin-top: 40px;
  }
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  margin-top: 0;
}

.actions {
  text-align: center;
  margin-top: 60px;
}

.button {
  display: inline-block;
  background: white;
  color: black;
  text-decoration: none;
  padding: 12px 24px;
  margin: 12px;
  border-radius: 5px;
  font-weight: bold;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header .logo {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

@media (max-width: 768px) {
  header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  
  .menu {
    gap: 15px;
  }
  
  .menu a {
    font-size: 14px;
  }
}

footer {
  margin-bottom: 20px;
  text-align: center;
}

/* Privacy and Terms specific styles */
.privacy-content p,
.terms-content p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .privacy-content p,
  .terms-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}
