:root {
  --bg-blue: #060241;
  /* --gold: #ffd700; */

--gold: #ecd551;
  --blue: #0000ff;
  --text-muted: #9aa4b2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg-blue);
  font-family: "Poppins", sans-serif;
  color: #e6eaf0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn.demo-btn {
  font-size: 1.5rem;
  border-radius: 18px;
}

.btn-primary {
  background: var(--gold);
  color: #1b1b1b;
  border: 1px solid rgba(255, 215, 0, 0.75);
}
.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: #e6eaf0;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-outline:hover {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.55);
}

.landing-cta .btn {
  width: 150px;
  height: 50px;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.landing-header {
  position: absolute;
  top: 30px;
  left: 80px;
  right: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-logo {
  height: 50px;
  width: auto;
}

.landing-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.landing-title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.05;
}
.landing-line1,
.landing-line2 {
  display: block;
}

.landing-line1 {
  font-size: 5rem;
  color: var(--gold);
}

.landing-line2 {
  font-size: 3rem;
  color: #144e7f;
}

.landing-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}

.landing-links {
  font-size: 1.7rem;
}

.landing-links a {
  color: #e6eaf0;
  text-decoration: none;
  font-weight: 500;
}

.landing-links a:hover {
  color: var(--gold);
}

.landing-links .sep {
  margin: 0 10px;
  color: var(--text-muted);
}

.landing-footer {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.landing-disclaimer {
  margin-bottom: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.landing-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .landing-header {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .landing-logo {
    height: 40px;
  }
  .landing-line1 {
    font-size: 48px;
  }
  .landing-line2 {
    font-size: 26px;
  }
  .btn,
  .btn.demo-btn {
    font-size: 20px;
    padding: 8px 8px;
    min-width: 0px;
  }

  .landing-cta .btn {
    width: 12px;
    height: 48px;
    font-size: 20px;
    padding: 0;
    min-width: 100px;
  }
}

@media (max-width: 992px) and (orientation: landscape) {

.landing-header {
 
  top: 30px;
  left: 50px;
  right: 50px;
  
}

  .btn.demo-btn {
    font-size: 1rem;
    padding: 8px 8px;
    /* height: 50px;
    line-height: 0.5; */
  }

  .landing-line1 {
    font-size: 2.5rem;
  }

  .landing-line2 {
    font-size: 2rem;
  }

  .landing-cta .btn {
    width: 100px;
    height: 35px;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
  }

  .landing-logo {
    height: 40px;
    width: auto;
  }

  .landing-disclaimer {
    margin-bottom: 4px;
    font-size: 0.7rem;
  }

  .landing-copy {
    font-size: 0.7rem;
  }
}
