.tavern-timber-bg {
    background: #2b1d14; 
    border-top: 5px solid #1a110a;
    border-bottom: 5px solid #1a110a;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}
.notice-corkboard {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.wanted-poster {
    background: var(--ancient-scroll-bg);
    padding: 20px;
    width: 320px;
    position: relative;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.5);
    color: var(--ink-black);
    text-align: center;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}
.wanted-poster:nth-child(2) { transform: rotate(1deg); }
.wanted-poster:nth-child(3) { transform: rotate(-1deg); }
.wanted-poster:hover {
    transform: rotate(0) scale(1.05);
    z-index: 10;
}
.dagger-nail {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #555, #111);
    border-radius: 50%;
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);
    z-index: 2;
}
.wanted-poster img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 2px solid var(--leather-dye);
    margin-top: 15px;
    margin-bottom: 15px;
    filter: sepia(0.3);
}
.wanted-poster h3 {
    font-family: var(--runic-heading);
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.quest-reward {
    font-weight: bold;
    color: #800000;
}
.woods-shadow-bg {
    background: #0d1410;
}
.cobblestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.whisper-parchment {
    background: #fdf5e6;
    color: var(--ink-black);
    padding: 20px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    position: relative;
}
.whisper-parchment:nth-child(even) {
    background: #f5eccb;
}
.whisper-tale {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.whisper-source {
    display: block;
    text-align: right;
    font-weight: bold;
    font-family: var(--runic-heading);
    color: var(--treasure-tarnished);
}
