<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 璁╅〉闈腑鐨勬墍鏈夊唴瀹瑰眳涓� */
body {
    display: flex;
    justify-content: center; /* 姘村钩灞呬腑 */
    align-items: center; /* 鍨傜洿灞呬腑 */
    margin: 0; /* 鍘婚櫎榛樿杈硅窛 */
    font-family: Arial, sans-serif; /* 璁剧疆瀛椾綋 */
    background-color: #fff; /* 鑳屾櫙鑹� */
}

/* 缃《閫氱煡鏍� */
.update-notice {
    background: linear-gradient(90deg, 
        #1a2a6c 0%,   /* 娣辫摑 */
        #b21f1f 50%,  /* 绾� */
        #fdbb2d 100%  /* 榛� */
    );
    color: white;
    padding: 12px 0;
    top: 0;
    z-index: 1000;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border-bottom: 2px solid #fdb52d;
    
    text-align: center;
    font-size: 16px;
    position: fixed;
    width: 100%;
    max-width: 600px;
    overflow: hidden; /* 闅愯棌瓒呭嚭閮ㄥ垎 */
  }
  
  .scroll-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll 15s linear infinite;
    will-change: transform;
}

.scroll-text p {
    display: inline-block;
    padding-right: 30px;
    margin: 0;
    font-size: 16px;
}

.scroll-text a {
    color: #fff;
    background: rgba(0,0,0,0.2);
    padding: 3px 10px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
}

.scroll-text a:hover {
    background: rgba(255,255,255,0.2);
    text-shadow: 0 0 5px #fff;
}

/* 婊氬姩鍔ㄧ敾 */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* 婊氬姩鍥剧墖妯″潡 */
.carousel {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    margin: 0 auto; /* 姘村钩灞呬腑 */
    display: flex; /* 淇濊瘉鍐呭灞呬腑瀵归綈 */
    justify-content: center;
    position: relative; /* 璁╁瓙鍏冪礌缁濆瀹氫綅 */
    overflow: hidden; /* 闅愯棌瓒呭嚭鐨勫唴瀹� */
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3); /* 鏇村己鐨勯槾褰辨晥鏋� */
    margin-top: 40px; /* 澧炲姞鏍囬涓婃柟闂磋窛 */
}
.carousel-images {
    display: flex;
    animation: slide 15s infinite;
}
.carousel-images img {
    width: 100%;
    flex-shrink: 0;
}
@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(-100%); }
    40% { transform: translateX(-200%); }
    60% { transform: translateX(-300%); }
    80% { transform: translateX(-400%); }
    100% { transform: translateX(-500%); }
}

.container {
    max-width: 600px; /* 鏈€澶у搴︿负 600px */
    text-align: center; /* 浣挎枃鏈眳涓� */
}

/* 鍥炬爣瀹瑰櫒 */
.icon-link {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 鍩虹鍥炬爣鏍峰紡 */
.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

/* 鎮仠鐗规晥 */
.icon-link:hover .game-icon {
    transform: 
        scale(1.1) 
        rotate(5deg); /* 杞诲井鏃嬭浆 */
    box-shadow: 
        0 8px 25px rgba(74, 144, 226, 0.4);
    border-color: #f39c12;
    filter: 
        drop-shadow(0 0 8px rgba(243, 156, 18, 0.6));
}

/* 鐐瑰嚮鍙嶉 */
.icon-link:active .game-icon {
    transform: scale(0.95);
    transition: all 0.1s;
}

/* 鏂帮紒鎮诞鎻愮ず鏁堟灉 */
.icon-link::after {
    content: "鐐瑰嚮杩涘叆瀹樼綉";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a5298;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.icon-link:hover::after {
    opacity: 1;
}

/* 鏍囬瀹瑰櫒 */
.game-title-container {
    margin: 0px 0;
    text-align: center;
}

/* 涓绘爣棰� */
.game-title {
    font-size: 2.2rem;
    color: #2a5298;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.title-text {
    background: linear-gradient(135deg, #1e3c72, #4b6cb7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    letter-spacing: 2px;
}

.title-sub {
    display: block;
    font-size: 0.8rem;
    color: #f39c12;
    margin-top: -5px;
    font-style: italic;
}

/* 瑁呴グ鍏冪礌 */
.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    width: 80%;
}

.decoration-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.decoration-ball {
    width: 8px;
    height: 8px;
    background: #f39c12;
    border-radius: 50%;
    margin: 0 10px;
}

/* 鍝嶅簲寮忚皟鏁� */
@media (max-width: 480px) {
    .game-title {
        font-size: 1.8rem;
    }
}

/* 鏍囬涓庢鏂囩殑闂磋窛 */
h2 {
    margin-top: 10px; /* 澧炲姞鏍囬涓婃柟闂磋窛 */
    margin-bottom: 10px; /* 鍑忓皯鏍囬搴曢儴闂磋窛 */
    font-size: 18px; /* 璁剧疆瀛椾綋澶у皬涓�24px锛屽彲鏍规嵁闇€瑕佽皟鏁� */
    font-weight: bold; /* 璁剧疆瀛椾綋鍔犵矖 */
    border-bottom: 2px solid #eee; /* 鍒嗗壊绾� */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* 娣诲姞闃村奖 */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 20px; /* 鍦嗗舰鎸夐挳 */
}

/* 榧犳爣鎮仠鏃舵晥鏋� */
h2:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* 鏇村己鐨勯槾褰辨晥鏋� */
}

  
/* 鏂板鐨勪笅杞芥寜閽牱寮� */
.game-card {
    background: white;
    border-radius: 0px;
    padding: 10px;
    margin: 0px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.game-header {
    margin-bottom: 20px;
}

.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 0px;
}

.game-slogan {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.download-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.download-bt {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
    max-width: 150px;
}

.download-bt span {
    font-size: 16px;
}

.download-bt small {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 3px;
}

.android-bt {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.ios-bt {
    background: linear-gradient(135deg, #2196F3, #0D47A1);
}

.download-bt:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


    
/* 绠€鍖栫増瀵艰埅鏍峰紡 */
.simplified-nav {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    padding: 5px 0;
    border-radius: 0px;
    margin: 0px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.simplified-nav .menu-item {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.simplified-nav .menu-item.active {
    background: rgba(255,255,255,0.2);
    font-weight: bold;
}

.simplified-nav .menu-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 18px;
}

/* 鑿滃崟鏍忓唴瀹规牱寮� */
.info {
    padding: 0px; /* 鍑忓皯鍐呰竟璺� */
    display: flex;
    flex-direction: column;
    align-items: center; /* 姘村钩灞呬腑 */
    justify-content: flex-start; /* 鍨傜洿鏂瑰悜浠庨《閮ㄥ紑濮� */
    background-color: #fff;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    margin-top: 0px; /* 鍘婚櫎鍐呭鍖哄煙涓婃柟鐨勯棿璺� */
    overflow-y: auto; /* 褰撳唴瀹硅秴鍑烘椂娣诲姞婊氬姩鏉� */
}

/* 鍐呭鍖哄煙鏍峰紡 */
.tab-content {
    padding: 20px;
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-content h2 {
    margin-top: 0;
}

/* 瑙嗛瀹瑰櫒鏍峰紡 */
.cropped-video {
    width: 100%; /* 鑷姩閫傚簲瀹藉害 */
    max-height: 270px; /* 闄愬埗鏈€澶ч珮搴� */
    object-fit: cover; /* 淇濇寔瑙嗛姣斾緥 */
    border: 3px solid #ddd; /* 杈规棰滆壊 */
    border-radius: 10px; /* 鍦嗚杈规 */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* 娣诲姞闃村奖 */
}

/* 澶嶅埗鏍煎紡 */
.copy-text {
    cursor: pointer;
    padding: 0px;
    background-color: #04fefe;
    border: 0px solid #0e0e0e;
    display: inline-block;
    margin-bottom: 5px;
    user-select: none; 
    border-radius: 5px; /* 婊氬姩鍥剧墖鍦嗚 */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* 娣诲姞杩囨浮鏁堟灉 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 鏂囩珷妯″潡闃村奖 */
}

.copy-text:hover {
    transform: scale(1.05); /* 榧犳爣鎮仠鏃惰交寰斁澶� */
}

/* 瀵艰埅鎸夐挳 */
.txt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center; /* 姘村钩灞呬腑 */
    align-items: center; /* 鍨傜洿灞呬腑 */
    gap: 0.5rem;
}

.txt a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.txt a img:hover {
    transform: translateY(-4px); /* 鍚戜笂娴姩 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 寮哄寲闃村奖 */
}

 /* 搴曢儴鍐呭鏍峰紡 */ 
 .footer {
    background: linear-gradient(90deg, #1e3c72, #2a5298); /* 娣辫壊娓愬彉鑳屾櫙 */
    color: #fff; /* 鐧借壊鏂囧瓧 */
    padding: 10px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 娣诲姞闃村奖 */
}

.footer a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 鎮仠鏁堟灉 */
}

.footer a img:hover {
    transform: scale(1.2); /* 鎮仠鏀惧ぇ */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* 娣诲姞闃村奖 */
}

/* 閾炬帴鏍峰紡 */
a {
    color: #3498db; /* 淇敼涓轰綘鍠滄鐨勯鑹诧紝姣斿姗欑孩鑹� */
    text-decoration: none; /* 鍘绘帀涓嬪垝绾� */
}
a:hover {
    color: rgb(255, 42, 0); /* 榧犳爣鎮仠鏃剁殑棰滆壊 */
}

/* wenzhang: 鏂囩珷妯″潡瀹瑰櫒鏍峰紡 */
.wenzhang {
    display: flex;
    flex-direction: column; /* 绔栨帓姣忎釜鏂囩珷妯″潡 */
}

/* wenzhang: 鍗曚釜鏂囩珷妯″潡 */
.wenzhang p {
    display: flex; /* 妯帓甯冨眬 */
    flex-direction: row; /* 鏂囩珷鐨勭缉鐣ュ浘鍜屽唴瀹规í鎺� */
    align-items: center; /* 姘村钩灞呬腑 */
    background-color: #fff;
    margin: 0px 10px 15px 0px; /* 鍘婚櫎榛樿鐨� p 鏍囩澶栬竟璺� */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 鏂囩珷妯″潡闃村奖 */
    gap: 10px; /* 缂╃暐鍥惧拰鍐呭涔嬮棿鐨勯棿璺� */
    width: 100%; /* 璁╂枃绔犳ā鍧楀崰婊″鍣� */
}

/* wenzhang: 缂╃暐鍥炬牱寮� */
.wenzhang p img {
    width: 60px; /* 璁剧疆缂╃暐鍥剧殑鍥哄畾瀹藉害 */
    height: 60px; /* 璁剧疆缂╃暐鍥剧殑鍥哄畾楂樺害 */
    object-fit: cover; /* 淇濇寔鍥惧儚姣斾緥锛岃鍓浣欓儴鍒� */
    border-radius: 15px;
}

/* 鏂版父鎺ㄨ崘 */
.game-recommendations {
    position: fixed;
    right: 0px;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 1000;
  }
  
  .recommendation-trigger {
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 10px 5px;
    background-color: #f8f7d7;
    color: #f81936af;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    transition: background-color 0.3s;
  }
  
  .recommendation-trigger:hover {
    background-color: #f81936af;
    color: #f8f7d7;
  }
  
  .recommendation-content {
    display: none;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
    z-index: 1000;
  }
  
  .recommendation-item {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .recommendation-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .recommendation-item span {
    font-size: 10px;
    color: #333;
  }
  
  /* Show content on hover */
  .game-recommendations:hover .recommendation-content {
    display: block;
  }

/* ========== 寮圭獥绯荤粺 ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s;
}

.popup-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 300px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.popup-header {
    margin-bottom: 15px;
    position: relative;
}

.popup-header h3 {
    color: #2a5298;
    font-size: 1.2rem;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.popup-close:hover {
    transform: rotate(90deg);
    background: #ff6b81;
}

.popup-qrcode {
    width: 100%;
    max-height: 100%;
    border: 1px solid #eee;
    border-radius: 8px;
    margin: 0 auto 0px;
}

.popup-footer {
    margin-top: 10px;
}

.popup-footer p {
    color: #666;
    margin: 5px 0;
    font-size: 0.9rem;
}

.popup-tip {
    color: #999;
    font-size: 0.8rem;
}

.popup-direct {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: #2a5298;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.popup-direct:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

/* 绀句氦鎸夐挳缁� */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 0px 0;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0px 5px;
    border-radius: 15px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-btn img {
    width: 20px;
    height: 20px;
    margin-right: 0px;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 鎸夐挳棰滆壊 */
.qq-btn { background: #12B7F5; }
.wechat-btn { background: #07C160; }
.official-btn { background: #f39c12; }
.email-btn { background: #6c757d; }

/* 鍔ㄧ敾 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 鍝嶅簲寮忚皟鏁� */
@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        padding: 15px;
    }
    
    .social-btn {
        padding: 0px 5px;
        font-size: 0.8rem;
    }
    
    .social-btn img {
        width: 18px;
        height: 18px;
    }
}</pre></body></html>