/*--------------------
Body
--------------------*/
html,
body {
  height: 100%;
  background: linear-gradient(0, #202239, #8595AC);
  margin: 0;
  padding: 0;
}
::selection {
  background: #CDD4DE;
}

/*--------------------
Page
--------------------*/
.page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  font-family: Roboto, sans-serif;
  background: #0D0C1E;
  overflow: hidden;
}


/*--------------------
Header
--------------------*/
header {
  padding: 30px;
}

header .logo {
  margin: 0 auto;
  text-align: center;
  margin-bottom: -17px;
}

.tianque-logo {
  font-size: 24px;
  font-weight: bold;
  color: #525C7C;
  letter-spacing: 2px;
}

header nav {
  cursor: pointer;
  width: 18px;
  height: 18px;
  position: relative;
  float: left;
}

header nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #565c73;
  border-radius: 2px;
  box-shadow: 0 5px 0 #565c73, 0 10px 0 #565c73;
}

/* 移除了搜索图标的样式 */

/*--------------------
Content
--------------------*/
.content {
  text-align: center;
  padding-top: 118px;
  color: #CDD4DE;
}

.content h1 {
  font-weight: 900;
  font-size: 165px;
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.6;
}

.content h2 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.content p {
  font-weight: 300;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 140px;
}

.content p a {
  display: inline-block;
  padding: 12px 30px;
  background: rgba(82, 92, 124, 0.3);
  color: #CDD4DE;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(82, 92, 124, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content p a:hover {
  background: rgba(82, 92, 124, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 移除了原来的 .content a 样式 */

/*--------------------
Image
--------------------*/
img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scale(1.1);
  object-fit: cover;
}