* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #278957;
  color: white;
}

.navbar {
  background: black;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.navbar .logo {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}

.navbar nav {
  margin-left: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #ffcc00;
}

.navbar button {
  background: linear-gradient(45deg, #ff7300, #ffcc00);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.navbar button:hover {
  background: linear-gradient(45deg, #ffcc00, #ff7300);
  transform: scale(1.1);
}

/* 提示栏 - 霓虹动效增强 */
.info-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 0 50px;
}

.info-box {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #ffcc00;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 280px;
  color: white;
  box-shadow: 0 0 20px rgba(255, 204, 0, 1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 204, 0, 1);
  }
}

.info-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 204, 0, 1);
}

.info-box h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* 市场区块优化 */
.market-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  flex-wrap: wrap;
}

.save1 {
  background: rgba(0, 0, 0);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
  width: 220px;
  transition: transform 0.3s;
}

.save1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.save1 h4 {
  color: #00d9ff;
  margin-bottom: 10px;
}

.save1 p {
  font-size: 14px;
  color: whitesmoke;
}

.save1 button {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.save1 button:hover {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
  transform: scale(1.1);
}

.play-button {
  display: inline-block;
  padding: 8px 12px;
  background: linear-gradient(45deg, #ff9a00, #ff3e00);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
}

.play-button:hover {
  background: linear-gradient(45deg, #ff3e00, #ff9a00);
  transform: scale(1.1);
}


.info-section {
  max-width: 1100px;
  margin: 28px auto 10px;
  padding: 20px 24px 10px;

  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
  justify-items: stretch;
  align-items: start;
}

.info-box {
  width: 100%;
  padding: 18px 18px 16px;
  border-radius: 14px;

  min-height: 440px;

 
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 204, 0, 0.45);

  
  animation: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 204, 0, 0.55);
}


.info-box h3 {
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  font-size: 18px;
}

/* 正文更易读 */
.info-box p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}


.info-section .info-box:nth-child(3) p {
  max-height: 330px;
  overflow: auto;
  padding-right: 6px;
}


.market-box {
  max-width: 1100px;
  margin: 14px auto 40px;
  padding: 14px 24px 36px;

  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
}


.save1 {
  width: 100%;
  padding: 18px 18px 16px;
  border-radius: 14px;
  min-height: 170px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.save1:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}

.save1 h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.save1 p {
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 12px;
}


.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
}

.play-button:hover {
  transform: translateY(-2px);
}


@media (max-width: 900px) {
  .info-section {
    grid-template-columns: 1fr;
  }
  .info-box {
    min-height: unset;
  }

  .market-box {
    grid-template-columns: 1fr;
  }
}
