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

/* Кнопка «ИГРАТЬ НА ДЕНЬГИ».
 * В записях разметка такая: <p class="button24"><a class="button24" href="...">ИГРАТЬ НА ДЕНЬГИ</a></p>
 * Вид рисует только ссылка (a.button24), а p.button24 — просто обёртка, центрирующая её.
 */
p.button24,div.button24{
    display:block;
    margin:20px 0 24px;
    padding:0;
    border:0;
    background:none;
    box-shadow:none;
    min-height:0;
    text-align:center;
}
a.button24{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:60px;
    padding:0 46px;
    border:0;
    border-radius:999px;
    background:linear-gradient(180deg,#ffc23a 0%,#ff8a12 100%);
    color:#140b02;
    font-size:17px;
    font-weight:900;
    line-height:1;
    letter-spacing:.05em;
    text-transform:uppercase;
    text-shadow:0 1px 0 rgba(255,255,255,.4);
    text-decoration:none;
    box-shadow:0 8px 22px rgba(255,138,18,.28);
    transition:filter .15s ease,box-shadow .15s ease;
    -webkit-tap-highlight-color:transparent;
}
a.button24:hover,a.button24:focus{
    color:#140b02;
    text-decoration:none;
    filter:brightness(1.07);
    box-shadow:0 10px 28px rgba(255,138,18,.40);
}
a.button24:active{filter:brightness(.95)}
@media (max-width:640px){
    a.button24{display:flex;width:100%}
}