@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', monospace;
    list-style: none;
    text-decoration: none;
}
header{ /*HEADER*/
    position: fixed;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 5%;
    background: rgba(0, 0, 0, 0);
    color: #fff
}
body{ /*BODY*/
    background: rgba(0, 0, 0, 0.822);
    text-shadow: -1.5px 2px 5px rgba(0, 0, 0, 0.952);
}
.neocom{ /*NAVIGATION BAR*/
    position: fixed;    /* Pin to the viewport */
    top: 0;             /* Align to top */
    left: 0;            /* Align to far left */
    width: 48px;       /* Define the width */
    height: 100vh;      /* Full screen height */
    background-color: #141414b4;    /* Dark space theme */
    backdrop-filter: blur(4px);     /* 2. The Gaussian Blur effect */
    -webkit-backdrop-filter: blur(4px); /* Required for Safari support */
    z-index: 1000;      /* Ensure it stays on top of other elements */
    display: flex;
    flex-direction: column;
}
.neocom-top {
    border-top: 2px solid rgba(59, 59, 59, 0.329); /* Subtle visual separation */
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.neocom-bottom {
    /* THIS IS THE KEY LINE */
    margin-top: auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(59, 59, 59, 0.329); /* Subtle visual separation */
    padding-top: 2px;
}
/* Ensure your images/links still look correct in the new containers */
.neocom img, .neocom a {
    margin: 0px 0;
    width: 48px; /* Adjust size if needed to fit the 48px bar */
    height: auto;
}
/* 1. Container stays the same */
.flip-container {
    width: 48px;
    height: 48px;
    perspective: 1000px;
    margin: 8px auto;
}

/* 2. Apply the infinite animation here */
.flip-card {
    position: relative; /* Changed from fixed to relative to stay in navbar flow */
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    
    /* Animation: Name | Duration | Timing | Iteration */
    animation: autoFlip 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* 3. The Animation Keyframes */
.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    
    /* Change: duration to 10s (slow), timing to linear, iteration to infinite */
    animation: slowSpin 10s linear infinite;
}

@keyframes slowSpin {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

/* Ensure backface is hidden so you only see the "active" side */
.flip-front, .flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* The back image needs to be pre-rotated so it faces the right way when it comes around */
.flip-back {
    transform: rotateY(180deg);
}

/* 4. Faces stay the same */
.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: block;
}

.flip-back {
    transform: rotateY(180deg);
}
.flip-container:hover .flip-card {
    animation-play-state: paused;
}
.neocom-circle-btn {
    width: 25px;             /* Slightly smaller to account for border thickness */
    height: 25px;
    background-color: transparent; /* Makes it hollow */
    border: 2px solid #555555;     /* The grey outline */
    border-radius: 50%;            /* Keeps it a circle */
    margin: 13px auto;
    transition: all 0.3s ease;
    box-sizing: border-box;        /* Ensures border stays inside the width/height */
}
.neocom-circle-btn2 {
    width: 24px;             /* Slightly smaller to account for border thickness */
    height: 24px;
    background-color: transparent; /* Makes it hollow */
    border: 7px solid #555555;     /* The grey outline */
    border-radius: 50%;            /* Keeps it a circle */
    margin: 13px auto;
    transition: all 0.3s ease;
    box-sizing: border-box;        /* Ensures border stays inside the width/height */
}
#neocom-clock {
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace; /* Space-age monospace */
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    cursor: default;
    background-color: rgba(0, 0, 0, 0.37);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
    width: 100%;
}
.neocom a{
    color: #fff;
    margin-left: 0px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
}
.neocom a:hover{
    filter: brightness(1.5) contrast(1.2) saturate(1.0) drop-shadow(0 0 5px #145fb4a4);
    transition: filter 0.5s ease-in-out;
}
/* style.css */
#neocom-tooltip {
    position: fixed;
    z-index: 9999;
    padding: 8px 12px;
    background: #141414b4; /* Matches your hover shadow color */
    color: white;
    font-size: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    transform: translateX(10px);
    /* THE STACKING LOGIC */
    display: flex;
    flex-direction: column; 
    gap: 4px; /* Space between the two lines */
    
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
/* The Speech Bubble Triangle */
#neocom-tooltip::before {
    content: "";
    position: absolute;
    left: -10px; 
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent #797979b4 transparent transparent;
}
.chat{ /*NAVIGATION BAR*/
    position: fixed;    /* Pin to the viewport */
    bottom: 0;             /* Align to bottom */
    right: 0;            /* Align to far right */
    z-index: 1000;      /* Ensure it stays on top of other elements */
}
/* The First Line (The Name) */
.tooltip-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #ffffff; /* Bright L.U.N.A. Blue */
}

/* The Second Line (The Subtext) */
.tooltip-sub {
    font-size: 11px;
    color: #b0b0b0; /* Dimmer grey/silver */
}
#menu-icon{
    color: #fff;
    font-size: 35px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}
.home{ /*home*/
    height:100%;
    width: 100%;
    min-height: 100vh;
	animation: gradient 15s ease infinite;
	height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1rem;
}
section .home{ /*WELCOME BOX*/
    padding: 0 15%;
}
.home{
    color: #fff;
}
.home-text h1{
    font-size: 34px;
    font-weight: 800;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.home-text h2{
    font-size: 26px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.home-text h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-left: 0px;
}
.home-text p{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 40px;
}
.home-text a{
    display: inline-block;
    color: #fff;
    background: rgba(0, 0, 0, 0.164);
    transition: all .55s ease;
    margin-right: 20px;
    border: 2px solid #fff;
}
.home-text a:hover{
    background: rgba(119, 119, 119, 0.295);
    transform: translateY(-4px);
}
.home-text a.eve-sso-login{
    display: inline-block;
    margin-top: 16px;
    margin-right: 0;
    padding: 0;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    line-height: 0;
}
.home-text a.eve-sso-login:hover{
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    transform: translateY(-2px);
    filter: brightness(1.08);
}
.home-text a.eve-sso-login:focus,
.home-text a.eve-sso-login:focus-visible,
.home-text a.eve-sso-login:active{
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    filter: brightness(1.12);
}
.home-text a.eve-sso-login img{
    display: block;
    width: 270px;
    height: 45px;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}
.home-img img{
    width: 70%;
    height: auto;
}
.secondary{ /*secondary*/
    height:100%;
    width: 100%;
    color: #fff;
    min-height: 100vh;
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    gap: 2rem;
    z-index: 5;
    grid-template-columns: repeat(2, 1fr);
}
section{ /*secondary*/
    padding: 0 19%;
}
.drake-img img{
    width: 100%;
    height: auto;
}
.secondary-text h1{
    font-size: 28px;
    font-weight: 800;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.secondary-text h2{
    font-size: 18px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.secondary-text h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-left: 0px;
}
.bustard-img img{
    width: 100%;
    height: auto;
}
.subject-text h1{
    font-size: 28px;
    font-weight: 800;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.subject-text h2{
    font-size: 18px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.subject-text h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-left: 0px;
}
.subject{ /*secondary*/
    height:100%;
    width: 100%;
    color: #fff;
    min-height: 100vh;
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    gap: 2rem;
    z-index: 5;
    grid-template-columns: repeat(2, 1fr);
}
.fenrir-img img{
    width: 100%;
    height: auto;
}
.creepy-text h1{
    font-size: 28px;
    font-weight: 800;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.creepy-text h2{
    font-size: 18px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}
.creepy-text h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-left: 0px;
}
.creepy{ /*secondary*/
    height:100%;
    width: 100%;
    color: #fff;
    min-height: 100vh;
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    gap: 2rem;
    z-index: 5;
    grid-template-columns: repeat(2, 1fr);
}
.icons{ /* ICONS CSS SECTION*/
    position: absolute;
    top: 50%;
    padding: 0 9%;
    transform: translateY(-50%);
    z-index: 2;
}
.icons i{
    display: block;
    margin: 25px 0;
    font-size: 30px;
    color: #fff;
    transition: all .50s ease;
}
.icons i:hover{
    color: rgb(255, 254, 254);
    transform: translateY(-5px);
    border-radius: 10px 10px 10px 10px;
}
.icons-plus i:hover{
    color: rgb(255, 254, 254);
    transform: translateY(-5px);
    background: rgb(0, 0, 0, 0.164);
    border-radius: 30px 30px 30px 30px;
}
.scroll-down{ /*SCROLL BUTTONS*/
    position: absolute;
    bottom: 6%;
    right: 9%;
}
.scroll-down i{
    display: block;
    padding: 12px;
    font-size: 25px;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.336);
    border-radius: 30px;
    transition: all .30s ease;
}
.scroll-down i:hover{
    transform: translateY(5px);
}
.scroll-up{
    position: absolute;
    bottom: 6%;
    right: 9%;
}
.scroll-up i{
    display: block;
    padding: 12px;
    font-size: 25px;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.336);
    border-radius: 30px;
    transition: all .30s ease;
}
.scroll-up i:hover{
    transform: translateY(-5px);
}
.hud-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    border-radius: 2px;
    padding: 12px;
    z-index: 2000;
    color: white;
}

.hud-title {
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: bold;
}
.hud-sec {
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8F2F69;
    font-weight: bold;
}
.hud-blitz {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: bold;
}
.hud-line {
    height: 1px;
    background: linear-gradient(90deg, #8F2F69, transparent);
    margin: 5px 0 10px 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.stat-row .label {
    font-size: 14px;
    color: #888;
}

.stat-row .value {
    font-size: 14px;
}
.color-split {
  background: linear-gradient(
    to right, 
    #b3ff00 0%, 
    #b3ff00 35%,   /* Green stops here */
    #ffffff 35%, 
    #ffffff 65%,   /* White separator stops here */
    #ff5100 65%, 
    #ff5100 100%   /* Orange starts here */
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Use viewport width */
    height: 100vh; /* Use viewport height */
    z-index: -1; 
    overflow: hidden;

    /* --- THE FIX --- */
    background-image: url('img/azbel.png') !important; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(12, 12, 17)
    
    /* If the image still doesn't show, the path is likely wrong. 
       Check if 'img' folder is in the same directory as CSS. */
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; 
    visibility: visible; 
    transition: opacity 0.8s ease-in-out;
}

/* Base overlay: ALWAYS displays scanlines and flicker */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.2) 50%
    ), 
    rgba(0, 0, 0, 0.01); 
    background-size: 100% 4px;
    
    pointer-events: none;
    z-index: 1; 
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0% { opacity: 0.97; }
    50% { opacity: 1; }
    100% { opacity: 0.98; }
}


.eve-chat-window {
  box-sizing: border-box;
  width: 450px;
  max-width: 100%;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 12px;
  color: #c0c6ce;

  /* True EVE NeoCom Dark Glass Backdrop */
  background-color: rgba(10, 14, 18, 0.267);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border: 1px solid rgba(248, 248, 248, 0.18);
  background-size: 6px 6px;

  line-height: 1.4;
  margin: 0;
  padding: 0;
}

/* Reset internal elements */
.eve-chat-window *, 
.eve-chat-window *::before, 
.eve-chat-window *::after {
  box-sizing: border-box;
}

/* --- Top Navigation Tabs --- */
.eve-chat-window .eve-chat-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px 4px 10px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eve-chat-window .tab-group {
  display: flex;
  gap: 12px;
}

.eve-chat-window .tab {
  color: #8f9397;
  position: relative;
  padding-bottom: 2px;
}

.eve-chat-window .tab.active {
  color: #ffffff;
}

/* Tab Underline for active tab */
.eve-chat-window .tab.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c8cccf;
}

.eve-chat-window .tab-controls {
  display: flex;
  gap: 10px;
  color: #c8cccf;
  font-size: 13px;
}

/* --- Chat Area Layout --- */
.eve-chat-window .eve-chat-body {
  display: flex;
  min-height: 120px;
}

/* Left Messages Column */
.eve-chat-window .eve-chat-messages {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.eve-chat-window .chat-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eve-chat-window .avatar {
  width: 34x;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0);
  background-color: #000;
  object-fit: cover;
}

/* Right Member List Column */
.eve-chat-window .eve-chat-members {
  width: 130px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.15);
}

.eve-chat-window .member-header {
  color: #c8cccf;
  font-size: 11px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.eve-chat-window .member-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eve-chat-window .member-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #c8cccf;
  padding: 1px 2px;
}

/* Small purple Corp badge */
.eve-chat-window .corp-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  background-color: #6b21a8;
  color: #ffffff;
  font-size: 8px;
  border-radius: 1px;
  flex-shrink: 0;
}

.eve-chat-window .member-item .name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* --- Bottom Purely Visual Input Box --- */
.eve-chat-window .chat-input-visual {
  width: 100%;
  height: 26px;
  background: rgba(0, 0, 0, 0.26);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  padding: 0 6px;
}
