:root {
  --bg-color: #0a113a;
  --card-bg: rgba(15, 23, 42, 0.8);
  --gold: #e9c176;
  --gold-glow: rgba(233, 193, 118, 0.3);
  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(233, 193, 118, 0.2);
}

@font-face {
  font-family: 'PingFang SC';
  src: url('/pingfang.ttf') format('truetype');
}

::-webkit-scrollbar {
  width: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    'PingFang SC',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.header {
  width: 100vw;
  min-height: 84vh;
  background: url('../pc/Group 24.png') no-repeat top center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 20px 0;
}

.header-line {
  position: absolute;
  bottom: -7rem;
  width: 100vw;
  left: 0;
}
.header-line img {
  width: 100%;
}

.header-content {
  max-width: 1280px;
  z-index: 2;
}

.header h1 {
  font-size: clamp(4rem, 5vw, 4rem);
  color: white;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  text-shadow: 0 0 20px var(--gold-glow);
}

.header h2 {
  font-size: clamp(4rem, 3vw, 4rem);
  font-weight: 600;
  color: var(--gold);
}

.badge {
  display: inline-block;
}

/* Intro Section */
.intro {
  padding: 100px 0 0;
  background: url('../pc/Group 17.png') no-repeat left center;
  background-size: 1776px;
  position: relative;
  margin-top: 14px;
}
.intro .container {
  background: url('../pc/Group 18.png') no-repeat left top/cover;
  margin-top: 70px;
  background-size: 100%;
}

.intro p {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  text-align: justified;
  font-style: normal;
}
#intro-content {
  padding: 83px 20px;
}
#intro-content2 {
  padding: 122px 20px 71px;
}

/* Section Titles */
section h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color);
  position: relative;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

section h3::after {
  content: '';
  display: block;
  width: 96px;
  height: 4px;
  background: rgba(233, 193, 118, 0.6);
  margin: 15px auto 0;
}

/* Teams */
.teams {
  padding: 100px 0 0;
  background: url('../pc/Group 19.png') no-repeat left 391px;
  background-size: 1776px;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-card {
  background: linear-gradient(
    180deg,
    rgba(197, 160, 89, 0.5) 0%,
    rgba(197, 160, 89, 0) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.team-card-top {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.team-image-wrapper {
  position: relative;
  width: 310px;
  height: 258px;
  border-radius: 50px;
  flex-shrink: 0;
  overflow: hidden;
}

.team-image {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
  border: none;
}

.badge-rank {
  position: absolute;
  top: 15px;
  right: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}

.image-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, #141c4a 0%, rgba(20, 28, 74, 0) 100%);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.image-overlay-info .name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

.image-overlay-info .votes {
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
}

.team-info-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.intro-text {
  margin-top: 24px;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #d1c5b4;
  text-align: left;
  font-style: normal;
  text-transform: uppercase;
}

.vote-btn-container {
  text-align: center;
}

.vote-btn {
  background: none;
  border: none;
}

.team-details-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-block h5 {
  color: #d1c5b4;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.detail-block p {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #d1c5b4;
  text-align: left;
  font-style: normal;
  text-transform: uppercase;
}

/* Sponsors */
.sponsors {
  padding: 100px 0 0;
  background: rgba(15, 23, 42, 0.3);
  background: url('../pc/Group 20.png') no-repeat right 170px;
  background-size: 1776px;
}
.sponsor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: center;
}

.sponsor-item {
  text-align: center;
}
.sponsor-item img {
  max-width: 150px;
  height: auto;
  filter: grayscale(1) brightness(2);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sponsor-item:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.conditions {
  width: 1059px;
  background: url('../pc/Group 21.png') no-repeat center top;
  background-size: 100%;
  padding: 283px 45px 164px;
  margin: 0 auto;
}
.conditions h4 {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 600;
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 16px;
}
.conditions p,
.conditions h5 {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #d1c5b4;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
/* Recruitment */
.recruitment {
  padding: 100px 0 0;
}
.recruitment-content {
  background: url('../pc/Group 7.png') no-repeat center top;
  background-size: 100%;
  padding: 39px 0;
  margin-bottom: 25px;
}
.recruitment-content h3 {
  margin-bottom: 120px;
}
.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
#recruitment-list2 {
  padding: 197px 0 77px;
  background: url('../pc/Group 8.png') no-repeat center top;
  background-size: 100%;
  margin-top: 30px;
}

.recruitment-card {
  padding: 25px;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.recruitment-card:nth-child(2) {
  align-items: flex-end;
}

.recruitment-card h5,
.recruitment-card p {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 600;
  font-size: 18px;
  color: #d1c5b4;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.recruitment-card:nth-child(2) h2,
.recruitment-card:nth-child(2) p {
  text-align: right;
}
#recruitment-list3 {
  padding: 334px 48px 253px;
  background: url('../pc/Group 22.png') no-repeat center top;
  background-size: 100%;
}
#recruitment-list3 li,
#recruitment-list3 h5 {
  list-style: none;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

/* Prizes */
.prizes {
  padding: 100px 0 0;
}
.prize-list {
  background: url('../pc/Group 23.png') no-repeat center top;
  background-size: 100%;
  margin-top: 50px;
  min-height: 760px;
}
.prize-container {
  width: 1250px;
  position: relative;
  margin: 0 auto;
  display: flex;
  padding-top: 480px;
}

.prize-card {
  text-align: center;
  width: 33.33%;
}
.prize-card h5 {
  display: inline-block;
  padding: 4px 12px;
  background: #c3c0b9;
  border-radius: 2px;
  margin-bottom: 20px;
}
.prize-card2 h5 {
  display: inline-block;
  padding: 4px 16px;
  background: #e9c176;
  color: #412d00;
  border-radius: 2px;
}
.prize-card2 {
  padding-top: 40px;
}
.prize-card3 {
  padding-right: 40px;
}
.prize-card3 h5 {
  background: #d669ae;
}
.prize-card p {
  display: block;
  margin: 0 auto;
  max-width: 241px;
  padding: 4px 12px;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
  /* 文本渐变实现 */
  background: linear-gradient(180deg, #ffffff 0%, #e9c176 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prize-card h6 {
  display: block;
  margin: 0 auto;
  max-width: 241px;
  padding: 4px 12px;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
}

.prize-image {
  width: 100%;
  max-width: 200px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 15px var(--gold-glow));
}

/* Footer */
.footer {
  margin-top: 50px;
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid rgba(78, 70, 57, 0.2);
}
.footer .container {
  position: relative;
}
.footer img {
  position: absolute;
  right: 0;
  top: -50px;
  width: 227px;
}
.footer h4 {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #d1c5b4;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.footer p {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  display: inline-block;
  margin: 0 auto;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

/* Responsive */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
  section h3 {
    font-size: 16px;
    margin-bottom: 24px;
  }
  section h3::after {
    width: 19px;
    height: 1px;
    margin-top: 4px;
  }
  .header {
    padding: 60px 20px;
    min-height: 253.4px;
    background: url('../mobile/Group 24.png') no-repeat top center / cover;
  }
  .header-line {
    bottom: -1rem;
  }
  .header h1 {
    font-size: 20px;
  }
  .header h2 {
    font-size: 20px;
  }
  .intro {
    padding: 0 16px;
    background: none;
  }
  .intro .container {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url('../mobile/Group 25.png') no-repeat top center / 100%;
  }
  #intro-content {
    padding: 20px;
    height: 581px;
  }
  .intro p {
    font-size: 10px;
  }
  #intro-content2 {
    padding: 30px 20px 20px;
    height: 364px;
  }
  .teams {
    padding: 0;
  }
  .team-list {
    padding: 0 16px;
  }
  .team-image-wrapper {
    width: auto;
    height: auto;
    display: flex;
    border-radius: 0;
  }
  .badge-rank {
    top: 2px;
    left: 67px;
    right: inherit;
  }
  .team-image-wrapper .badge-rank img {
    width: 30px;
  }
  .image-overlay-info {
    padding: 0;
    background: none;
  }
  .image-overlay-info .name {
    font-size: 16px;
    color: #e9c176;
    text-align: left;
    margin: 0;
  }
  .image-overlay-info .votes {
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    margin: 0;
  }
  .image-overlay-info {
    position: inherit;
  }
  .team-image-wrapper > img {
    width: 100px;
    border-radius: 10px;
    margin-right: 4px;
  }
  .team-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .team-card-top .intro-text {
    order: 1;
    margin-top: 0;
  }
  .vote-btn {
    order: 0;
  }
  .intro-text {
    font-size: 10px;
  }
  .team-info-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .detail-block h5,
  .detail-block p {
    text-align: left;
    font-size: 10px;
  }
  .team-details-section {
    gap: 10px;
  }
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 5px;
    background: linear-gradient(
      180deg,
      rgba(197, 160, 89, 0.5) 0%,
      rgba(197, 160, 89, 0) 100%
    );
    border-radius: 10px 10px 10px 10px;
    border: 0px solid rgba(255, 255, 255, 0.1);
  }
  .team-image {
    width: 100%;
    max-width: 300px;
  }
  .sponsors {
    padding: 0;
    background: url('../mobile/Group 20.png') no-repeat center 70px;
  }
  .sponsor-list img {
    margin: 0 auto;
    text-align: center;
  }
  .conditions {
    width: 290px;
    background: url('../mobile/Group 21.png') no-repeat center top;
    padding: 80px 11px 20px;
    background-size: 100%;
  }
  .conditions h4 {
    font-size: 12px;
    margin: 0;
  }
  .conditions p,
  .conditions h5 {
    font-size: 10px;
  }
  .recruitment {
    padding: 0 16px;
  }
  .recruitment-content {
    background: none;
    padding: 0;
  }
  .recruitment-content h3 {
    background: url('../mobile/Vector.png') no-repeat center top;
    background-size: 100%;
    display: block;
    height: 42px;
    margin: 0;
  }
  .recruitment-card {
    padding: 5px;
  }
  .recruitment-card h5,
  .recruitment-card p {
    font-size: 10px;
  }
  .recruitment-card:nth-child(2) {
    align-items: flex-start;
  }
  .recruitment-card:nth-child(2) h5,
  .recruitment-card:nth-child(2) p {
    text-align: left;
  }
  #recruitment-list {
    padding: 0;
  }
  #recruitment-list .recruitment-card:nth-child(1) {
    background: url('../mobile/Group 26.png') no-repeat center top;
    background-size: 100%;
  }
  #recruitment-list .recruitment-card:nth-child(2) {
    background: url('../mobile/Group 13.png') no-repeat center top;
    background-size: 100%;
  }
  #recruitment-list2 {
    background: none;
    padding: 0;
  }
  #recruitment-list2 .recruitment-card:nth-child(1) {
    background: url('../mobile/Group 27.png') no-repeat center top;
    background-size: 100%;
  }
  #recruitment-list2 .recruitment-card:nth-child(2) {
    background: url('../mobile/Group 11.png') no-repeat center top;
    background-size: 100%;
  }
  #recruitment-list3 {
    background: url('../mobile/Group 30.png') no-repeat center top;
    background-size: 100%;
    padding: 57px 26px 23px;
    margin: 0 -16px;
  }
  #recruitment-list3 li,
  #recruitment-list3 h5 {
    font-size: 10px;
  }
  .recruitment-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .prizes {
    padding: 0;
  }
  .prizes h3 {
    margin: 0 16px;
  }
  .prize-list {
    background: url('../mobile/Group 31.png') no-repeat center top;
    background-size: 100%;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .prize-container {
    width: 100%;
    padding-top: 132px;
  }
  .prize-card h5 {
    font-size: 10px;
    margin: 0;
    padding: 2px;
  }
  .prize-card h6 {
    font-size: 10px;
    margin: 0;
  }
  .prize-card p {
    font-size: 10px;
    margin: 0;
    padding: 0;
  }
  .prize-card2 {
    padding-top: 20px;
  }
  .footer h4 {
    font-size: 12px;
    color: #d1c5b4;
    margin: 10px 0;
  }
  .footer p {
    font-size: 10px;
    color: #d1c5b4;
  }
  .footer img {
    width: 67px;
    top: 0;
  }
  .footer {
    padding: 0 16px;
    margin-top: 10px;
  }
}

.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
}
