/* Award Modal Styles */
.award-modal-content {
    background: linear-gradient(145deg, #444, #222);
    color: #fff;
    border: 3px solid #000;
    padding: 30px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Helvetica Neue', sans-serif;
}

#award-shaker-image {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

#award-shaker-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#award-shaker-label {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 5px 0 15px 0;
    padding: 3px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#award-shaker-message {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
}
#award-score-display {
    font-size: 1.1rem;
    font-weight: bold;
    color: #f39c12; /* A nice orange to stand out */
    margin-top: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
}
/* Tier-specific colors */
.award-modal-content.gold #award-shaker-title { color: #FFD700; }
.award-modal-content.gold #award-shaker-label { background-color: #FFD700; color: #000; }
.award-modal-content.silver #award-shaker-title { color: #C0C0C0; }
.award-modal-content.silver #award-shaker-label { background-color: #C0C0C0; color: #000; }
.award-modal-content.bronze #award-shaker-title { color: #CD7F32; }
.award-modal-content.bronze #award-shaker-label { background-color: #CD7F32; color: #fff; }
.award-modal-content .modal-close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}
.award-modal-content .modal-close-button:hover {
    color: #fff;
}