
body {
    margin: 0;
    padding: 0;
    background-color: #100C08;
    color: #F4C430;
    font-family: 'Rubik', sans-serif;
    text-align: center;
	transition: background-color 0.6s ease;
}

body.no-fade {
    transition: none !important;
}

a:link {
    color: #77B5FE;
    text-decoration: none;
}

a:visited {
    color: #FFE9B3;
	text-decoration: none;
}

a:hover {
    color: #F4C430;
	text-decoration: none;
}

.banner-area {
    position: relative;
    height: 22vh;
    overflow: visible;
    margin: 0;
    padding: 0;
}

.banner-image {
	height: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.3s ease;
}

.menu-left-top {
    position: absolute;
    left: 25%;
    top:20%;
}

.menu-right-top {
    position: absolute;
    right: 25%;
    top: 20%;
}

.menu-left-bottom {
    position: absolute;
    left: 25%;
    bottom: 20%;
}

.menu-right-bottom {
    position: absolute;
    right: 25%;
    bottom: 20%;
}

.gnome-area {
    position: relative;
	text-align: center;
    height: 53vh;
    overflow: visible;
    margin: 0;
    padding: 0;
	display: flex;
	justify-content: center;
	align-items:center;
}

.gnome-image {
    height: 80%;
    max-height: 100%;
    width: auto;
	display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.3s ease;
}

.gnome-orbit {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.chaos-area {
    text-align: center;
    height: 5vh;
    margin: 0;
    padding: 0;
}

.chaos-image {
    max-height: 100%;
    width: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.3s ease;
}


.chaos-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #ff4f4f);
}

.license-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.license-text,
.license-footer {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.license-text {
    font-size: 0.55em;
}

.license-text a {
    color: #ffd27f;
}

.license-footer {
	margin: 0;
    padding: 0;
    font-size: 0.6em;
}

.license-gold {
    color: #F4C430;
    font-size: 0.8em;
}

.lantern-quote {
    color: #F4C430;
    font-size: 0.8em;
    text-align: center;
    text-shadow:
        0 0 5px #F4C430,
        0 0 10px #A7FC00,
        0 0 18px #00FF7F;
}

.menu-link,
.lantern-link {
    background: none;
    border: none;
    padding: 0;
    color: #F4C430;
    text-decoration: none;
	font-family: 'Rubik', sans-serif;
    transition: 0.3s ease;
}

.menu-link:hover,
.lantern-link:hover {
    background: #000000;
    color: #FBAB60;
    box-shadow:
        0 0 6px #ff4f4f,
        0 0 14px #77b5fe,
        0 0 26px #3a6dff;
}

.menu-container {
    display: inline-block;
	z-index: 10;
}


.menu-container .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    display: block;
    visibility: hidden;
    pointer-events: none;
    background: #111;
    border: 1px solid #3a6dff;
    padding: 6px;
    border-radius: 6px;
    z-index: 9999;
    text-align: left;
    width: max-content;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.menu-container .submenu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

.menu-container:hover .submenu {
   visibility: visible;
   pointer-events: auto;
   opacity: 1;
   transform: translateY(0);
}

.submenu a {
    background: none;
    border: none;
    color: #f0e6d2;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
	padding: 4px 12px;
	margin: 1px 0;
	display: block;
	line-height: 1.4;
}

.submenu a:hover {
    background: #000000;
    color: #FBAB60;
    text-shadow:
        0 0 6px #ff4f4f,
        0 0 14px #77b5fe,
        0 0 26px #3a6dff;
}

.submenu-container {
    position: relative;
}

.submenu-level2 {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;
    background: #111;
    border: 1px solid #3a6dff;
    padding: 6px;
    border-radius: 6px;
    width: max-content;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.submenu-container:hover .submenu-level2 {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}