html,
body {
    margin: 0;
    padding: 0;
    background-color: #0F0901;
    padding-bottom: 65px;
    overflow-x: hidden;
}

/* For WebKit browsers (Chrome, Safari, etc.) */
html::-webkit-scrollbar {
    display: none;  /* Hide the scrollbar */
}

body::-webkit-scrollbar {
    display: none;  /* Hide the scrollbar */
}

#screen {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    z-index: 1;
}

#font {
    position: relative;
    z-index: 2;
    font-family: 'IBM Model3x Alt2';
    text-align: center;
    color: #FFA500;
    font-size: 30px;
    text-shadow: 1px 1px 2px rgb(145, 124, 61), 0 0 1em #917c3d, 0 0 0.2em #917c3d;
}

#mainbanner {
    width: 60%;
    margin: 0 auto;
    margin-top: 65px;
}

@media (max-width: 768px) {
    #mainbanner {
        width: 100%;
        padding: 25px;
        box-sizing: border-box;
    }
}

.crtscan {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background-image: url('../media/crtoverlay.png');
    background-repeat: repeat-y;
    background-size: 100% auto;
    /* Full width, preserve height ratio */
    background-position: top center;

    animation: scrollBackground 8s linear infinite;

    z-index: 3;
    pointer-events: none;
    background-attachment: fixed;
}


@keyframes scrollBackground {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: -100%;
    }
}

#bezel {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 4;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-style-link {
    text-decoration: none;
    color: inherit;
}

.border {
    border: 2px solid #FFA500;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0px;
    color: #FFA500;
    box-shadow:
        1px 2px 4px rgba(145, 124, 61),
        inset 1px 2px 4px rgba(145, 124, 61);

    margin: auto;
    width: 45%;
}

.post {
    text-align: center;
}

@media (max-width: 1000px) {
    .border {
        width: 80%;
        padding: 10px;
    }
}

#fadeOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 9999;
    animation: fadeOut 1s ease-in-out forwards;
    pointer-events: none;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        /* Fully visible at the start */
    }

    100% {
        opacity: 0;
        /* Fully transparent at the end */
        visibility: hidden;
        /* Ensure it doesn't block clicks after fading */
    }
}

nav a, a {
    color: #FFA500;
    text-decoration: none;
    /* removes underline */
}

ul {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    list-style-type: none;
}

.season-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
    box-sizing: border-box;
}

.hover-underline {
    text-decoration: none;
    cursor: pointer;
  }

  .hover-underline:hover {
    text-decoration: underline;
  }

  .iframegb {
    width: 100%;
    height: 100vh;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  body::-webkit-scrollbar {
  display: none; /* Chrome & Safari */
}