﻿.menu {
 width: 100%;
 height: 32px;
 background: linear-gradient(to right, #000, #444);
 display: flex;
 cursor: default;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.menu-item {
 flex: 1;
 text-align: center;
 position: relative;
 line-height: 32px;
 transition: background-color 0.3s ease;
 text-transform: uppercase;
 user-select: none;
}
.menu-item::after {
 content: "";
 position: absolute;
 top: 0;
 right: 0;
 width: 2px;
 height: 100%;
 background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
 display: block;
}
.menu-item:last-child::after {
 display: none;
}
.menu-item:hover {
 background-color: rgba(255, 255, 255, 0.1);
}
.submenu {
 display: none;
 position: absolute;
 top: 32px;
 background: linear-gradient(135deg, #1a1a1a, #444);
 white-space: nowrap;
 min-width: 150px;
 padding: 0;
 opacity: 0;
 transform: translateY(-10px);
 transition: opacity 0.3s ease, transform 0.3s ease;
 z-index: 1001;
 text-transform: uppercase;
}
.menu-item:hover .submenu {
 display: block;
 opacity: 1;
 transform: translateY(0);
}
.submenu-item {
 display: block;
 height: 32px;
 padding-left: 15px;
 padding-right: 15px;
 position: relative;
 transition: background-color 0.3s ease, transform 0.3s ease;
 line-height: 32px;
}
.submenu .submenu-item {
 text-decoration: none;
}
.submenu-item:hover {
 background-color: rgba(0, 0, 0, 0.1);
 transform: translateX(9px);
}
.submenu-item .indicator {
 position: absolute;
 left: -9px;
 top: 0;
 width: 9px;
 height: 32px;
 background: linear-gradient(to bottom, #1e90ff, #000080);
 transform: scale(0);
 transition: transform 0.3s ease;
}
.submenu-item:hover .indicator {
 transform: scale(1);
 background: linear-gradient(to bottom, #ff0000, #8b0000);
}
.mainmenufont1 {
 font-family: 'GeometricSlabserif712-Bold';
 font-size: 11pt;
 text-transform: uppercase;
 background: linear-gradient(to top, rgb(174, 174, 174), rgb(255, 255, 255));
 filter: drop-shadow(0 0 2px rgba(0, 0, 0, 1.0));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 display: inline-block;
}
.mainmenufont3 {
 font-size: 11pt;
 background: linear-gradient(to top, #111111 5%, #d4af37 55%);
 filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 1.0));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 display: inline-block;
}
.fa {
 font-size: 11pt;
 line-height: 1;
 padding: 2px 0;
 margin-right: 9px;
 background: linear-gradient(to top, #111111 5%, #1e90ff 55%);
 filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 1.0));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 display: inline-block;
}