
/* Tombstone Popup Style */
.tombstone-popup {
    animation: slideUpFade 1s ease-out;
}

.tombstone-content {
    background: #3a3a3a; /* Dark stone gray */
    /* Stone texture simulation with gradient */
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
    border: 4px solid #5a5a5a;
    border-bottom: 0;
    /* Tombstone shape: Rounded top */
    border-radius: 100px 100px 0 0;
    padding: 60px 40px 30px 40px;
    width: 300px;
    text-align: center;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.6),
        inset 0 0 30px rgba(0,0,0,0.5);
    position: relative;
    color: #ccc;
    font-family: "Noto Serif SC", serif;
}

/* Base of the tombstone */
.tombstone-content::after {
    content: '';
    display: block;
    width: 340px;
    height: 20px;
    background: #2a2a2a;
    position: absolute;
    bottom: -20px;
    left: -24px; /* (340 - 300 - 8border)/2 approx */
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.rip-header {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #888;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8), -1px -1px 2px rgba(255,255,255,0.1);
    margin-bottom: 20px;
    letter-spacing: 5px;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}

.tombstone-content .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 2px 2px rgba(0,0,0,0.8);
}

.tombstone-content .height-mark {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    font-family: monospace;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
