@font-face {
  font-family: "HandelGo";
  src: url("./assets/fonts/HandelGo.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "HandelGothic";
  src: url("./assets/fonts/HandelGothic%20Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

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

body {
  min-height: 100%;
  margin: 0;
  background: #0a081d url("./assets/backgroundbg.png") center top / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "HandelGo", "HandelGothic", "Segoe UI", Arial, sans-serif;
  color: #e8ecff;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 480px 16px 40px;
  width: 100%;
  box-sizing: border-box;
}

.cta {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  cursor: pointer;
}

.cta img {
  display: block;
  width: min(70vw, 900px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

.info-row {
  width: min(1100px, 92vw);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.info-card {
  min-height: 140px;
  border-radius: 10px;
  padding: 16px;
  background: rgba(8, 10, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  color: #e8ecff;
}

.info-card h3 {
  margin: 0 0 8px;
  font-family: "HandelGothic", "HandelGo", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-align: center;
}

.info-card p {
  margin: 0;
  line-height: 1.45;
  font-size: 14px;
}

.media {
  width: min(1100px, 92vw);
  margin-top: 12px;
}

.info-video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

