/* jm937ns1jxvhdghjshlfq4hlcrtk7c8z */
* {
    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;
    }
}

/* 搜索框 */
.site-search { padding: 20px 16px; }
.site-search form { display: flex; max-width: 480px; margin: 0 auto; border: 2px solid #4e6ef2; border-radius: 24px; overflow: hidden; background: #fff; }
.site-search-input { flex: 1; padding: 12px 20px; border: none; font-size: 14px; outline: none; background: transparent; }
.site-search-btn { padding: 12px 30px; background: #4e6ef2; color: #fff; border: none; font-size: 14px; cursor: pointer; }
.site-search-btn:active { background: #3d5afe; }


/* Components CSS */

.hd08-bar {
    background: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}
.hd08-menu-btn {
    width: 36px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px;
    gap: 4px;
}
.hd08-menu-btn span {
    display: block;
    width: 20px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}
.hd08-logo {
    flex: 1;
    text-align: center;
    text-decoration: none;
}
.hd08-logo-text {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}
.hd08-action {
    padding: 8px 16px;
    background: #007aff;
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}
.hd08-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
}
.hd08-overlay.active {
    display: block;
}
.hd08-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 300;
    transition: left 0.3s ease;
    overflow-y: auto;
}
.hd08-drawer.active {
    left: 0;
}
.hd08-drawer-header {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #eee;
}
.hd08-close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}
.hd08-drawer-link {
    display: block;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    font-size: 17px;
}
.hd08-drawer-link:active {
    background: #f8f9fa;
    color: #667eea;
}


.gi05-header {
    background: linear-gradient(180deg, #ff6b35 0%, #f7931e 100%);
    padding: 22px 18px;
}
.gi05-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.gi05-logo {
    width: 78px;
    height: 78px;
    border-radius: 18px;
    margin-right: 16px;
    border: 3px solid rgba(255,255,255,0.3);
}
.gi05-info { flex: 1; }
.gi05-name {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.gi05-stats {
    display: flex;
    gap: 20px;
}
.gi05-stat {
    display: flex;
    flex-direction: column;
}
.gi05-stat em {
    font-style: normal;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.gi05-stat b {
    font-size: 17px;
    color: #fff;
    margin-top: 2px;
}
.gi05-time {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 18px;
}
.gi05-btns {
    display: flex;
    gap: 12px;
}
.gi05-btn {
    flex: 1;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 26px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.gi05-btn-icon {
    font-size: 14px;
}
.gi05-btn-android {
    background: #fff;
    color: #f7931e;
}
.gi05-btn-ios {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.gi05-btn:active { opacity: 0.9; }
.gi05-tags {
    background: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 8px solid #f0f0f0;
}
.gi05-tags-label {
    font-size: 16px;
    color: #999;
    flex-shrink: 0;
}
.gi05-tags-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.gi05-tags-scroll::-webkit-scrollbar { display: none; }
.gi05-tag {
    flex-shrink: 0;
    padding: 8px 18px;
    background: #fff5f0;
    color: #f7931e;
    text-decoration: none;
    border-radius: 16px;
    font-size: 15px;
    border: 1px solid #ffe0cc;
}
.gi05-tag:active { background: #ffe0cc; }
.gi05-content {
    background: #fff;
    padding: 22px 18px;
}
.gi05-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gi05-title-icon {
    font-size: 22px;
}
.gi05-text {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    max-height: 180px;
    overflow: hidden;
}
.gi05-text.expanded { max-height: none; }
.gi05-text img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
}
.gi05-toggle {
    text-align: center;
    padding: 18px 0;
    color: #f7931e;
    font-size: 16px;
}


/* 配色：紫色系 + 居中标题 */
.gl06-section {
    background: #fff;
    padding: 18px 16px;
    margin-bottom: 10px;
}
.gl06-title {
    text-align: center;
    margin: 0 0 16px 0;
}
.gl06-title-inner {
    font-size: 18px;
    font-weight: 700;
    color: #6a1b9a;
    padding: 0 14px 6px;
    border-bottom: 3px solid #ab47bc;
}
.gl06-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.gl06-item {
    border-bottom: 1px solid #f3ecf7;
}
.gl06-item:last-child {
    border-bottom: none;
}
.gl06-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
}
.gl06-pic {
    width: 116px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 7px;
    margin-right: 13px;
    flex-shrink: 0;
    display: block;
}
.gl06-name {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    color: #4a148c;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gg06-section {
    background: #fff;
    padding: 18px 16px;
    margin-bottom: 10px;
}
.gg06-title {
    text-align: center;
    margin: 0 0 16px 0;
}
.gg06-title-inner {
    font-size: 18px;
    font-weight: 700;
    color: #6a1b9a;
    padding: 0 14px 6px;
    border-bottom: 3px solid #ce93d8;
}
.gg06-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.gg06-item {
    min-width: 0;
}
.gg06-link {
    display: block;
    text-decoration: none;
}
.gg06-pic {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 7px;
    margin-bottom: 7px;
    display: block;
}
.gg06-name {
    font-size: 15px;
    color: #4a148c;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.ft07-footer {
    background: #f5f5f5;
    padding: 22px 16px;
    text-align: center;
}
.ft07-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    margin-bottom: 14px;
}
.ft07-nav a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
}
.ft07-nav a:active {
    color: #007aff;
}
.ft07-bottom {
    margin-bottom: 14px;
}
.ft07-bottom a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
}
.ft07-bottom a:active {
    color: #007aff;
}
.ft07-dot {
    color: #ccc;
    margin: 0 8px;
}
.ft07-text {
    font-size: 13px;
    color: #999;
    margin: 0 0 8px 0;
}
.ft07-copy {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}


.ic02-box { background: #fff; }
.ic02-focus { padding: 14px 14px 2px; }
.ic02-lead {
    display: block;
    margin-bottom: 14px;
    text-decoration: none;
}
.ic02-lead-pic {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
.ic02-lead-txt {
    margin: 8px 2px 0;
    font-size: 17px;
    font-weight: 700;
    color: #d84315;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ic02-feed {
    list-style: none;
    margin: 0;
    padding: 0 14px;
}
.ic02-row { border-bottom: 1px dashed #f2d9c9; }
.ic02-row:last-child { border-bottom: none; }
.ic02-row-link {
    display: flex;
    align-items: stretch;
    padding: 13px 0;
    text-decoration: none;
}
.ic02-row-pic {
    width: 128px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 11px;
    flex-shrink: 0;
}
.ic02-row-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ic02-row-title {
    font-size: 16px;
    color: #33291f;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ic02-row-date {
    font-size: 12px;
    color: #b0a89f;
    margin-top: 8px;
}


/* 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;
}

