 /* Download Section */
 .download-section {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 gap: 40px;
	 margin-bottom: 60px;
	 text-align: center;
	 background-image: url('../img/down_bg.png'), linear-gradient(0deg, rgba(255, 255, 255, 0) 0, #fff 100%), linear-gradient(80.23deg, rgba(4, 127, 176, .08) 0, rgba(20, 86, 240, .08) 50.52%, rgba(141, 85, 237, .06) 100%);
	 background-position: top center, bottom center, bottom center;
	 background-size: 100% auto, 100% 805px, 100% 805px;
	 background-repeat: no-repeat;
	 padding-bottom: 120px;
     padding-top:30px;
 }

 .download-info {
	 max-width: 600px;
 }

 .download-pc-title {
	 font-size: 32px;
	 font-weight: 700;
	 margin-bottom: 16px;
	 color: #1a1a1a;
 }

 .download-pc-subtitle {
	 font-size: 18px;
	 color: #666;
	 margin-bottom: 24px;
	 display: block;
 }

 .download-links {
	 font-size: 14px;
	 color: #666;
	 margin-bottom: 16px;
 }

 .download-links a {
	 color: #0066cc;
	 text-decoration: none;
	 margin: 0 8px;
 }

 .download-links a:hover {
	 text-decoration: underline;
 }

 .download-pc-container {
	 display: flex;
	 gap: 100px;
	 justify-content: center;
 }

 .d-card-wrapper {
	 width: 180px;
	 height: 180px;
	 position: relative;
 }

 .d-card {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: #fff;
	 border-radius: 12px;
	 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	 overflow: hidden;
	 transition: transform 0.3s ease;
 }

 .d-card:hover {
	 transform: translateY(-4px);
 }

 .icon-normal,
 .icon-hover {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 justify-content: center;
	 height: 100%;
	 padding: 16px;
	 text-align: center;
 }

 .icon-normal {
	 display: flex;
 }

 .icon-hover {
	 display: none;
	 background: linear-gradient(135deg, #0066cc, #0033a0);
	 color: #fff;
	 flex-direction: column;
	 justify-content: center;
	 align-items: center;
	 height: 100%;
	 padding: 16px;
	 text-align: center;
 }

 .d-card:hover .icon-normal {
	 display: none;
 }

 .d-card:hover .icon-hover {
	 display: flex;
 }

 .d-card-icon {
	 width: 48px;
	 height: 48px;
	 margin-bottom: 12px;
 }

 .d-card-text {
	 font-size: 16px;
	 font-weight: 500;
 }

 .text-hover {
	 font-size: 14px;
	 margin-top: 8px;
 }

 .qr-code-img {
	 width: 120px;
	 height: 120px;
	 margin: 0;
 }

 /* Resources Section */
 .resources-section {
	 text-align: center;
 }

 .resources-section > div {
	 font-size: 24px;
	 font-weight: 600;
	 margin-bottom: 32px;
	 color: #1a1a1a;
 }

 .card-list {
	 display: grid;
	 grid-template-columns: repeat(3, 1fr);
	 gap: 16px;
	 max-width: 1200px;
	 margin: 0 auto;
 }

 @media (max-width: 768px) {
	 .card-list {
		 grid-template-columns: repeat(2, 1fr);
	 }
 }

 @media (max-width: 480px) {
	 .card-list {
		 grid-template-columns: 1fr;
	 }
 }

 .card-list-item {
	 background: #fff;
	 border-radius: 12px;
	 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	 padding: 24px;
	 text-align: left;
	 transition: transform 0.3s ease;
 }

 .card-list-item:hover {
	 transform: translateY(-4px);
 }

 .card-list-item a {
	 text-decoration: none;
	 color: inherit;
	 display: block;
	 width: 100%;
	 height: 100%;
	 background-color: #ffffff;;
	 box-shadow: var(--shadow-s3-down-pri);
	 padding: 30px 25px;
	 gap: 48px;
	 border-radius: 16px;
	 display: flex;
	 flex-direction: column;
	 align-items: flex-start;
	 justify-content: flex-start;
 }

 .card-icon {
	 margin-bottom: 16px;
 }

 .card-icon svg {
	 width: 56px;
	 height: 56px;
 }

 .card-title {
	 display: flex;
	 align-items: center;
	 gap: 8px;
	 margin-bottom: 12px;
	 color: #1a1a1a;
	 font-family: 'PingFang SC';
	 font-style: normal;
	 font-weight: 500;
	 font-size: 24px;
	 line-height: 1.25;
 }

 .card-title .universe-icon {
	 font-size: 16px;
	 color: #666;
 }

 .card-list-item p {
	 font-size: 14px;
	 color: #666;
	 line-height: 1.5;
	 font-family: 'PingFang SC';
	 font-style: normal;
	 font-weight: 400;
	 font-size: 18px;
	 line-height: 1.56;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 3;
	 overflow: hidden;
	 text-overflow: ellipsis;
 }