.mrp-bounty-hub {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 20px;
    text-align: center;
}

.mrp-bounty-hub h2 {
    color: #ff4444;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.8em;
    margin: 0 0 50px;
    text-shadow: 0 0 20px rgba(255,68,68,0.6);
    text-align: center;
}

.bounty-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.mrp-bounty-poster {
    background: linear-gradient(to bottom, #0f0f1a, #1a0022);
    border: 5px solid #ff4444;
    border-radius: 25px;
    width: 440px;
    max-width: 95%;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 68, 68, 0.7),
                inset 0 0 40px rgba(255, 68, 68, 0.3);
    color: #eee;
    font-family: 'Courier New', monospace;
    transition: all 0.4s ease;
    margin: 0 auto;
    text-align: center;
}

.mrp-bounty-poster:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 0 80px rgba(255, 68, 68, 0.9);
}

.bounty-header {
    background: linear-gradient(135deg, #ff0044, #ff4488);
    padding: 30px 20px;
    text-align: center;
}

.bounty-header h2 {
    margin: 0;
    font-size: 2.8em; /* Reduced from 3.5em to fit better */
    color: white;
    text-shadow: 0 0 20px #ff0044;
    letter-spacing: 4px;
}

.bounty-header.available h2 {
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.bounty-sub {
    margin: 12px 0 0;
    font-size: 1.3em;
    font-style: italic;
    opacity: 0.9;
}

.bounty-image {
    background: #000;
    padding: 20px;
}

.bounty-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #ff4444;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255,68,68,0.5);
}

.bounty-content {
    padding: 30px;
    text-align: center;
}

.bounty-content h3 {
    color: #ff8888;
    margin: 0 0 20px;
    font-size: 1.8em;
}

.bounty-desc {
    margin: 20px 0;
    line-height: 1.7;
    font-size: 1.2em;
}

.bounty-gamertag {
    margin: 20px 0;
    font-size: 1.3em;
}

.bounty-status {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: bold;
    margin: 20px 0;
    font-size: 1.1em;
}

.bounty-status.online { background: #00ff00; color: black; box-shadow: 0 0 20px #00ff00; }
.bounty-status.today { background: #ffff00; color: black; box-shadow: 0 0 20px #ffff00; }
.bounty-status.evenings { background: #ffaa00; color: black; box-shadow: 0 0 20px #ffaa00; }
.bounty-status.offline { background: #666; color: white; }

.bounty-reward {
    background: linear-gradient(to right, #ff0044, #ff4488);
    color: white;
    padding: 25px;
    margin: 30px 0 20px;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 20px;
    text-shadow: 0 0 20px black;
    box-shadow: 0 0 40px rgba(255,68,68,0.7);
}

.bounty-profile-link a {
    color: #ff8888;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

.bounty-profile-link a:hover {
    color: #ffcccc;
}

/* Mobile */
@media (max-width: 600px) {
    .mrp-bounty-poster {
        width: 98%;
    }
    .bounty-header h2 {
        font-size: 2.4em;
    }
    .bounty-reward {
        font-size: 1.5em;
    }
}
/* ───────────────────────────────────────
   MULTI-BOUNTY LAYOUT ON USER PROFILES
   ─────────────────────────────────────── */
.mrp-profile-bounties {
    margin: 60px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.mrp-profile-bounties h3 {
    color: #ff4444;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.2em;
    margin: 0 0 40px;
    text-shadow: 0 0 15px rgba(255,68,68,0.6);
    text-align: center;
}

.bounty-grid-profile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* Make posters slightly smaller on profile (multi) vs hub (single focus) */
.bounty-grid-profile .mrp-bounty-poster {
    width: 100%;
    max-width: 440px;
    box-shadow: 0 0 40px rgba(255,68,68,0.5);
}

/* Mobile: stack vertically, no issue */
@media (max-width: 768px) {
    .bounty-grid-profile {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .mrp-profile-bounties h3 {
        font-size: 1.9em;
    }
}