.new_year_message_screen {
    background-color: rgba(6, 10, 22, 0.55);
    transition: opacity .18s ease, transform .18s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1160;
}

.new_year_card {
    background-color: #2b3260;
    position: relative;
    width: 90%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 0 40px 3px #000000;
    animation: fadeInCard 0.4s ease;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    font-family: sans-serif;
}

.new_year_card_close_button {
    position: absolute;
    display: none;
    top: -10px;
    right: -10px;
    background-color: rgb(226, 56, 56);
    transition: ease 1s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    font-family: roboto;
    border: none;
    outline: none;
    color: white;
    transition: ease 0.3s;
    user-select: none;
    cursor: pointer;
    transform: rotate(45deg);
}

.new_year_card_target_name {
    color: #fff;
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.new_year_text {
    width: 100%;
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.25px;

    transition: opacity .4s ease;

    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.25),
        0 0 6px rgba(255, 255, 255, 0.08);
}

.yew_year_muted {
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    font-weight: 400;
}