* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
        background: #f5f6f8;
        color: #333;
      }

      .header {
        position: fixed;
        top: 0;
        width: 100%;
        height: 60px;
        background: #0f1a34;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        z-index: 999;
      }
      .logo {
        display: flex;
        align-items: center;
        color: #fff;
        font-weight: bold;
      }
      .logo img {
        width: 35px;
        margin-right: 8px;
      }
      .service-btn {
        background: linear-gradient(45deg, #ff9a5c, #ff6b5c);
        color: #fff;
        padding: 8px 14px;
        border-radius: 20px;
        font-size: 14px;
      }

      .spacer {
        height: 60px;
      }

      .banner {
        margin: 10px;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
      }
      .banner img {
        width: 100%;
        height: 160px;
        object-fit: cover;
      }
      .dots {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
      }
      .dots span {
        display: inline-block;
        width: 6px;
        height: 6px;
        background: #fff;
        opacity: 0.5;
        margin: 0 3px;
        border-radius: 50%;
      }
      .dots .active {
        opacity: 1;
      }

      .notice {
        margin: 10px;
        background: #1f2a44;
        color: #fff;
        padding: 10px;
        border-radius: 10px;
        display: flex;
        align-items: center;
      }
      .notice span {
        margin-right: 10px;
      }
      .marquee {
        overflow: hidden;
        white-space: nowrap;
      }
      .marquee p {
        display: inline-block;
        padding-left: 100%;
        animation: scroll 10s linear infinite;
        font-size: 12px;
      }
      @keyframes scroll {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-100%);
        }
      }

      .card {
        margin: 12px;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(135deg, #ff6a4d, #e14b39);
        box-shadow: 0 8px 20px rgba(255, 90, 60, 0.35);
        color: #fff;
        position: relative;
      }

      .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0.15),
          transparent
        );
      }

      .card-top {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        position: relative;
        z-index: 1;
      }

      .line {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
      }

      .icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        font-size: 12px;
      }

      .icon.gold {
        background: linear-gradient(#ffe27a, #ffbf00);
        color: #a35b00;
      }

      .icon.money {
        background: linear-gradient(#ffd6d6, #ff9b9b);
        color: #b30000;
      }

      .title {
        font-size: 12px;
        font-weight: 600;
      }

      .sub {
        font-size: 13px;
        opacity: 0.95;
      }

      .copy-box {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .copy-inner {
        text-align: center;
      }

      .copy-icon {
        font-size: 20px;
        margin-bottom: 6px;
      }

      .copy-text {
        font-size: 10px;
      }

      .card-bottom {
        background: rgba(0, 0, 0, 0.15);
        padding: 12px;
        display: flex;
        justify-content: space-around;
        font-size: 12px;
      }

      .section-title {
        padding: 10px;
        font-weight: bold;
      }
      .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
      }
      .item {
        background: #fff;
        border-radius: 12px;
        padding: 10px;
        text-align: center;
        position: relative;
      }
      .hot {
        position: absolute;
        top: 5px;
        left: 5px;
        background: #ff6b5c;
        color: #fff;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 6px;
      }
      .item img {
        width: 50px;
        margin: 10px 0;
        border-radius: 10px;
      }
      .entertitle {
        width: 60%;
        margin: 0 auto;
        margin-top: 8px;
        background: linear-gradient(45deg, #2dd4bf, #06b6d4);
        color: #fff;
        padding: 2px;
        border-radius: 15px;
        font-size: 10px;
      }
      .enter {
        display: block;
        width: 100%;
        margin-top: 8px;
        background: linear-gradient(45deg, #ff9a5c, #ff6b5c);
        color: #fff;
        padding: 4px 0;
        border-radius: 15px;
        font-size: 12px;
        text-align: center;
      }

      .activities {
        display: flex;
        gap: 12px;
        padding: 12px;
      }

      .act {
        flex: 1;
        border-radius: 18px;
        padding: 16px 10px;
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
      }

      .act::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        top: -40px;
        right: -40px;
      }

      .pink {
        background: linear-gradient(135deg, #ff6aa0, #ff3d7f);
      }
      .orange {
        background: linear-gradient(135deg, #ffa24d, #ff7a00);
      }
      .green {
        background: linear-gradient(135deg, #4cc3a5, #2ea98b);
      }

      .circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        font-size: 18px;
      }

      .act-title {
        font-size: 14px;
        font-weight: 600;
      }

      .act-sub {
        font-size: 12px;
        margin-top: 5px;
        opacity: 0.9;
      }

      .float-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #ff6b5c;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      }
      #toast {
        position: fixed;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        opacity: 0;
        transition: 0.3s;
      }
      #toast.show {
        opacity: 1;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      a:active {
        transform: scale(0.96);
      }