@keyframes coin-spin {
    0% {
        background-image: url('../assets/img/8_coin/coin_1.png');
    }
    50% {
        background-image: url('../assets/img/8_coin/coin_2.png');
    }
    100% {
        background-image: url('../assets/img/8_coin/coin_1.png');
    }
}

.setting-overlay::before {
  display: none !important;
}

.setting-overlay {
    height: 80vh;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: none;
    color: #000;
    animation: coin-spin 0.8s steps(2) infinite;
    background-repeat: no-repeat;
    background-size: 400px auto;
    background-position: center 33%;
    background-color: rgb(237, 237, 237)!important;
}

.setting-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.setting-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
    scrollbar-width: none;
}

.key-list,
.explanation {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.key-list li,
.explanation li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    text-align: left;
}

.key {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.explanation h1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

hr {
    width: 80%;
    margin: 20px auto;
    border: 1px solid var(--primary-gold);
}

.footerText a:not([target="_blank"]) {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footerText a:not([target="_blank"]):hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

