#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}

body {
    font-family: "Cal Sans", sans-serif;
    color: #FFFFFF;
}

.btn-primary {
    font-size: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.4) !important;
    color: white !important;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fafafa !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-primary:active {
    transform: scale(0.95) !important;
    box-shadow: 0 0 30px rgba(255, 204, 0, 1) !important;
}

.navibar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 10, 75, 0.397);
    padding: 15px 30px;
    display: flex;
    justify-content: flex-start;
    z-index: 1000;
}

.navibar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: flex-start;
}

.navibar a {
    color: white;
    text-decoration: none;
    font-size: 23px;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: "Cal Sans", sans-serif;
}

.navibar a:hover {
    background: #555;
}

@media screen and (max-width: 768px) {
    .btn-primary {
        font-size: 16px;
    }
}
