:root {
    --slider1_color: #00ffff;
    --slider2_color: #00ff00;
    --slider3_color: #ffff00;
    --slider4_color: #ff0000;
}

/***********************/
/*** Main            ***/
/***********************/

header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 50px;
    font-size: 1.5em;
    top: 0;
    left: 0;
    z-index: 300;
    box-shadow: 5px 5px 15px 5px #000000;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(129,129,129,1) 25%, rgb(160, 160, 160) 35%, rgba(160,160,160,1) 65%, rgba(129,129,129,1) 75%, rgba(0,0,0,1) 100%);
}

header > span {
    width: 100%;
    margin: 10px 0 0 150px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1),
             -2px -2px 10px rgba(0, 0, 0, 1);
}

#user_field {
    display: flex;
    color: #fff;
    font-size: 12px;
    width: 250px;
    margin-top: 10px;
}

#user_field > img {
    margin-right: 30px;
    width: 60px;
    height: 60px;
    box-shadow: 5px 5px 15px 5px #000000;
}

#user_field > span {
    display: inline-block;
    width: 150px;
    height: 20px;
}

#user_login {
    margin-top: 10px;
    width: 100px;
}

nav {
    display: flex;
    position: fixed;
    width: 60px;
    height: 100%;
    z-index: 301;
    top: 0;
    left: 0;
    box-shadow: 5px 5px 15px 5px #000000;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(129,129,129,1) 25%, rgb(160, 160, 160) 35%, rgba(160,160,160,1) 65%, rgba(129,129,129,1) 75%, rgba(0,0,0,1) 100%);
}

#img_logo {
    position: fixed;
    margin-top: 25px;
    width: 200px;
    z-index: 501;
}

h1 {
	margin: 250px 0 0 15px;
    font-size: 30px;
    color: #fff;
    writing-mode : vertical-rl;
    text-orientation : upright;
    transition: color 2s;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1),
             -2px -2px 10px rgba(0, 0, 0, 1);
}

/***********************/
/*** Slider          ***/
/***********************/

#slider_1,
#slider_2,
#slider_3 {
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: -290px;
    width: 400px;
    height: 200px;
    background-color: #000000;
    border-radius: 0px 20px 20px 0px;
    opacity: 0.8;
    box-shadow: 5px 5px 15px 5px #000000;
    transition: left 1s;
    z-index: 300;
}

#slider_1:hover,
#slider_2:hover,
#slider_3:hover {
    left: 60px;
    transition: left 1s;
}

#slider_1:hover #slider_1_title,
#slider_2:hover #slider_2_title,
#slider_3:hover #slider_3_title {
    opacity: 0;
    transition: opacity 1s;
}

#slider_1_content,
#slider_2_content,
#slider_3_content {
    display: inline-block;
    font-size: 25px;
    padding-left: 30px;
    padding-right: 10px;
    width: 310px;
    overflow-y: auto;
}

#slider_1_title,
#slider_2_title,
#slider_3_title {
    display: flex;
    justify-content: center;
    height: 100%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.5em;
    margin-right: 10px;
    opacity: 1;
    transition: opacity 1s;
}

/*** Slider 1 ***/
#slider_1 {
    top:250px;
}

#slider_1_title {
    color: var(--slider1_color);
}

#slider_1_content img {
    width: 50px;
    height: auto;
}

#slider_1_content ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

#slider_1_content ul li {
    list-style-type: none;
    margin: 6px;
}

#slider_1_content a {
    text-decoration: none;
    color: #00ffff;
}

#slider_1_content  a:hover {
    text-shadow: 5px 5px 15px rgba(0, 255, 255, 1),
             -5px -5px 15px rgba(0, 255, 255, 1);
}

#slider_1_content::-webkit-scrollbar-thumb {
    border-radius: 0;
    border: 1px solid var(--slider1_color);
}

#slider_1:hover ~ nav h1 {
    color: var(--slider1_color);
    transition: color 2s;
}

/*** Slider 2 ***/
#slider_2 {
    top: 460px;
}

#slider_2_content a {
    color: var(--slider2_color);
}

#slider_2_title {
    color: #00ff00;
}

#slider_2_content  a:hover {
    text-shadow: 5px 5px 15px rgba(0, 255, 0, 1),
             -5px -5px 15px rgba(0, 255, 0, 1);
}

#slider_2_content::-webkit-scrollbar-thumb {
    border-radius: 0;
    border: 1px solid #06FF16;
}

#slider_2:hover ~ nav h1 {
    transition: color 2s;
    color: var(--slider2_color);
}

/*** Slider 3 ***/
#slider_3 {
    top: 670px;
}

#slider_3_content a {
    text-decoration: none;
    color: var(--slider3_color);
}

#slider_3_content  a:hover {
    text-shadow: 5px 5px 15px rgba(255, 255, 0, 1),
             -5px -5px 15px rgba(255, 255, 0, 1);
}

#slider_3_title {
    color: var(--slider3_color);
}    

#slider_3_content::-webkit-scrollbar-thumb {
    border-radius: 0;
    border: 1px solid var(--slider3_color);
  }

#slider_3:hover ~ nav h1 {
    transition: color 2s;
    color: var(--slider3_color);
}

/***********************/
/*** Movie - Show    ***/
/***********************/

#movie_title {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    height: 50px;
    margin: 10px auto 30px auto;
    padding: 0 10px;
    border-radius: 30px;
    background-color: rgba(150, 150, 150, 0.8);
    box-shadow: 5px 5px 5px 5px #000000;
}

#movie_title > h2 {
    font-size: 25px;
}

#movie_head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: sticky;
    top: -225px;
    width: 750px;
    margin: 0 auto 30px;
    border-radius: 30px;
    background-color: rgba(150, 150, 150, 0.8);
    box-shadow: 5px 5px 15px 5px #222;
    z-index: 250; 
}

#movie_head_pics {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 10px;
    padding: 20px 0;
}

#movie_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 55px;
    left: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 50px;
    z-index: 299;
    box-shadow: 5px 5px 15px 5px #000000;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(129,129,129,1) 25%, rgb(160, 160, 160) 35%, rgba(160,160,160,1) 65%, rgba(129,129,129,1) 75%, rgba(0,0,0,1) 100%);
}

#movie_nav ul {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
}

#movie_nav a {
    font-size: 1.2em;
    color: var(--slider1_color);
    text-shadow: 2px 2px 10px rgba(0, 0, 255, 1), -2px -2px 10px rgb(0, 0, 255);
}

#coverpic,
#titlescreen {
    height: auto;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 5px 5px 15px 5px #222;
}

#coverpic:hover,
#titlescreen:hover {
    transform: scale(1.05);
    transition: all 0.3s;
    box-shadow: 10px 10px 15px 5px #000000;
}

#coverpic {
    width: 180px;
}

#titlescreen {
    width: 480px;
}

#movie_info {
    display: flex;
    flex-wrap: wrap;
    width: 750px;
    background-color: rgba(150, 150, 150, 0.9);
    border-radius: 30px;
    box-shadow: 5px 5px 15px 5px #222;
    margin: 20px auto;
}

#movie_info hr {
    width: 100%;
}

.minfo {
    display: inline-block;
    width: 300px;
    margin-left: 10px;
    font-weight: bold;
    vertical-align: top;
    margin-top: 20px;
    margin-left: 100px;
    white-space: normal;
}

.mdata {
    display: inline-block;
    margin-top: 20px;
    width: 250px;
    white-space: normal;
}

.mtext {
    line-height: 1.5em;
    text-align: justify;
    margin: 20px 50px;
}

.wrap_coords {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    height: 80%;
    background-color: rgba(150, 150, 150, 0.9);
    border-radius: 30px;
    box-shadow: 5px 5px 15px 5px #222;
    margin: 20px auto 20px;
}

.screeninfo {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
}

.screeninfo1 {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto;
	grid-template-columns: 150px auto;
    width: 90%;
    gap: 0.3em;
    margin: 10px 0 15px 15px;
}

.screeninfo2 {
    display: flex;
    align-items: center;
    width: 30%;
    margin-bottom: 25px;
}

.grid_1,
.grid_3,
.grid_5,
.grid_7,
.grid_9 {
    font-weight: bold;
}

.grid_11,
.grid_12 {
    margin-top: 5px;
}

.grid_11 img {
    margin: 15px;
    box-shadow: 3px 3px 15px 5px #222;
}

.grid_11 img:hover {
    transform: scale(1.05);
    transition: all 0.3s;
    box-shadow: 6px 6px 15px 5px #000000;
}

.screenpics {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-template-rows: 90%;
    justify-content: space-evenly;
    width: 100%;
}

.screenpics a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.screenpics img {
    width: 90%;
    height: auto;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 15px 5px #222;
}

.screenpics img:hover {
    transform: scale(1.05);
    transition: all 0.3s;
    box-shadow: 10px 10px 15px 5px #000000;
}