* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #1E90FF;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    position: relative;
}

.app-content {
    text-align: center;
    padding: 20px;
}

.app-icon {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: 24px;
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.app-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.download-button {
    display: block;
    width: 200px;
    transition: transform 0.2s;
}

.download-button:hover {
    transform: scale(1.05);
}

.download-button img {
    width: 100%;
    height: auto;
}

.download-button.tencent {
    background-color: #ffffff;
    color: #1E90FF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.download-button.tencent:hover {
    background-color: #f0f0f0;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .app-icon {
        width: 100px;
        height: 100px;
    }

    .app-name {
        font-size: 24px;
    }

    .app-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .download-button {
        width: 180px;
    }
}

/* 创建assets目录提示 */
.download-button img[src^="assets/"] {
    max-height: 60px;
    object-fit: contain;
} 