/* zbuno0lfu7grtr0du6c2r51ogo5vfcnp */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    min-height: 100vh;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}
.breadcrumb {
    padding: 12px 16px;
    background: #f5f5f5;
    font-size: 13px;
    color: #999;
}
.breadcrumb a {
    color: #666;
    text-decoration: none;
}
.breadcrumb span {
    color: #333;
}
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    text-align: center;
}
.logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}
.game-title {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.game-meta {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.game-meta span {
    margin: 0 10px;
}
.header-download {
    margin-top: 20px;
}
.content {
    padding: 30px;
}
.info-section {
    margin-bottom: 25px;
}
.info-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 4px solid #667eea;
}
.info-text {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    max-height: 400px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}
.info-text.expanded {
    max-height: none;
}
.toggle-btn {
    display: block;
    text-align: center;
    padding: 12px;
    color: #667eea;
    cursor: pointer;
    font-size: 14px;
    border-top: 1px dashed #eee;
    margin-top: 10px;
}
.toggle-btn:hover {
    background-color: #f8f9ff;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.tag {
    background: #f0f2ff;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}
.category-nav {
    display: flex;
    flex-wrap: wrap;
    background: #1a1a2e;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}
.category-nav a {
    color: rgba(255,255,255,0.85);
    padding: 12px 16px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.category-nav a:last-child {
    border-right: none;
}
.category-nav a:hover {
    background: #667eea;
    color: #fff;
}
.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 60px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}
.footer {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 12px;
    border-top: 1px solid #eee;
}
.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-list li {
    padding: 12px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}
.article-list li:last-child {
    border-bottom: none;
}
.article-list li:hover {
    background-color: #f8f9ff;
}
.article-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}
.article-list a:hover {
    color: #667eea;
}
.article-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-right: 15px;
    flex-shrink: 0;
}
.article-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}
.article-meta {
    font-size: 12px;
    color: #999;
}
/* 首页网格布局 */
.index-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.index-item {
    text-align: center;
}
.index-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}
.index-item a:hover {
    transform: translateY(-3px);
}
.index-logo {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 8px;
}
.index-title {
    font-size: 13px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80px;
}
.index-item a:hover .index-title {
    color: #667eea;
}
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .header {
        padding: 20px;
    }
    .logo {
        width: 80px;
        height: 80px;
    }
    .game-title {
        font-size: 22px;
    }
    .content {
        padding: 20px;
    }
    .download-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
    .index-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .index-logo {
        width: 60px;
        height: 60px;
    }
    .index-title {
        font-size: 12px;
        max-width: 65px;
    }
}


/* Components CSS */

.hd10-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}
.hd10-container {
    padding: 14px 16px;
    display: flex;
    align-items: center;
}
.hd10-logo {
    flex: 1;
    text-decoration: none;
    margin-left: 12px;
}
.hd10-logo-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
.hd10-download-btn {
    padding: 10px 20px;
    background: #007aff;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.hd10-menu-btn {
    width: 36px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.hd10-menu-btn span {
    display: block;
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
}
.hd10-mobile-nav {
    display: none;
    background: #f8f8f8;
}
.hd10-mobile-nav.active {
    display: block;
}
.hd10-mobile-item {
    display: block;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 17px;
}
.hd10-mobile-item:active {
    background: #eee;
    color: #000;
}


.gi10-card {
    background: #fff;
    padding: 22px 16px;
    border-bottom: 1px solid #eee;
}
.gi10-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.gi10-logo {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    flex-shrink: 0;
}
.gi10-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gi10-name {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.gi10-badges {
    display: flex;
    gap: 10px;
}
.gi10-badge {
    padding: 5px 12px;
    background: #f0f0f0;
    color: #666;
    border-radius: 6px;
    font-size: 13px;
}
.gi10-time {
    font-size: 14px;
    color: #999;
    margin-bottom: 18px;
    padding-left: 4px;
}
.gi10-btns {
    display: flex;
    gap: 14px;
}
.gi10-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
.gi10-btn-android {
    background: #34c759;
    color: #fff;
}
.gi10-btn-ios {
    background: #007aff;
    color: #fff;
}
.gi10-btn:active { opacity: 0.85; }
.gi10-btn-icon {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}
.gi10-btn-text {
    font-size: 16px;
}
.gi10-tags {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}
.gi10-tags-scroll {
    padding: 0 16px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.gi10-tags-scroll::-webkit-scrollbar { display: none; }
.gi10-tag {
    flex-shrink: 0;
    padding: 10px 18px;
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    border-radius: 18px;
    font-size: 15px;
}
.gi10-tag:active { background: #eee; }
.gi10-content {
    background: #fff;
    padding: 22px 16px;
}
.gi10-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 16px 0;
    padding-left: 14px;
    border-left: 4px solid #34c759;
}
.gi10-text {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    max-height: 160px;
    overflow: hidden;
}
.gi10-text.expanded { max-height: none; }
.gi10-toggle {
    text-align: center;
    padding: 18px 0;
    color: #34c759;
    font-size: 15px;
}


/* ===== 列表式-简约风格 ===== */
.gl04-section {
    background: #fff;
    padding: 18px 16px;
    margin-bottom: 10px;
}
.gl04-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.gl04-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin: 0;
}
.gl04-more {
    font-size: 15px;
    color: #007aff;
    text-decoration: none;
}
.gl04-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.gl04-item {
    border-bottom: 1px solid #f0f0f0;
}
.gl04-item:last-child {
    border-bottom: none;
}
.gl04-item a {
    display: flex;
    align-items: center;
    padding: 14px 0;
    text-decoration: none;
}
.gl04-item a:active {
    opacity: 0.7;
}
.gl04-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-right: 14px;
}
.gl04-info {
    flex: 1;
    display: block;
}
.gl04-name {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: #222;
    margin-bottom: 4px;
}
.gl04-meta {
    font-size: 14px;
    color: #999;
}

/* ===== 网格式-横向滚动 ===== */
.gg04-section {
    background: #fff;
    padding: 18px 0;
    margin-bottom: 10px;
}
.gg04-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 16px;
}
.gg04-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin: 0;
}
.gg04-more {
    font-size: 15px;
    color: #007aff;
    text-decoration: none;
}
.gg04-scroll {
    display: flex;
    gap: 16px;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.gg04-scroll::-webkit-scrollbar {
    display: none;
}
.gg04-item {
    flex-shrink: 0;
    width: 80px;
}
.gg04-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.gg04-item a:active {
    opacity: 0.7;
}
.gg04-logo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gg04-name {
    font-size: 14px;
    color: #333;
    text-align: center;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.ft05-footer {
    background: #fff;
}
.ft05-top {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.ft05-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
}
.ft05-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ft05-nav a {
    padding: 8px 18px;
    background: #fff5f0;
    border: 1px solid #ffe0cc;
    border-radius: 18px;
    font-size: 14px;
    color: #f7931e;
    text-decoration: none;
}
.ft05-nav a:active {
    background: #ffe0cc;
}
.ft05-middle {
    padding: 16px 20px;
    background: #fffaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
}
.ft05-middle:active {
    background: #fff0e6;
}
.ft05-contact-icon {
    font-size: 18px;
}
.ft05-contact-text {
    font-size: 14px;
    color: #888;
}
.ft05-bottom {
    padding: 20px;
    background: #f8f8f8;
    text-align: center;
}
.ft05-disclaimer {
    font-size: 14px;
    color: #999;
    margin: 0 0 8px 0;
    line-height: 1.6;
}
.ft05-copyright {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}


.lc05-wrapper {
    background: #fff;
    min-height: 100vh;
}
.lc05-header {
    padding: 20px 16px 16px;
}
.lc05-header h1 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
}
.lc05-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px 16px;
}
.lc05-item {
    min-width: 0;
    overflow: hidden;
}
.lc05-item a {
    display: flex;
    flex-direction: column;
    padding: 14px;
    background: #fafafa;
    border-radius: 16px;
    text-decoration: none;
}
.lc05-item a:active {
    background: #f0f0f0;
}
.lc05-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 12px;
}
.lc05-info {
    flex: 1;
    min-width: 0;
    display: block;
    margin-bottom: 12px;
}
.lc05-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lc05-meta {
    display: block;
    font-size: 13px;
    color: #999;
}
.lc05-get {
    display: block;
    text-align: center;
    padding: 10px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}
.lc05-empty {
    padding: 60px 16px;
    text-align: center;
    color: #999;
}


.ic10-wrapper {
    background: #1a1a2e;
    min-height: 100vh;
}
.ic10-section {
    padding: 20px 0;
    border-bottom: 1px solid #2a2a4a;
}
.ic10-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 16px;
}
.ic10-header h2 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}
.ic10-header a {
    font-size: 14px;
    color: #888;
    text-decoration: none;
}
.ic10-scroll {
    display: flex;
    overflow-x: auto;
    padding: 0 16px;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ic10-scroll::-webkit-scrollbar {
    display: none;
}
.ic10-card {
    flex-shrink: 0;
    width: 160px;
    background: #2a2a4a;
    border-radius: 14px;
    padding: 14px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.ic10-card:active {
    background: #3a3a5a;
}
.ic10-card img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin-bottom: 12px;
}
.ic10-info {
    flex: 1;
    display: block;
    margin-bottom: 12px;
}
.ic10-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ic10-meta {
    display: block;
    font-size: 12px;
    color: #888;
}
.ic10-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}


/* Base Templates CSS */

.error-wrapper {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.error-code {
    font-size: 100px;
    font-weight: bold;
    color: #ddd;
    line-height: 1;
    margin-bottom: 16px;
}
.error-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}
.error-desc {
    font-size: 15px;
    color: #999;
    margin-bottom: 30px;
}
.error-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #007aff, #00c6ff);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
}
.error-btn:active {
    opacity: 0.9;
}


.contact-wrapper {
    padding: 20px 16px;
    background: #fff;
}
.contact-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 24px;
}
.contact-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-label {
    font-size: 15px;
    color: #666;
}
.contact-value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}
.contact-section {
    margin-bottom: 24px;
}
.contact-section h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid #007aff;
}
.contact-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

