/* ===========================
   BOUNTY PAGE
=========================== */

.bounty-page {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* ===========================
   CARDS
=========================== */

.board-card,
.rules-card {
    margin: 100px auto;
    background: #efe0bb;
    border: 3px solid #5a3413;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

/* ===========================
   HEADERS
=========================== */

.board-card h1,
.rules-card h2 {
    margin: 0;
    padding: 20px 25px;
    background: #4b260b;
    color: #d8b15a;
    font-family: "Cinzel", serif;
    font-size: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ===========================
   INTRO
=========================== */

.intro {
    padding: 25px;
    color: #5f4426;
    line-height: 1.8;
    font-size: 1rem;
}

.highlight {
    color: #d39b2c;
    font-weight: bold;
}

/* ===========================
   FEATURE BOXES
=========================== */

.feature-box {
    margin: 0 25px 20px;
    padding: 18px;
    border: 2px solid #d2b173;
    border-radius: 10px;
    background: #f6ebd0;
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #d39b2c;
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.feature-box p {
    color: #5f4426;
    line-height: 1.7;
}

/* ===========================
   BUTTON AREA
=========================== */

.board-footer {
    margin: 30px 25px 25px;
    background: #4b260b;
    padding: 25px;
    text-align: center;
    border-radius: 6px;
}

.board-footer p {
    color: #e5c87b;
    font-family: "Cinzel", serif;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.board-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #d79c22;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: .3s;
}

.board-btn:hover {
    background: #b77f0d;
}

/* ===========================
   RULES
=========================== */

.rules-list {
    list-style: none;
    padding: 25px;
    margin: 0;
    counter-reset: rules;
}

.rules-list li {
    counter-increment: rules;
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    color: #5f4426;
    line-height: 1.7;
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li::before {
    content: counter(rules);
    min-width: 35px;
    height: 35px;
    background: #d79c22;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: .95rem;
}

.rules-footer {
    text-align: center;
    padding: 25px;
    color: #8b6841;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {

    .bounty-page {
        grid-template-columns: 1fr;
    }

    .board-card h1,
    .rules-card h2 {
        font-size: 1.7rem;
    }

    .feature-box {
        margin: 0 15px 15px;
    }

    .intro {
        padding: 20px;
    }

    .board-footer {
        margin: 20px 15px;
    }

}