/*
 * 777 Noir — custom CSS
 * Loaded AFTER style.css. Put your personal/one-off CSS here.
 */

/* Test style for the site's existing money-play button:
 * <a class="button24" href="/goto/play" target="_blank" rel="noreferrer noopener nofollow">ИГРАТЬ НА ДЕНЬГИ</a>
 */
.button24{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 34px;
    border:0;
    border-radius:17px;
    background:linear-gradient(135deg,#ffb21c 0%,#ff6a18 52%,#ff4a13 100%);
    color:#fff;
    font-size:16px;
    font-weight:900;
    line-height:1;
    text-decoration:none;
    box-shadow:0 10px 28px rgba(255,118,20,.24);
    transition:transform .18s ease,filter .18s ease,box-shadow .18s ease;
    -webkit-tap-highlight-color:transparent;
}
.button24:hover{
    color:#fff;
    text-decoration:none;
    transform:translateY(-1px);
    filter:brightness(1.05);
    box-shadow:0 13px 34px rgba(255,118,20,.30);
}
.button24:active{transform:translateY(0)}
