@font-face {
    font-family: "Jersey 10";
    src: url("../assets/fonts/Jersey_10/Jersey10-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Play";
    src: url("../assets/fonts/Play/Play-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Play";
    src: url("../assets/fonts/Play/Play-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Press Start 2P";
    src: url("../assets/fonts/Press_Start_2P/PressStart2P-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Dancing Script";
    src: url("../assets/fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf") format("truetype");
    font-weight: 400 700;
    font-style: normal;
    font-display: block;
}

:root{
    --primary-bg-color: rgb(18, 16, 29);
    --secondary-bg-color: rgb(25, 22, 41);
    --tercenary-bg-color: rgb(15, 14, 26);
    --drop-shadow: drop-shadow(black 10px 10px 0px)
}

.alert-toast {
    position: fixed;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ef4444; /* Vermelho bonito */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: sans-serif;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transition: top 0.4s ease, opacity 0.4s ease;
}

.alert-toast.show {
    top: 20px;
    opacity: 1;
}
