@keyframes gold-glow {
    0% { box-shadow: 0px 0px 10px 2px rgba(255, 215, 0, 0.6); }
    50% { box-shadow: 0px 0px 30px 10px rgba(255, 215, 0, 1); }
    100% { box-shadow: 0px 0px 10px 2px rgba(255, 215, 0, 0.6); }
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family:sans-serif;
    height: fit-content;
}

.content_elite {
    background-color: white;
    padding: 5px;
    border: 15px solid transparent;
    border-image: linear-gradient(45deg, #FFD700, #FFAA00, #FFCC33, #FFD700) 1;
    box-shadow: 0px 0px 30px 10px rgba(255, 215, 0, 0.8);
    border-radius: 0;
    text-align: left;
    position: absolute;
    top: 15%;
    left: 29%;
    width: 40%;
    height: fit-content;
    animation: gold-glow 2s infinite alternate;
}

.banner_elite {
    display: flex;
    text-align: center;
    background-color: white;
    justify-content: center;
    align-items: center;
    position: fixed;
    border: 4px solid transparent;
    border-image: linear-gradient(45deg, #FFD700, #FFAA00, #FFCC33, #FFD700) 1;
    box-shadow: 0px 0px 20px 5px rgba(255, 215, 0, 0.8);
    top: 0%;
    left: 0%;
    width: 100%;
    height: 15%;
    z-index: 999;
    animation: gold-glow 2s infinite alternate;
}

.banner_elite table {
    width: 100%;
    height: 100px;
}

#container {
    position: fixed;
    width: 200px;
    bottom:0;
    background-color: transparent;
    right: 0;
    top:0;
    overflow: hidden;
}
  
#slider {
    position: absolute;
    padding: 20px;
    top: 0;
    right: -255px;
    width: 200px;
    height: fit-content;
    transition: right 0.3s;
    text-align: center;
    background-color: white;
    justify-content: center;
    align-items: center;
    position: fixed;
    border: 4px solid transparent;
    border-image: linear-gradient(45deg, #FFD700, #FFAA00, #FFCC33, #FFD700) 1;
    box-shadow: 0px 0px 20px 5px rgba(255, 215, 0, 0.8);
    animation: gold-glow 2s infinite alternate;
}

#container, #slider{
    user-select: auto !important;
}

#container:hover #slider {
    right: 0;
}
