@charset "utf-8";

body {
    background-color: #1a1510;
    color: #d4c5b0;
    font-family: 'Times New Roman', serif;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232a2218' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm20 20h20v20H20V20zM0 20h20v20H0V20zM20 0h20v20H20V0z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Parchment Container */
.guild-board {
    max-width: 1000px;
    margin: 40px auto;
    background: #2e261f;
    border: 8px solid #4a3b2a;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 40px;
}

.guild-board::before {
    content: "ADVENTURER'S GUILD";
    background: #4a3b2a;
    color: #eebb99;
    padding: 5px 20px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    border: 2px solid #6b563d;
}

header {
    text-align: center;
    border-bottom: 2px double #6b563d;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: #eebb99;
    text-shadow: 2px 2px #000;
    margin: 0;
}

.sub-header {
    font-size: 0.9rem;
    color: #8c7b66;
    font-style: italic;
}

/* Monster Cards */
.quest-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.monster-entry {
    background: #221a15;
    border: 2px solid #5a4635;
    padding: 15px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: center;
    transition: 0.2s;
}

.monster-entry:hover {
    background: #2a201a;
    border-color: #eebb99;
}

.rank-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #331111;
    color: #ff5555;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    border: 2px solid #552222;
}

.monster-info h2 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #dcb;
}

.monster-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #998877;
}

.action-btn {
    background: #5a4635;
    color: #eebb99;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.action-btn:hover {
    background: #6b563d;
    color: #fff;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #665544;
}