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

html {
  font-size: 13.333333vw;
}

@media (min-width: 750px) {
  html {
    font-size: 100px;
  }
}

body {
  min-height: 100vh;
  background: #151515;
  color: #fff;
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  width: 100%;
  max-width: 7.5rem;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-layer img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 140%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(24.84deg);
  opacity: 1;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.top-bar {
  position: relative;
  z-index: 2;
  height: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0 0.32rem;
  font-size: 0.28rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.06rem 0.45rem 0.8rem;
}

.brand {
  width: 4.5rem;
  margin-bottom: 0.58rem;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.routes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
}

.route-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1rem;
  border: 1px solid #f9d39c;
  border-radius: 0.19rem;
  background: #1d1d1d;
  color: #fff;
  font-size: 0.28rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.route-btn:active {
  background: #2a2a2a;
  border-color: #ffe0b0;
}

.tips {
  width: 5.6rem;
  margin-top: 0.94rem;
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
