/* 祈福墙样式 */
.wishes-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.wishes-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

/* 祝福表单样式 */
.wish-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    text-align: left;
}

.wish-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* 样式选择器 */
.wish-style-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.style-option {
    cursor: pointer;
    padding: 0.5rem;
    border: 2px solid transparent;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
}

.style-option:hover {
    transform: translateY(-2px);
}

.style-option.active {
    border-color: var(--primary-color);
}

.style-preview {
    width: 100%;
    height: 60px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

/* 祝福卡样式预览 */
.style-preview.style1 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.style-preview.style2 {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.style-preview.style3 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.style-preview.style4 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

/* 祝福墙展示区 */
.wish-wall {
    width: 100%;
    min-height: 600px;
}

.wish-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

/* 祝福卡片样式 */
.wish-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-origin: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wish-card:hover {
    transform: scale(1.02) rotate(1deg);
}

.wish-card.style1 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.wish-card.style2 {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.wish-card.style3 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.wish-card.style4 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

.wish-content {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wish-author {
    font-size: 0.9rem;
    color: #666;
    text-align: right;
    font-style: italic;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .wish-form {
        max-width: 500px;
    }

    .wish-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .wishes-content {
        padding: 3rem 1rem;
    }

    .wish-form {
        padding: 1.5rem;
    }

    .wish-cards {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .wish-cards {
        grid-template-columns: 1fr;
    }

    .wish-card {
        min-height: 180px;
    }
}