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

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.header-container {
  width: 100%;
  height: 300px;
  background: url(../asset/img/header.webp) no-repeat center center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.nav-title:hover {
  color: #f0f0f0;
}

.nav-content {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item {
  cursor: pointer;
}

.nav-item:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

.nav-item:active {
  color: #ccc;
}

.header-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-name {
  font-size: 24px;
  color: #fff;
  margin-top: 10px;
  text-align: center;
}

.header-intro {
  font-size: 16px;
  color: #fff;
  margin-top: 5px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.main-container {
  width: 1200px;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item-title {
  font-size: 20px;
  color: #333;
  font-weight: 600;
}

.item-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.item-content-item {
  width: 275px;
  height: 180px;
  position: relative;

  cursor: pointer;
}

.item-content-item:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.item-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-description {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-20px, -50%);
  color: #fff;
  font-size: 22px;
}

.footer-container {
  width: 100%;
  background-color: #0b1025;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.links {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  padding-bottom: 30px;
  border-bottom: #3f3d3d 1px solid;
}

.link-item {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-icon {
  width: 24px;
  height: 24px;
}

.link-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-text {
  padding: 12px;
}

.text-shawdow {
  font-weight: 700;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
}

.card {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.link:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

.link-item:active {
  color: #ccc;
}
