:root {
    --bg-primary: rgb(0, 0, 0);
    --bg-secondary: rgb(27, 21, 88);
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-disabled: #292d32;
    --accent-primary: #dbb856;
    --accent-secondary: #ce8633;
    --disabled: #071231;
    --danger: #ef4444;
    --success: #22c53d;
    --border-radius: 12px;
    
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat;
    font-weight: 300;
    color: var(--text-primary);
}

body {
    background-color: var(--bg-primary);
}


.master {
    padding-top: 10vh;
    font-size:medium;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    
    overflow-y:auto;
    align-items: center;
    min-height: 100vh;
}

.screen-1 {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    gap: 5rem;
    padding: 3rem;
}

@media (orientation: portrait) {
    .screen-1 {
        flex-direction: column;
    }
}

.headline-1 {
    font-family: "Bebas Neue", sans-serif;
    align-self: left;
    font-size: 10rem;
    line-height: 9rem;

}

.entry-div {
    display: flex;
    gap: 1.7rem;
    flex-direction: row;
    max-height: 20vh;
    width: 50vw;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (orientation: portrait) {
    .entry-div {
        width: 100%;
    }
}

.entry-image {
    min-height: 10vh;
    max-height: 10vh;
    min-width: 30%;
    max-width: 30%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 10;
    
    
}

.entry-image.orange {
    box-shadow: 0 0 5px 10px rgba(243, 103, 16, 0.5); 
}
.entry-image.red {
    box-shadow: 0 0 5px 10px rgba(255, 0, 0, 0.5); 
}
.entry-image.green {
    box-shadow: 0 0 5px 10px rgba(4, 108, 0, 0.5); 
}
.entry-image.blue {
    box-shadow: 0 0 5px 10px rgba(2, 2, 135, 0.5); 
}
.entry-image.pink {
    box-shadow: 0 0 5px 10px rgba(136, 0, 127, 0.5); 
}
.entry-image.light-blue {
    box-shadow: 0 0 5px 10px rgba(45, 121, 149, 0.5); 
}



@media (orientation: portrait) {
    .entry-image {
        display: none;
    }
}

.entry-arrow {
    height: 100%;
    border: 2px solid black;

    
    font-size: 2rem;

    padding-left: 2rem;
    padding-right: 2rem;

    text-align: left;
    font-family: "Bebas Neue", sans-serif;
    border-radius: 15px;
    flex-grow: 1;
    height: 10vh;
    
    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 2;
    
}


@media (orientation: portrait) {
    .entry-arrow {
        font-size: 1.5rem;
    }
}
/* @media (orientation: portrait) {
    .arrow {
        position: absolute;
        display: none;
    }
} */

.entry-arrow:hover {
    border: 10px solid rgb(27, 21, 88, 0);
    
}
.entry-arrow.blue {
    background: repeating-linear-gradient(
    45deg,
    #0d175c,
    #0d175c 10px,
    #3749b4 10px,
    #3749b4 20px
    );
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px 10px rgba(2, 2, 135, 0.5); 
}

.entry-arrow.orange {
    background: repeating-linear-gradient(
    45deg,
    #80370a,
    #80370a 10px,
    #a4592a 10px,
    #a4592a 20px
    );
    transition: all 0.3s ease-in-out;

    box-shadow: 0 0 5px 10px rgba(243, 103, 16, 0.5); 
}

.entry-arrow.green {
    background: repeating-linear-gradient(
    45deg,
    #044f1f,
    #044f1f 10px,
    #2e834d 10px,
    #2e834d 20px
    );
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px 10px rgba(4, 108, 0, 0.5); 
}

.entry-arrow.pink {
    background: repeating-linear-gradient(
    45deg,
    #64054f,
    #64054f 10px,
    #91337c 10px,
    #91337c 20px
    );
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px 10px rgba(136, 0, 127, 0.5); 
}

.entry-arrow.red {
    background: repeating-linear-gradient(
    45deg,
    #7b0303,
    #7b0303 10px,
    #cf3232 10px,
    #cf3232 20px
    );
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px 10px rgba(255, 0, 0, 0.5);
}

.entry-arrow.light-blue {
    background: repeating-linear-gradient(
    45deg,
    #00334f,
    #00334f 10px,
    #2c788a 10px,
    #2c788a 20px
    );
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px 10px rgba(45, 121, 149, 0.5);
}

.arrow {
    font-size: 5rem;
    font-weight: 100;
}

.subscreen-1 {
    gap: 1.3rem;
    display: flex;
    flex-direction: column;
}

button {
    padding: 0.5rem;
    border: 2px solid black;
    border-radius: 3px;
}


.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    border-bottom: 3px solid rgb(255, 255, 255);
    
    height: 10%;
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    
    background: linear-gradient(90deg, rgb(92, 111, 255) 0%, rgba(144, 133, 255, 0.5) 50%, rgba(133, 96, 255, 0.5) 100%);

    -webkit-backdrop-filter: blur(10px);
    padding-left: 10%;
    padding-right: 10%;
    position: fixed;
    z-index: 999;
    width: 100%;
}
.topnav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
@media (orientation: portrait) {
    .topnav-left {
        display: block;
        align-items: center;
        justify-items: center;
        width: 100%;

    }

    .navbuttons {
        overflow: hidden;
        position: fixed;
    }


}

.sidebar {
    padding-left: 15%;
    padding-right: 15%;
    width: 100%;
    
    overflow: hidden;
    position: fixed;
    height:90%;
    top: 10%;
    background: #372a9b;
    background: linear-gradient(90deg, rgba(55, 42, 155, 1) 0%, rgba(94, 84, 204, 1) 50%, rgba(63, 0, 92, 1) 100%);
    backdrop-filter: brightness(0.3) blur(10px);
    -webkit-backdrop-filter: brightness(0.3) blur(10px);
    z-index: 99;
    overflow: hidden;
    
    transform: translateX(-100%);
    transition: all 0.3s ease-out;
    opacity: 0;
    padding-top: 10vh;
}

.sidebar.active {
    transform: translateX(0);
    opacity: 1;
}

.navbuttons {
    display: flex;
    gap: 0.5rem;
    
}

.navbutton {
    background-color: rgba(165, 208, 255, 0.3);
    border-radius: 10px;
}

.navbutton.enabled {
    border: 2px solid white;
}

.sidebuttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    
}

@media (orientation: landscape) {
    .navbuttons {
        display: flex;
        gap: 0.5rem;
        opacity: 1;
        
    }

    .sidebar {
        display: none;
    }

    

    .burger-icon {
        display: none;
    }
}
  
@media (orientation: portrait) {
    .navbuttons {
        display: none;
        z-index:-5;
    }

    .burger-icon {
        position: absolute;
        top: 25%;
        left: 10%;
        cursor: pointer;
        font-size: 2rem;
        color: #fdedb1;
    }
}


.star {
    background-color: white;
    height:4px;
    width: 4px;
    border-radius: 2px;
    position: fixed;
    opacity: 0.3;
}

.mouseCircle {
    height: 300px;
    width: 300px;
    border-radius: 50%;

    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: invert(100%);
    -webkit-backdrop-filter: invert(100%);
    pointer-events: none;
    z-index: 1; 

    box-shadow: 0 0 30px 15px rgba(255,255,255,0.5); 
}
@media (orientation: portrait) {
    .mouseCircle {
        display: none;
        z-index:-5;
    }
}