.card-festive {
    background: linear-gradient(145deg, #f9f9ff 0%, #f0f5ff 50%, #e6ecff 100%);
    border-radius: 9px;
    padding: 10px;
    max-width: 350px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    color: #3a3a52;
    box-shadow: 0 6px 18px rgba(58, 58, 82, 0.12),
    inset 0 0 10px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(230, 236, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.card-festive::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 20%, transparent 60%);
    z-index: 0;
}

.card-festive-gold {
    background: linear-gradient(45deg, #fff8e1 0%, #ffecb3 50%, #ffd54f 100%);
    border-radius: 8px;
    padding: 8px;
    max-width: 340px;
    text-align: center;
    font-family: 'Merriweather', serif;
    color: #4a2a04;
    text-shadow: 0 1px 2px rgba(74, 42, 4, 0.4);
    box-shadow: 0 10px 30px rgba(74, 42, 4, 0.3),
    inset 0 0 12px rgba(255, 248, 225, 0.5);
    border: 2px solid #ffab00;
    position: relative;
    overflow: hidden;
}

.card-festive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M0,8 L16,8 M8,0 L8,16! stroke="%23ffab00! stroke-width="1"/></svg>');
    opacity: 0.15;
    pointer-events: none;
}
