/* 自定义样式 */

body {
    background-color: #f8f9fa;
}

/* 软件卡片 */
.software-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    border-radius: 12px;
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.software-icon {
    padding: 10px;
}

/* 平台Logo样式 */
.platform-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 价格标签 */
.badge.fs-6 {
    font-size: 1rem !important;
    padding: 8px 16px;
}

/* 表格 */
.table th {
    white-space: nowrap;
}

/* 表单 */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* 按钮 */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* 卡片 */
.card {
    border-radius: 12px;
    overflow: hidden;
}

.card-header {
    border-bottom: none;
}

/* 列表组 */
.list-group-item {
    border-left: none;
    border-right: none;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* 导航 */
.navbar-brand {
    font-weight: bold;
    font-size: 1.3rem;
}

/* 页脚 */
footer {
    border-top: 1px solid #dee2e6;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .card-body {
        padding: 1rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* 成功页面动画 */
@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.text-success svg {
    animation: checkmark 0.5s ease-out;
}

/* 代码样式 */
code {
    background-color: #f1f3f4;
    padding: 2px 6px;
    border-radius: 4px;
    color: #333;
}

/* 等宽字体 */
.font-monospace {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
}
