* {
    --isPd_0: 7px;
    --btnBtm: 100px;
    --gutter: 1px;
    --navbarHeight: 60px;
    --buttonHeight: 55px;
    --buttonMargin: 10px;
    --isPlayTextTop: 10px;
    --isPlayTextWidth: 370px;
    --isPlayTextHeight: 270px;
}

/* /////////////////////////// */
.scrollerFrame
{
    position: fixed;
    top: var(--navbarHeight);
    width: 100%;
    height: calc(100% - var(--navbarHeight) - var(--gutter));
    display: flex;
    flex-direction: column;

    overflow-y: scroll;
    overflow-x: hidden;
    color: inherit;
    background-color: inherit;
    transition: inherit;
    visibility: visible;
}
.hide-scroller{
    transition: opacity 0.5s ease;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.scrollerFrame::-webkit-scrollbar{
    width: 0;
    height: 0;
}
.jackboot{
    overflow-y: hidden;
}
section {
    position: relative;
    top: 0;
    margin-bottom: calc(var(--navbarHeight) + var(--gutter));
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    
    display: flex;
    gap: 1%;
    flex-direction: column;

    align-items: center;
    box-sizing: border-box;
    padding: 5px;

    font-family: 'Satoshi-Regular';
    letter-spacing: -0.04em;
}
section input{
    font-size: 16px;
    width: 250px;
    height: 50px;
    border-radius: 20px;
    margin-top: 20px;
    border: 1px solid #2C3539;
    text-indent: 16px;
    font-family: 'Courier New', Courier, monospace;
}

.splashFrame {
    align-items: center;
    padding-top: 20vh;
}
.splashFrame h1{
    width: 85%;
    max-width: 600px;
    font-family: "Satoshi-Medium";
    text-align: right;
    letter-spacing: -0.05em;
    word-spacing: -0.05em;
    font-size: 2.4rem;
}
.splashFrame h4,
.splashFrame h4 em
{
    font-family: "Satoshi-Regular";
    letter-spacing: -0.04em;
    margin-top: 10px;
}

.splashImage {
    width: 200px;
    height: 200px;
    opacity: 0.25;
    border: 1px solid red;
}

.splashImage img {
    width: 100%;
    height: 100%;
}

/* //////////////////////////// */

.proceed {
    position: absolute;
    width: 300px;
    height: var(--buttonHeight);
    padding: 5px;
    border-radius: 35px;
    border-width: 0.1px;
    border-color: #fafafa66;
    background-color: #555d6123;
    color: black;
    font-family: 'Satoshi-Medium';
    letter-spacing: -0.05em;
    word-spacing: -0.05em;
    font-size: 1rem;
    color: inherit;

    bottom: var(--btnBtm);
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

}
#to_nickname{
    bottom: var(--btnBtm);
    font-size: 1.15rem;
}
#to_login{
    bottom: 
        calc(var(--btnBtm) - var(--buttonHeight) - var(--buttonMargin))
}
@media only screen and (min-width: 600px) and (min-height: 600px){
    .splashFrame{
        padding-top: 25vh;
    }
    .splashFrame h1{
        text-align: center;
        font-size: 3rem;
    }
}

/* specifically mobile landscape */
@media only screen 
    and (min-width: 600px) and (max-height: 599.98px)
{
    .splashFrame{
        padding-top: 3.5vh;
    }
    .splashFrame h1{
        text-align: center;
        font-size: 1.7rem;
    }
    section{
        flex-direction: row;
    }
}

/* always exempt */
.splashFrame{
    flex-direction: column;
}

/* //////////////////////////// */

.secondFrame{
    /* font-family: 
        "Suisse Intl-Light", "Lucida Sans", Tahoma, sans-serif; */
    font-family: "Satoshi-Regular";
    font-size: 0.95rem;
    padding: 2%;
    letter-spacing: -0.04em;
    word-spacing: -0.04em;
    justify-content: center;
}
.secondFrame h2{
    /* font-family: "nunito"; */
    letter-spacing: inherit;
    word-spacing: inherit;
}
.secondFrame p{
    margin-top: 10px;
}
.secondFrame p small{
    font-family: 'Satoshi-Light';
}
#to_about{
    bottom: calc(var(--btnBtm) - var(--buttonHeight) - 30px);
    font-size: 1.15rem;
}
/* specifically mobile landscape */
@media only screen 
    and (min-width: 600px) and (max-height: 599.98px)
{
    .secondFrame{
        align-items: baseline;
        padding-top: 1%;
    }
}
.nick-warn0,
.nick-warn1{
    color: red;
    font-family: "nunito";
    font-size: 1rem;
    text-shadow: 0px 0px 1px red;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* //////////////////////////// */

.thirdFrame {
    display: block;
}
.thirdFrame h2{
    text-align: center;
}
.jillboot p{
    display: inline-block;
    vertical-align: text-top;
}
.isText,
.isText2 {
    position: absolute;
    /* border: 1px solid black; */
    top: var(--isPlayTextTop);
    width: var(--isPlayTextWidth);
    left: 50%;
    transform: translateX(-50%);
}
.isText{
    height: var(--isPlayTextHeight);
    margin-top: 15px;
}
.isText2{
    top: calc(var(--isPlayTextTop) + var(--isPlayTextHeight));
    font-family: "Satoshi-Light";
    margin-top: 200px;
    font-size: 2rem;
    opacity: 0;
    z-index: -1;
    transition:
        opacity 0.8s ease, 
        margin 1.2s ease-in-out;
}
.slide-in{
    opacity: 1;
    margin-top: 30px;
}
.casT,
.isT{
    /* border: 1px solid red; */
    position: relative;
    transition: all 0.3s ease-in-out;
    font-size: 100%;
    left: 0;
    top: 0;
    color: inherit;
}
.casT{
    left: -2px;
}
.t1{
    font-size: 115%;
}
.t2{
    font-size: 115%;
    left: 17%;
    font-family: 'Satoshi-Light';
}
.t3{
    font-size: 200%;
    left: 28%;
    top: -10%;
    font-family: 'Satoshi-Medium';
}
.t4{
    font-size: 120%;
    left: 25%;
    top: -12%;
}
.t5{
    font-size: 170%;
    top: -15%;
    left: 3%;
    color: goldenrod;
    text-shadow: 1px 1px 2px black;
}
.t6{
    font-size: 300%;
    font-family: "nunito";
    top: -15%;
    left: 15%;
    color: #2C3539;
    font-family: "atalon";

    text-shadow: 1px 1px 1px #fafafa66;
}
.t7{
    font-size: 190%;
    left: 5%;
    top: -18%;
    font-family: 'berranger';

}
.t8{
    font-size: 234%;
    top: -25%;
    left: 50%;
    font-family: "refbeverage";
}
.t9{
    font-size: 135%;
    top: -25%;
    letter-spacing: -0.06em;
    word-spacing: -0.5em;
    font-family: "press_start2p";
}

#to_faculty{
    bottom: calc(var(--btnBtm) - var(--buttonHeight) - 30px);
    font-size: 1.15rem;
}

/* specifically mobile landscape */
@media only screen 
    and (min-width: 600px) and (max-height: 599.98px)
{
    .isText{
        left: calc(50% - 15%);
    }
    .isText2{
        left: calc(50% + 30%);
        top: calc(0.4*var(--isPlayTextHeight));
        width: calc(0.55*var(--isPlayTextWidth));
        font-size: 1.35rem;
        margin-top: 0;
    }
    .slide-in{
        margin-top: 0;
    }
}

/* //////////////////////////// */

.fourthFrame,
.fifthFrame {
    justify-content: center;
}

.fourthFrame select{
    /* Remove native arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    border-radius: 10px;
    padding: 10px;
    font-family: "nunito";
    cursor: pointer;
    color: inherit;
    background-color: inherit;
    width: 300px;
}
.fourthFrame select:hover{
    transition: all 0.5s ease;
    background-color: #040b2b;
    color: goldenrod;
    text-shadow: 0px 1px 0px black;
}
.fourthFrame select:focus{
    outline: none;
    border-color: #fafafa66;
    color: skyblue;
    background: linear-gradient(
        black,
        royalblue
    );
}
.fourthFrame option{
    transition: all 2s ease-in-out;
    font-family: inherit;
    color: royalblue;
    background-color: inherit;
}

/* specifically mobile landscape */
@media only screen 
    and (min-width: 600px) and (max-height: 599.98px)
{
    .fourthFrame,
    .fifthFrame {
        display: block;
        padding-top: 50px;
        padding-left: 50px;
    }
}
#to_cta{
    bottom: calc(var(--btnBtm) - var(--buttonHeight) - 30px);
    font-size: 1.15rem;
}

/* //////////////////////////// */

#showRegForm{
    bottom: calc(var(--btnBtm) - var(--buttonHeight) - 30px);
    font-size: 1.15rem;
}
/* //////////////////////////// */
.regFrame {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.regCard {
    position: relative;
    background-color: #fafafa66;    
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 500px;
    height: 365px;
    gap: 2%;
    box-sizing: border-box;
    padding: 10px;
    animation: fadeIn 0.5s ease-out;
}

.regCard h1 {
    font-size: 1rem;
    opacity: 0.45;
    width: 50%;
    color: #fafafa66;
    text-shadow: 1px 0px 1px #0A0A0A;
    text-align: center;
    font-family: 'Satoshi-Medium';
    word-spacing: -0.04em;
    letter-spacing: -0.04em;
}

/* Form input fields */
#registerForm input {
    width: 90%;
    height: 35px;
    margin-top: 2px;
    padding: 0;
    border: 1px solid #ccc;
    background-color: #fafafa33;
    color: inherit;
    border-radius: 8px;
    font-size: 16px;
    text-indent: 10px;
    font-family: 'Satoshi-Regular';
    word-spacing: -0.04em;
    letter-spacing: -0.04em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#registerForm input::placeholder{
    font-size: 14px;
    color: skyblue;
    text-shadow: 1px 1px 0px #0a0a0a74;
}
#registerForm input:focus {
    border-color: #708090;
    box-shadow: 0 0 0 2px rgba(0, 119, 204, 0.15);
    outline: none;
}

/* Submit button */
#registerForm button {
    width: 50%;
    height: 40px;
    margin-top: 10px;
    color: white;
    background-color: #708090;
    border-color: #fafafa22;
    border-radius: 10px;
    font-size: 1rem;
    font-family: "Satoshi-Light";
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#registerForm button:hover {
    background-color: goldenrod;
    color: #0A0A0A;
    font-weight: 700;
}

.reg-warn{
    color: goldenrod;
    font-family: "Satoshi-MediumItalic";
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}
.show-regWarn{
    opacity: 1;
    transition: opacity 0.5s ease;
}

@media only screen and (min-width: 600px)
and (max-height: 540px)
{
    .regCard{
        transform: scale(0.8);
    } 
}

/* ////////////////////// */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ///////////////////// */
.novis{
    visibility: hidden;
    pointer-events: none;
}