* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    cursor: none;
}

:root {
    --line-width: 10px;
    --rotating-inner-circle-width: 10px;
    --rotating-outer-circle-width: 20px;
    --color-selected: #cbb131aa;
    --color-hover: #928440aa;
    --color-default: #63626eaa;
}

body {
    background-image: url("../img/hopes_peak_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100svh;
    overflow: hidden;
}

#room_right_bg {
    position: absolute;
    right: 0;
    height: 100%;
}

#top_line {
    position: absolute;
    left: -50px;
    top: 100px;
    width: 2000px;
    height: var(--line-width);
    rotate: -3deg;
    background-color: black;
}

#selection_line {
    position: absolute;
    width: var(--line-width);
    top: -50px;
    height: 2000px;
    left: 100px;
    rotate: 4deg;
    background-color: black;
}

#title_bg {
    position: absolute;
    background-color: #fff000;
    height: 200px;
    width: 2000px;
    rotate: -3deg;
    top: -110px;
    left: 200px;
}

#title_bg2 {
    position: absolute;
    background-color: #fff000;
    height: 143px;
    width: 50px;
    rotate: 4deg;
    left: 165px;
}

header h1 {
    position: absolute;
    font-size: 70px;
    font-family: ArchivoBlack;
    rotate: -3deg;
    top: 14px;
    left: 225px;
}

header h1::first-letter{
    font-size: 100px;
}

@keyframes rotating{
    from {
        rotate: 0deg;
    }
    to {
        rotate: 360deg;
    }
}

.rotating_circle{
    position: absolute;
    background-color: transparent;
    border: var(--rotating-inner-circle-width) solid #fff;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    border-right-color: transparent;
    border-left-color: transparent;
    left: 1150px;
    top: -230px;
    animation: rotating 5s infinite linear;
}

#rotating_outer_circle {
    width: 1600px;
    height: 1600px;
    top: -290px;
    left: 1115px;
    border-width: var(--rotating-outer-circle-width);
    animation: rotating 10s infinite linear;
}

footer {
    position: absolute;
    width: 2000px;
    height: 300px;
    background-color: black;
    bottom: -110px;
    left: -50px;
    rotate: 1deg;
}

footer p {
    color: #fff;
    position: absolute;
    top: 40px;
    left: 300px;
    font-weight: bold;
    font-size: 40px;
    rotate: -1deg;
}

#dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: 10px solid #000;
    border-radius: 50%;
    top: 320px;
    left: 133px;
}

#options {
    position: absolute;
    top: 300px;
    display: flex;
    width: 100%;
    flex-direction: column;
}

#options li {
    height: 50px;
    width: 100%;
    background: linear-gradient(90deg,#0000 0%, #000d 20%, #0000 100%);
    display: flex;
    align-items: center;
    border-width: 10px;
    border-style: solid;
    border-image: linear-gradient(to right, #fffa 0%, #ffff 50%, #fffa 100%) 1;
    border-bottom: none;
}

#options li:hover {
    background: none;
    background-color: #1cbcff;
    height: 55px;
}

#options li p {
    position: relative;
    left: 250px;
    font-weight: bold;
    font-size: 35px;
    color: #fff;
}

#options li button {
    position: relative;
    left: 700px;
    font-size: 35px;
    width: 500px;
    border-radius: 100px;
    border: none;
    background-color: var(--color-default);
    color: #fffc;
    font-weight: bolder;
}

#options li button:hover {
    background-color: var(--color-hover);
    color: #fff;
}

#options li:last-child {
    border-bottom: 10px solid #fff;
}

#pointer {
    position: absolute;
    pointer-events: none;
}

#pointer * {
    position: absolute;
    animation: rotating 5s infinite linear;
    width: 40px;
    top: -20px;
    left: -20px;
}

#pointer #pointer_hover {
    visibility: hidden;
}

#options li button#calculate_btn {
    left: 822px;
}

#game_options {
    display: flex;
    width: 500px;
    left: 245px;
    gap: 5px;
    position: absolute;
}

#options li div#game_options button.selected {
    background-color: var(--color-selected);
}

li select {
    width: 500px;
    font-weight: bolder;
    font-size: 35px;
    color: #fff;
    background-color: var(--color-default);
    border-radius: 100px;
    border: none;
    left: 945px;
    text-align: center;
    position: absolute;
}

li select:hover {
    background-color: var(--color-hover);
}

#character_select_dr2 {
    visibility: hidden;
}

#chapter_input, #line_input {
    width: 500px;
    font-size: 35px;
    color: #fff;
    background-color: var(--color-default);
    position: absolute;
    left: 945px;
    border-radius: 100px;
    border: none;
    text-align: center;
    font-weight: bolder;
}

#chapter_input:hover, #line_input:hover {
    background-color: var(--color-hover);
}

#options li button#reset_settings_btn, #options li button#out_path  {
    position: absolute;
    left: 945px;
}