/* ========== 博彩棋牌软件推荐页面样式 ========== */

.software-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* 页面头部 */
.software-page .page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 35px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.software-page .page-header .header-icon {
    font-size: 50px;
    margin-bottom: 12px;
}

.software-page .page-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.software-page .page-header .subtitle {
    font-size: 16px;
    opacity: 0.9;
    color: #fff;
}

/* 软件列表 */
.software-page .software-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* 软件卡片 */
.software-page .software-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.software-page .software-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: #667eea;
}

/* 卡片内部 */
.software-page .card-inner {
    display: flex;
    padding: 25px;
    gap: 25px;
}

.software-page .card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    padding-right: 25px;
    border-right: 2px solid #f5f5f5;
}

.software-page .software-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 12px;
}

.software-page .software-title {
    text-align: center;
    margin-bottom: 12px;
}

.software-page .software-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.software-page .tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    background: #f0f0f0;
    color: #666;
}

.software-page .tag.success {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: #fff;
}

.software-page .tag.warning {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: #fff;
}

/* 价格区域 */
.software-page .price-box {
    text-align: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #fff5f5, #ffe0e0);
    border-radius: 12px;
    border: 2px solid #ff6b6b;
}

.software-page .price {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b6b;
    line-height: 1;
}

.software-page .unit {
    font-size: 14px;
    color: #ff6b6b;
    font-weight: 500;
}

/* 右侧内容 */
.software-page .card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.software-page .desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.software-page .meta-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.software-page .meta-row span {
    font-size: 13px;
    color: #888;
}

/* 操作按钮 */
.software-page .action-row {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.software-page .btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 110px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.software-page .btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.software-page .btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #fff;
    color: #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
    cursor: pointer;
    min-width: 110px;
}

.software-page .btn-download:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-2px);
}

/* 提示区域 */
.software-page .tips-section {
    margin-bottom: 30px;
}

.software-page .tips-card {
    display: flex;
    gap: 20px;
    background: #fff8e1;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #ffe082;
}

.software-page .tips-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.software-page .tips-content h3 {
    font-size: 18px;
    color: #f57c00;
    margin-bottom: 12px;
}

.software-page .tips-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.software-page .tips-content ul li {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.software-page .tips-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f57c00;
    font-weight: bold;
}

/* 联系客服卡片区域 */
.software-page .contact-section {
    margin-bottom: 30px;
}

.software-page .contact-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.software-page .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: #00b894;
}

.software-page .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b894, #00a085);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}

.software-page .contact-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.software-page .contact-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0;
}

.software-page .contact-content p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.software-page .btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, #00b894, #00a085);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
    flex-shrink: 0;
}

.software-page .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

/* 响应式 */
@media (max-width: 768px) {
    .software-page {
        padding: 15px 12px;
    }

    .software-page .page-header {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .software-page .page-header h1 {
        font-size: 24px;
    }

    .software-page .card-inner {
        flex-direction: column;
        padding: 18px;
        gap: 15px;
    }

    .software-page .card-left {
        min-width: auto;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid #f5f5f5;
        padding-bottom: 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .software-page .software-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
        margin-bottom: 0;
    }

    .software-page .software-title {
        text-align: left;
        margin-bottom: 0;
        flex: 1;
    }

    .software-page .software-title h2 {
        font-size: 16px;
    }

    .software-page .price-box {
        padding: 8px 15px;
    }

    .software-page .price {
        font-size: 24px;
    }

    .software-page .meta-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .software-page .action-row {
        flex-direction: column;
    }

    .software-page .btn-buy,
    .software-page .btn-download {
        width: 100%;
    }

    .software-page .tips-card {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .software-page .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .software-page .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .software-page .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .software-page .btn-contact {
        width: 100%;
    }
}