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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-image: url("./img/hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #E9E9E9;

  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

h1, h2, h3 {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
}

p, a, li, span, button, input, textarea {
  font-family: inherit;
}

.btn {
  font-weight: 600;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

main {
  padding-top: 120px;
  padding-bottom: 18px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}


ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 32px;
    list-style: none;
}

ul a {
    text-decoration: none;
    color: #E9E9E9;

}

ul a:hover {
    text-shadow: 1px 1px 2px red, 0 0 25px #E55800;
}

h1 {
    font-size: 64px;
    color: #E9E9E9;
    text-shadow: 1px 1px 2px red, 0 0 25px #E55800;
}

.headline {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;


}

.logowhite {
    display: flex;
    width: 200px;
}

.maintext {
    font-size: 24px;
    text-align: center;
}

main.legal {
  max-width: 900px;
  margin: 120px auto;
  padding: 40px;
  background: rgba(10, 15, 25, 0.75);
  border-radius: 16px;
  gap: 24px;
}

main.legal h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

main.legal h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: #E55800;
}

main.legal p {
  line-height: 1.6;
  opacity: 0.9;
}

article {
  max-width: 800px;
  background: rgba(0,0,0,0.4);
  padding: 24px;
  border-radius: 12px;
}


.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(233, 233, 233, 0.6);

  background: rgba(10, 15, 25, 0.6);
  backdrop-filter: blur(4px);

  z-index: 900;
}

.content {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 48px;
  max-width: 900px;
}

.content article {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  padding: 32px;
  border-radius: 16px;
}

.content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #E9E9E9;
}

.content p {
  line-height: 1.6;
  opacity: 0.9;
}

.subtext {
  margin-top: 8px;
  font-size: 16px;
  opacity: 0.7;
  letter-spacing: 0.08em;
}

main.home {
  min-height: calc(100vh - 80px - 32px);
  padding-top: 80px;
  padding-bottom: 32px;

  display: flex;
  justify-content: center;
}

.home-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
}




/* Under Construction */
main.uc {
  min-height: calc(100vh - 80px - 32px);
  padding-top: 80px;
  padding-bottom: 32px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.uc-card {
  width: min(900px, 92%);
  padding: 48px 40px;
  border-radius: 16px;
  background: rgba(10, 15, 25, 0.75);
  backdrop-filter: blur(6px);
  text-align: center;
}

.uc-card h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.uc-sub {
  opacity: 0.85;
  margin-top: 8px;
}

.uc-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #E9E9E9;
  background: rgba(229, 88, 0, 0.25);
  border: 1px solid rgba(229, 88, 0, 0.35);
}

.btn:hover {
  background: rgba(229, 88, 0, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(233, 233, 233, 0.18);
}

