@charset "UTF-8";

@font-face {
    font-family: 'ppneuemontreal-medium';
    src: url('../ppneuemontreal-medium.woff2') format('woff2');
}

@font-face {
    font-family: 'ppneuemontreal-book';
    src: url('../ppneuemontreal-book.woff2') format('woff2');
}

@font-face {
    font-family: 'neuebit-bold';
    src: url('../neuebit-bold.woff2') format('woff2');
}

@font-face {
    font-family: 'mondwest-regular';
    src: url('../Mondwest-Regular.woff2') format('woff2');
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    background-color: black;
    color: #fff;
    font-family: ppneuemontreal-medium, 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.2);
    font-size: 1.1rem;
}

p {
    color: #ccc;
    font-size: 2.2rem;
    line-height: 1.6;
    font-family: neuebit-bold, monospace;
}

h3 {
    color: #0ff;
    font-family: neuebit-bold, monospace;
    font-size: 36px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    letter-spacing: 1px;
}


div.card {
    background-color: rgba(0, 255, 255, 0.05);
    border: 1px solid #0ff;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.15);
}

.form-control {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    font-family: neuebit-bold, monospace;
    font-size: 2rem;
}

    .form-control:focus {
        background-color: transparent;
        color: #fff;
        border-color: #fff;
        box-shadow: 0 0 10px #fff;
    }

.btn-primary {
    background-color: #fff;
    color: #000;
    border: none;
    font-family: neuebit-bold, monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.3rem;
    padding: 0.75rem 1.25rem;
    box-shadow: none;
}

    .btn-primary:hover {
        background-color: #ddd;
        color: #000;
        box-shadow: none;
    }

    .btn-primary:focus {
        background-color: #ddd;
        color: #000;
        box-shadow: none;
    }

    .btn-primary:disabled {
        background-color: #555;
        color: #999;
        box-shadow: none;
    }

.alert-danger {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: neuebit-bold, monospace;
    box-shadow: 0 0 10px #fb0a26;
    text-align: center;
}

.full-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#download-bg {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 1.2rem;
    text-decoration: none;
    z-index: 9999;
    font-family: neuebit-bold, monospace;
}


@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    60% {
        transform: translateX(-6px);
    }

    80% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.4s ease;
}
