/* 賢者の名言カードスタイル */
.quote-card-canvas {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: 'M PLUS Rounded 1c', 'Helvetica Neue', Arial, sans-serif;
}

/* 装飾的な背景要素 */
.quote-card-canvas::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.card-character-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-character-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.card-date {
    font-size: 16px;
    color: #90a4ae;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}

.card-fortune-label {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    margin: 0 auto 30px;
    box-shadow: 0 4px 10px rgba(25, 118, 210, 0.3);
}

.card-quote {
    font-size: 26px;
    line-height: 1.6;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.card-quote::before {
    content: '“';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: rgba(100, 181, 246, 0.2);
    font-family: serif;
}

.card-author {
    font-size: 18px;
    color: #5c6bc0;
    margin-bottom: 40px;
    font-style: italic;
}

.card-app-info {
    font-size: 14px;
    color: #b0bec5;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: auto;
}

/* 運勢別のカラーリング */
.quote-card-canvas.fortune-超大吉 {
    border-top: 15px solid #f093fb;
}

.quote-card-canvas.fortune-大吉 {
    border-top: 15px solid #fa709a;
}

.quote-card-canvas.fortune-中吉 {
    border-top: 15px solid #a8edea;
}

.quote-card-canvas.fortune-守護 {
    border-top: 15px solid #667eea;
}

/* 暫定的な非表示設定以外でのデバッグ用 */
#card-template-container.debug {
    position: static;
    margin: 20px auto;
}