/* Body Setup */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(180deg, #1D1D24, #020203);
    position: relative;
    overflow: hidden;
}

/* Background Diagonal Lines */
body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        135deg,
        transparent 0px,
        transparent 10px,
        rgb(45, 45, 45) 10px,
        rgb(45, 45, 45) 20px
    );
    opacity: 0.2;
}

/* Text Appearance */
body {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 100;
}

b {
    transition: transform 0.5s ease, text-shadow 0.5s ease;
    cursor: default;
    display: inline-block;
}

b:hover {
    transform: scale(1.025) translateY(-1px);
    text-shadow: 0px 10px 10px #020203;
}


/* H3 Appearance*/
h3 {
    color: rgb(215, 215, 215);
    font-size: 24;
    line-height: 1;
}

/* List Item Appearance */
li {
    color: rgb(215, 215, 215);
    font-weight: lighter;
    line-height: 3;
    font-size: 16
}


/* Image Setup */
.inline-image {
    position: relative;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.3));
}

.imgalternate {
    width: 200px;
    float: right;
}

/* Lift effect on hover */
.inline-image:hover {
    transform: scale(1.025) translateY(-3px);
    filter: drop-shadow(0px 20px 20px rgba(0, 0, 0, 0.35));
}

/* Top Bar */
.top-bar {
    display: flex;
    width: 80%;
    max-width: 1200px;
    min-width: 600px;
    padding: 5px;
    background-color: #0E0E12;
    color: white;
    text-align: left;
    z-index: 1;
    height: 80px;
    box-sizing: border-box;
    align-items: flex-end;
    position: relative;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
}


/* Logo Image */
.logo-image {
    width: auto;
    height: auto;
    max-width: 250px;
    max-height: 100px;
    padding: 5px;
    vertical-align: top;
    object-fit: contain; 
    transition: transform 0.5s ease;
}

/* Logo Image Hover Effect */
.logo-image:hover {
    transform: scale(0.95);
}

.unclickable:hover {
    transform: scale(1);
}

/* Container Setup */
.container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    min-width: 600px;
    box-sizing: border-box;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, #1B1B21, #09090B);
}

/* Column Appearance */
.column {
    flex: 1;
    margin: 0;
    padding: 20px;
    border-radius: 0;
    color: rgb(215, 215, 215);
    background-color: rgba(255, 255, 255, 0);
    text-align: left;
    position: relative;
    overflow: visible;
}

.scrollable-box {
    max-height: 90vh; 
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px; 
    box-sizing: border-box;
}

#highlight-column {
    background-color: rgba(255, 255, 255, 0.02);
    text-align: right;
}

#submenu-column {
    background-color: rgba(0, 0, 0, 0.1);
    text-align: right;
}

#submenu-column {
    flex: 0;
    flex-basis: 0%;
}

/* Column Appearance */
.column {
    flex: 1;
    margin: 0;
    padding: 20px;
    border-radius: 0;
    color: rgb(215, 215, 215);
    background-color: rgba(255, 255, 255, 0);
    text-align: left;
    position: relative;
}

/* Add borders after first column */
.column::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-right: 2px dotted rgba(255, 255, 255, 0.2);
    height: auto;
}

/* Remove the border from the last column */
.column:last-child::after {
    display: none; 
}

/* Menu Selector */
.menu-selector {
    position: absolute;
    left: calc((100% / 3) * 2);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

/* Menu Options */
.menu-option {
    width: 135px;
    padding: 5px;
    text-decoration: none;
    font-weight: bold;
    color:rgb(215, 215, 215);
    background-color: black;
    outline: 1px solid rgb(215, 215, 215);
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    text-align: center;
    box-sizing: border-box;
    margin: 1;
}

/* Menu Hover */
.menu-option:hover {
    background-color: #1b1b1b;
    outline: 2px solid;
    transform: scale(1.05);
}

.current {
    color: rgb(255, 170, 170);
    background-color: #1b1b1b;
}

.disabled {
    transform: scale(1.05);
    color: rgb(255, 170, 170);
    background-color: #1b1b1b;
    outline: 2px solid rgb(215, 215, 215);
    pointer-events: none;
    cursor: default;
}

/* Submenu Option */
.submenu-option {
    display: flex;
    align-items: center;
    padding: 1px;
    text-decoration: none;
    color: rgb(215, 215, 215);
    background-color: rgb(215, 215, 215, 0);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.submenu-option:hover {
    background-color: rgb(215, 215, 215, 0.01);
    transform: scale(1.05);
}

.selected {
    color: rgb(255, 170, 170);
    background-color: rgba(215, 215, 215, 0.03);
    font-weight: bold;
    transform: scale(1.05);
    pointer-events: none;
    cursor: default;
}

.submenu-option img.submenu-icon {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.submenu-option span {
    font-size: calc(1vw + 0.25em);
    font-weight: thin;
    text-wrap: nowrap;
}

/* Tooltip Container */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 2;
    overflow: visible;
}

/* Tooltip Text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #29292c;
    color: #fff;
    text-align: center;
    box-shadow: 0px 10px 10px #040404;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 3;
    bottom: 125%; 
    left: 50%;
    margin-left: -150px;
    overflow: visible;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Show Tooltip */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

button {
    padding: 15px 15px;
    font-size: 16px;
    text-align: center;
    background-color: rgb(56, 64, 83);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 5px 5px #080808;
    transition: background-color 0.5s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

button .play-icon { 
    width: 30px;
    height: 30px;
    pointer-events: none;
}

button:hover {
    background-color: #4645a0;
    transform: translateY(-3px);
    box-shadow: 0px 10px 10px #080808;
}

