    * {
      box-sizing: border-box;
      font-family: '黑體', sans-serif;
    }
    body {
      margin: 0;
      background: #0f1122;
      color: #fff;
    }
    header {
      background: linear-gradient(to right, #fcd535, #efb810);
      padding: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 999;
    }
    header .title {
      font-size: 20px;
      font-weight: bold;
      color: #000;
    }
    header img {
      height: 30px;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 30px 20px;
    }

    .coin-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 30px;
    }

    .coin {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: #222;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .coin img {
      width: 32px;
      height: 32px;
    }

    h1 {
      text-align: center;
      font-size: 24px;
      color: #ffda44;
      margin-top: 10px;
	  text-shadow: 1px 1px 1px #ffda44;

    }

    .subtext {
      text-align: center;
      margin-top: 10px;
      font-size: 16px;
      color: #ccc;
      line-height: 1.6;
	  text-shadow: 1px 1px 2px #000;
    }

    .support-button {
      display: block;
      margin: 20px auto;
      padding: 10px 20px;
      background: #fff;
      color: #000;
      border-radius: 8px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      width: fit-content;
    }
	.support-button span{
		font-weight: bold;
		font-size:16px;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

	}
    .video-container {
      margin: 30px auto;
      max-width: 100%;
      box-shadow: 0 0 20px rgba(0,0,0,0.4);
    }

    .video-container video {
      width: 100%;
      border-radius: 12px;
    }

    .features {
      margin-top: 40px;
	  text-shadow: 1px 1px 2px #000;
    }

    .feature {
      background: #1c1c2e;
      border-left: 6px solid #fcd535;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	  text-shadow: 1px 1px 2px #000;
    }

    .feature h3 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #fff;
    }

    .feature p {
      margin: 0;
      color: #ccc;
      line-height: 1.6;
    }

    .cta-button {
      display: block;
      margin: 40px auto;
      padding: 14px 24px;
      background: linear-gradient(to right, #fcd535, #efb810);
      border: none;
      color: #000;
      font-size: 18px;
      font-weight: bold;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 6px 15px rgba(0,0,0,0.4);
      text-align: center;
      text-decoration: none;
    }

    footer {
      background: #111;
      color: #aaa;
      padding: 30px 20px;
      text-align: center;
      font-size: 14px;
    }

    footer a {
      color: #fcd535;
      text-decoration: none;
    }

    @media (max-width: 600px) {
      .coin {
        width: 48px;
        height: 48px;
        border-radius: 12px;
      }

      .coin img {
        width: 28px;
        height: 28px;
      }

      h1 {
        font-size: 20px;
      }
    }
	a {
      text-decoration: none;
    }