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

     body {
         background: #000;
         font-family: Arial, sans-serif;
         color: #fff;
     }

     [data-link] {
         cursor: pointer;
     }

     .container {
         max-width: 480px;
         margin: 0 auto;
         background: #0d0d30;
         min-height: 100vh;
         padding-bottom: 5.5rem;
     }


     .top-banner img {
         width: 100%;
         display: block;
     }




     .app-list {
         padding: 16px;
     }


     .id {
         padding: 0 16px;
         position: relative;
         top: auto;
     }

     .app-item-mask-wrapper {
         position: relative;
         border-radius: 12px;
         margin-bottom: 12px;
         overflow: hidden;
         padding: 12px;
         background-color: #14144a;
         border: 1px solid rgba(255, 255, 255, 0.08);
         box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
     }

     .app-item-mask-id-wrapper {
         margin-bottom: 0px;

     }

     .app-item {
         position: absolute;
         inset: 0;
         background: repeating-conic-gradient(#1b1d50 0deg 90deg, #202459 90deg 180deg);
         background-size: 40px 40px;
         -webkit-mask-image: linear-gradient(to top, transparent 60%, black 100%);
         mask-image: linear-gradient(to top, transparent 60%, black 100%);
         border-radius: 12px;
         z-index: 1;
     }

     .content {
         position: relative;
         z-index: 2;
         color: #fff;
     }

     .app-content {
         display: flex;
         align-items: flex-start;
         gap: 12px;
     }

     .app-content img.icon {
         width: 48px;
         height: 48px;
         border-radius: 10px;
         flex-shrink: 0;
     }

     .app-info {
         flex: 1;
     }

     .app-title {
         font-size: 16px;
         font-weight: bold;
         margin-bottom: 4px;
     }

     .app-descs {
         font-size: 13px;
         color: #EDCE0F;
         margin-bottom: 5px;
     }

     .app-desc {
         font-size: 13px;
         color: #E6EBFB;
         margin-bottom: 10px;
     }





     .btn-group a {
         flex: 1;
         border-radius: 25px;
         color: #fff;
         font-size: 14px;
         text-align: center;
         text-decoration: none;
     }




     .bottom-fixed-bar {
         position: fixed;
         bottom: 0;
         width: 100%;
         max-width: 480px;
         display: flex;
         align-items: center;
         justify-content: space-between;
         background-image: url('../img/down_bg.png');
         padding: 10px 14px;
         box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
         z-index: 99;
         height: 5rem;
     }

     .bottom-fixed-bar .left {
         display: flex;
         align-items: center;
         gap: 10px;
     }

     .bottom-fixed-bar .left img {
         width: 48px;
         height: 48px;
     }

     .bottom-fixed-bar .text-group {
         display: flex;
         flex-direction: column;
         justify-content: center;
     }

     .bottom-fixed-bar .text-group .title {
         font-size: 15px;
         font-weight: bold;
         color: #fff;
         line-height: 1.2;
     }

     .bottom-fixed-bar .text-group .subtext {
         font-size: 12px;
         color: #ccc;
         line-height: 1.2;
         top: 5px;
         position: relative;
     }

     .bottom-fixed-bar .right a {
         color: #000;
         padding: 8px 16px;
         border-radius: 20px;
         font-weight: bold;
         font-size: 14px;
         text-decoration: none;
     }

     .btn-group {
         display: flex;
         justify-content: center;
         gap: 16px;
         margin-top: 20px;
     }

     .platform-btn {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         width: 80px;
         border-radius: 12px;
         transition: background-color 0.3s ease;
         padding: 0;
         text-decoration: none;
         overflow: hidden;
     }



     .platform-icon {
         width: 100%;
         height: 100%;
         object-fit: contain;
         display: block;
     }


     .blur-box {
         padding: 16px;
         inset: 0;
         background: repeating-conic-gradient(#1b1d50 0deg 90deg, #202459 90deg 180deg);
         background-size: 40px 40px;
         -webkit-mask-image: linear-gradient(to top, transparent 60%, black 100%);
         mask-image: linear-gradient(to top, transparent 60%, black 100%);
         border-radius: 12px;
         z-index: 1;
     }

     .module-title {
         font-size: 20px;
         font-weight: bold;
         margin-bottom: 8px;
     }

     .sub-info {
         font-size: 14px;
         line-height: 1.6;
         margin-bottom: 12px;
     }

     .btn-primary {
         display: inline-block;
         padding: 8px 16px;
         background-color: #ffeb3b;
         color: #000;
         text-decoration: none;
         border-radius: 8px;
         font-weight: bold;
         transition: background 0.3s;
     }

     .btn-primary:hover {
         background-color: #fdd835;
     }


     .highlight-text {
         color: #EDCE0F;
     }



     .xq {
         box-sizing: border-box;
         flex-direction: row;
         padding: 8px 20px;
         gap: 10px;
         position: relative;
         width: 228px;
         height: 33px;
         background: #4854F6;
         border: 0.5px solid #4B61F6;
         box-shadow: 0px 3px 0px #1E3ECE, inset 0px -3px 4px rgba(72, 84, 246, 0.7), inset 0px 4px 4px #5073F7;
         border-radius: 40px;
         margin: 0 auto;
         display: flex;
         justify-content: center;
         align-items: center;
         top: .2rem;
         margin-bottom: 10px;
     }


     .app-contenttop {
         flex-direction: column !important;
         display: flex !important;
         align-items: center !important;
     }

     a {
         text-decoration: none;
     }


     a:visited {
         color: inherit;
         text-decoration: none;
     }

     .tiezhi {
         position: absolute;
         width: 134px;
         height: 33.5px;
         left: -15px;
         top: -12px;
         z-index: 10000;
     }

     .zhuli {
         display: flex;
         justify-content: flex-end;
         padding: 16px;
         position: absolute;
         right: -27px;
     }

     .ids {
         top: 2rem;
         position: absolute;
     }