/**
 * 人生红点宣言卡牌样式
 * 为自我诊断系统提供红点宣言卡牌的视觉效果
 */

/* 结果卡牌容器 */
#result-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

/* 结果卡牌 */
.result-card {
    position: relative;
    width: 320px;
    margin-bottom: 2rem;
}

/* 红点卡牌样式 - 与图示一致 */
.redpoint-card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    border: 1px solid #e0e0e0;
}

/* 红点卡牌头部 */
.redpoint-card-header {
    background-color: #e53935;
    color: white;
    padding: 1rem;
    text-align: center;
}

.redpoint-card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* 红点卡牌内容 */
.redpoint-card-body {
    padding: 1.5rem;
}

/* 红点卡牌圆形区域 */
.redpoint-card-circle {
    width: 180px;
    height: 180px;
    background-color: #ffebee;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redpoint-card-type {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

/* 红点卡牌特点 */
.redpoint-card-features {
    margin-bottom: 1.5rem;
}

.feature {
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* 红点宣言 */
.redpoint-card-declaration {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.redpoint-card-declaration h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.redpoint-card-declaration p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* 确认日期 - 已移除 */

/* 卡牌标签 - 已移除 */

/* 媒体查询 - 移动设备适配 */
@media (max-width: 768px) {
    .result-card {
        width: 100%;
        max-width: 320px;
    }
    
    .redpoint-card-circle {
        width: 150px;
        height: 150px;
    }
    
    .redpoint-card-type {
        font-size: 1.8rem;
    }
}

/* 下载、打印、分享按钮样式 */
.result-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.result-actions button {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.result-actions button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-actions button i {
    font-size: 1.2rem;
}

#download-redpoint {
    background-color: #4caf50;
    color: white;
}

#print-redpoint {
    background-color: #2196f3;
    color: white;
}

#share-redpoint {
    background-color: #ff9800;
    color: white;
}
