@font-face {
    font-family: 'Pixel';
    src: url(/web/20250124103331im_/https://thestalkermod.com/thesilencepublic/media/pixel.otf);
}

@font-face {
    font-family: 'PixelShort';
    src: url(/web/20250124103331im_/https://thestalkermod.com/thesilencepublic/media/pixelshort.otf);
}


*,*::before,*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}


a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

html {
    color-scheme: dark;
    font-family: "Pixel";
    user-select: none;
    background-color: black;
}

body {
    background-color: black;
    height: 100vh;
    overflow: hidden;
}

.main {
    /* padding: 6vh 5%; */
    height: 100%;
    overflow: hidden;
}

.tv_frame {
    /* background-image: url('/web/20250124103331im_/https://thestalkermod.com/thesilencepublic/media/frame.png'); */
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
    background-size: 112% 112%;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
}

#canvas {
    position:fixed;
    background:#666;
    opacity: 0.25;
    pointer-events: none;
    z-index: 998;
    top: 0;
    left: 0;
  background: red; /* For browsers that do not support gradients */    
    background: -webkit-radial-gradient(#fff, #666); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(#fff, #666); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(#fff, #666); /* For Firefox 3.6 to 15 */
    background: radial-gradient(#fff, #666); /* Standard syntax (must be last) */
}

.firstmenu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    background-color: black;
    transition: opacity 1s ease;
    /* opacity: 0;
    pointer-events: none; */
    z-index: 50;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.firstmenu h1 {
    font-size: 75pt;
    animation: appear 5s linear forwards, moveup 1s ease forwards 5s;
    opacity: 0;
    color: rgb(185, 10, 45);
    transform: translateY(20px);
}

.loadingpart {
    transform: translateY(-20px);
    animation: movedown 2s ease forwards 6s;
        opacity: 0;
}

.firstmenu .loadingbar {
    border: 2px solid rgb(185, 10, 45);
    padding: 2px;
    width: 300px;
    max-width: 95%;
}

.loadingbar .loadingcomponent {
    background-color: rgb(185, 10, 45);
    padding-block: 4px;
    width: 0%;
}

.loadingdesc {
    color: rgb(185, 10, 45);
    margin-top: 5px;
    text-align: center;
}

@keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes disappear {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes moveup {
    from {
        
        transform: translateY(20px);
    }
    to {
        transform: translateY(0px);
    }
}

@keyframes movedown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes moveleft {
    from {
        transform: translateX(0);
    }
    50% {
        opacity: 1;
    }
    to {
        transform: translateX(-500px);
        opacity: 0;
    }
}

@keyframes moveright {
    from {
        
        transform: translateX(0);
    }
    50% {
        opacity: 1;
    }
    to {
        transform: translateX(500px);
        opacity: 0;
    }
}

.navbar {
    display: flex;
    padding-inline: 2rem;
    padding-block: 1rem;
    justify-content: space-between;
}

.navbar .logo {
    display: flex;
    font-size: 25px;
    align-items: center;
    gap: 15px;
}

.mainbigheadimg {
    transition: transform 1s ease, opacity 0.7s ease;
}

.mainbigheadimg img {
    pointer-events: none;
}

.mainbigheadimg.flicka {
    animation: flicker 10s infinite;
}

@keyframes flicker {
    5% { opacity: 1; filter: brightness(1); }
    6% { opacity: 0.3; filter: brightness(0.3)}
    7% {opacity: 1; filter: brightness(1)}

    37% {opacity: 1; filter: brightness(1)}
    38% {opacity: 0.6; filter: brightness(0.6)}
    39% {opacity: 0.8; filter: brightness(0.8)}
    40% {opacity: 0.2; filter: brightness(0.2)}
    41% {opacity: 0.7; filter: brightness(0.7)}
    42% {opacity: 0.5; filter: brightness(0.5)}
    43% {opacity: 1; filter: brightness(1)}

    80% {opacity: 1; filter: brightness(1)}
    81% {opacity: 0.6; filter: brightness(0.6)}
    82% {opacity: 0.8; filter: brightness(0.8)}
    83% {opacity: 0.2; filter: brightness(0.2)}
    84% {opacity: 1; filter: brightness(1)}

}

.navbar .logo img {
    height: 45px;
}

.navbar .links {
    font-size: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

a {
    transition: color 0.3s ease;
    height: fit-content
}

a:hover {
    color: rgb(185, 10, 45);
}

.mainmenu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(90% - 77px);
    gap: 4rem;
}

.mainmenu img {
    height: 500px;
}

.mainmenuoptions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 25px;
}

.menuoptiontitle {
    font-size: 70px;
    color: rgb(185, 10, 45);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.mainmenuoptionscont {
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.downloadbtn {
    text-align: center;
    padding: 1rem;
    background-color: rgb(185, 10, 45);
    margin-bottom: 1rem;
    color: black;
    box-shadow: inset 0px 0px 0px 2px black ;
    border: 2px solid rgb(185, 10, 45);
}

.downloadbtn:hover {
    color: black !important;
}

.mainmenuoptions a:not(.downloadbtn) {
    transition: transform 0.3s ease;
}
.mainmenuoptions a:not(.downloadbtn).coolo:hover {
    transition: transform 0.3s ease;
    transform: translateX(7px) !important;
}

.modaloverlay {
    z-index: 100;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    display: flex;
    align-items:center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
}

.modaloverlay .modal {
    padding: 1rem;
    border: 2px solid rgb(185, 10, 45);
    background-color: rgb(185, 10, 45);
    box-shadow: inset 0px 0px 0px 3px black;
    color: black;
    width: 700px;
    max-width: 100%;
    position: relative;
}

.modalheader {
    text-align: center;
    margin-bottom: 2rem;
}

.question {
    margin-left: -1rem;
    font-size: 25px;
    margin-top: 1rem;
}

.modal ul li{
    font-size: 22px;
    margin-top: 0.5rem;
}

.modal .closebutton {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
}

.modal .closebutton:hover {
    text-decoration: underline;
}

.notyet {
    position: relative;
    width: fit-content;
}

.notyet::after {
    position: absolute;
    /* top: 50%; */
    content: "SOON";
    left: 110%;
    font-size: 15px;
    color: black;
    background-color: rgb(185, 10, 45);
    padding: 4px;
    box-shadow: inset 0px 0px 0px 2px black;
    border: 1px solid rgb(185, 10, 45);
    transition: transform 0.2s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.notyet:hover::after {
    opacity: 1;
    transform: translateX(0px);
}

.mainmenuoptions a:not(.downloadbtn) {
    transform: translateX(15px);
    opacity: 0;
}

.mainmenuoptions a:not(.downloadbtn).coolo {
    transform: translateX(0px) !important;
    opacity: 1 !important;
}


.mainmenuoptions a.coola {
    animation: amove 1s ease forwards;
}


.mainmenuoptions a.coola:nth-child(4) {
    animation-delay: 100ms;

}

.mainmenuoptions a.coola:nth-child(5) {
    animation-delay: 250ms;
}

.mainmenuoptions a.coola:nth-child(6) {
    animation-delay: 400ms;
}

.mainmenuoptions a.coola:nth-child(7) {
    animation-delay: 550ms;
}

.mainmenuoptions a.coola:nth-child(8) {
    animation-delay: 700ms;
}


@keyframes amove {
    from {
        transform: translateX(15px);
        opacity: 0;
    }
    to {
        transform: translateX(0px);
        opacity: 1;
    }
}
/*
     FILE ARCHIVED ON 10:33:31 Jan 24, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 19:54:28 Dec 14, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 2.079
  exclusion.robots: 0.019
  exclusion.robots.policy: 0.009
  esindex: 0.009
  cdx.remote: 16.208
  LoadShardBlock: 152.866 (3)
  PetaboxLoader3.datanode: 121.861 (4)
  PetaboxLoader3.resolve: 74.013 (2)
  load_resource: 153.719
*/