
/* Credits Display Styles */
#credits-container {
    position: relative;
    top: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px 16px;
    color: #9d46ff;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 500;
    transition: all 0.3s ease;
    font-size: 20px;
    opacity: 0.8;
    pointer-events: none;
}

#credits-container:hover {
    background: transparent;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: none;
    opacity: 1;
}

#credits-container i {
    font-size: 20px;
    color: #FFD700 !important;
    text-shadow: 0 0 4px #FFD700;
}

#credits-value {
    font-size: 20px;
    color: #ffffff;
    font-weight: lighter;
    text-shadow: 0 0 2px rgba(138, 43, 226, 0.5);
}

#extra-credits-value {
    font-size: 14px;
    color: #9d46ff;
    margin-left: 4px;
}

#extra-credits-value:before {
    content: "(+";
}

#extra-credits-value:after {
    content: " extra)";
}

.credits-label {
    font-size: 14px;
    color: #9d46ff;
    margin-right: 8px;
    text-shadow: 0 0 2px rgba(138, 43, 226, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    #credits-container {
        padding: 6px 12px;
        font-size: 16px;
    }

    #credits-container i {
        font-size: 14px;
        color: #FFD700 !important;
    }

    #credits-value {
        font-size: 14px;
    }

    #extra-credits-value {
        font-size: 14px;
    }

    .credits-label {
        font-size: 14px;
    }
}
