﻿#metalStorePanel h6 {
    color: #cc0000;
    text-shadow: none;
    padding-bottom: 5px;
}

#metalStorePanel a {
    display: block;
    padding: 10px;
    margin: 8px 0;
    color: #ccc;
    text-decoration: none;
    border: 1px solid #333;
    background: linear-gradient(145deg, #1a1a1a, #000);
}

#metalStorePanel a:hover {
    color: #fff;
    background: #300;
    box-shadow: 0 0 10px red;
    transform: scale(1.05);
}

#metalStorePanel:hover {
    /*background-color: transparent !important;*/
    background: transparent !important;
}

#metalStorePanel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 215px;
    padding: 20px;
    z-index: 9999;
    background: linear-gradient(180deg, #111, #000);
    color: #eee;
    border: 3px solid #444;
    box-shadow: 0 0 15px #000, inset 0 0 10px #222;
    font-family: "Arial Black", Impact, sans-serif;
    animation: pulseGlow 3s infinite alternate;
}

#metalStorePanel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 10px #000;
    }

    to {
        box-shadow: 0 0 25px #400;
    }
}