@font-face {
    font-family: 'Press Start 2P';
    src: url('/static/fonts/PressStart2P.ttf') format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Ubuntu';
    src: url('/static/fonts/UbuntuMono-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    pointer-events: none;
    z-index: -1;
    object-fit: cover;
}

video {
    will-change: transform; /* Hints to GPU to keep video optimized */
    backface-visibility: hidden; /* Prevents flicker on some browsers */
}

body {
    background-color: rgb(7, 2, 63);
}
.container-sm {
    max-width: 1080px;
}
.nes-container {
    padding: 1rem 1rem;
    margin-bottom: 25px!important;
}

.nes-container.is-dark {
    background-color: #000000ad;
}
.nes-container.is-dark::after {
    background-color: transparent;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: small;
}
.info-table td, .info-table th {
    padding: 5px 0;
    border-bottom: 2px dotted #37db15;
}
.info-table th {
    text-align: left;
    font-weight: bold;
    color: #37db15;
    padding: 8px 5px;
}
.info-table .label {
    width: 1%;
    white-space: nowrap;
    padding-right: 100%;
}
.info-table .value {
    text-align: right;
    font-weight: normal;
    cursor: pointer;
    user-select: all;
    padding: 2px 5px;
    border-radius: 3px;
    word-wrap: break-word;
    word-break: break-all;
}
.info-table .value span {
    padding: 2px 5px;
    border-radius: 3px;
    background-color: transparent;
}
.info-table .value span.ip-highlight {
    background-color: rgba(55, 219, 21, 0.2);
    color: #37db15;
}
.info-table .value span.tips-highlight {
    color: #ffffff;
}
.info-table .value span:hover {
    background-color: rgba(55, 219, 21, 0.3);
}

.footer {
    /* position: relative;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    max-width: 1080px; */
    margin-top: 18%;
    font-family: Ubuntu;
    font-size: 14px;
}

.hamburger-menu {
    display: none;
    text-align: center;
    padding: 1rem;
    position: relative;
}

.hamburger-btn {
    position: relative;
    width: 60px;
    height: 30px;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000000;
    margin: 4px auto;
    transition: 0.3s;
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 13%;
    left: 0;
    right: 0;
    background-color: #2c001e;
    border: 2px solid #fff;
    padding: 1rem;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.mobile-menu.show {
    display: block;
}

.mobile-menu button {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
}

.navbar-brand h3 {
    color: white !important;
    font-weight: bold;
}

.navbar-menu {
    display: flex;
    gap: 10px;
}

.services-container {
    font-family: monospace;
    font-size: large;
}

.service-list{
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    text-align: left;

}

@media (max-width: 640px) {
    .nes-container.is-dark.is-centered.is-nav {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    .navbar-menu {
        display: none;
    }
    
    #myVideo {
        display: none;
    }
    
    body {
        background-color: #2c001e;
    }
}
