﻿
:root

        * {
            box-sizing: border-box;
            margin: 0px;
            padding: 0px;
            font-size: 25px;
            font-family: Tahoma, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            
        }

body {


/* ===== TOP LOGO ===== */

.ow-header {
  position: sticky;
  top: 0px;
  background: radial-gradient(circle at top left, #101428 0, #05060a 55%, #000 100%);
  border-bottom: 10px solid rgba(185, 245, 255, 0.85);
  
}

.ow-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  
}

.ow-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #b9f5ff;
  
  
}

.ow-brand span {
	text-shadow: 4px 4px 10px rgba(0, 255, 255, 0.8);
	font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 30px;
  
}



/* ===== STICKY TOP MENU ===== */
.top-menu {
    width: 100%;
    background: #000;
    padding: 10px 0;
}


.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #47F9FF;  /* #FF5EE7; */ /* #ffe7ff; */ /* #c7e7ff; */
/*    opacity: 0.8;  */
    display: flex;
    gap: 30px;
    justify-content: center;
}

.top-menu li a {
    font-family: 'Audiowide';
    font-weight: bold;
    text-decoration: none;
    color: #00e5ff;
    padding: 8px 12px;
    transition: 0.3s;
}

.top-menu li a:hover {
    color: #fff;
    border-top: 8px solid #00e5ff;
    text-shadow: 0 0 8px #00e5ff;
}

#topMenu a.active {
    color: #fff;
    text-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff;
    border-bottom: 8px solid #00e5ff;
    padding-bottom: 4px;
}




/* ===== STICKY LEFT MENU ===== */



.side-menu {
  position: fixed;
  top: 106px;
  left: 0;
  width: 270px;
  height: 100vh;
  background: #0D101F; /* #0d0d0d; */
  padding-top: 100px;
  border-right: 10px solid rgba(185, 245, 255, 0.85); /* 10px solid #1a1a1a; */
  overflow-y: auto;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  position: relative;
  text-decoration: none;
  color: #47F9FF;  /* #FF5EE7; */ /* #ffe7ff; */ /* #c7e7ff; */
/*  opacity: 0.8;   */
  transition: color 0.2s ease, opacity 0.2s ease;

}

.side-menu ul li {
  margin: 0;
  border-bottom: 5px solid rgba(185, 245, 255, 0.85);
}

.side-menu ul li a {
  display: block;
  padding: 14px 20px;
  color: #47F9FF;  /* #e6e6e6; */
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  border-left: 4px solid transparent;
  transition: 0.25s ease;
}

.side-menu ul li a:hover {
  background: #1a1a1a;
  border-left: 20px solid #00eaff; /* rgba (185, 245, 255, 0.85);  */  /* solid #00eaff; */ /* neon accent */
  color: #FF5EE7; /* #00eaff; */
  text-shadow: 0 0 8px #D100B2;
  text-decoration: none;
/*  opacity: 1;   */
}


#sideMenu a.active {
    background: #00e5ff;
    color: #0000ff;
    font-weight: bold;
    border-radius: 4px;
}




.content {
  margin-left: 24px;
  padding: 0px;
  background: #0D101F;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}


#contentFrame {
    width: 100%;
    height: 100vh;
    margin-left: 250px;
    border: none;
}

}