/* main.css — Nodist global styles */
@viewport {
  width: device-width ;
  zoom: 1.0 ;
}

/*nodes*/
.nodii{
width:10vw;
height:10vh;
background-image: url("https://nodist.pro/m/img/nodelife/3DNODES1.1.png");
background-size:10vw;
align-items:center;
text-align:center;
aspect:-ratio:1/1;
}
/* ── Variables ── */
:root {
    --white:        #f0f4f8;
    --sky-top:      #dbeeff;
    --horizon-top:  #e8f4ff;
    --horizon-mid:  #c5e4ff;
    --horizon-glow: #7ec8ff;
    --node-fill:    rgba(255,255,255,0.85);
    --node-border:  1px solid rgba(80,160,255,0.5);
    --node-glow:    rgba(80,160,255,0.25);
    --accent:       #2a7fff;
    --accent2:      #00c8ff;
    --text-main:    #1a2a4a;
    --text-dim:     rgba(0,0,120,0.9);
    --line:         1px solid rgba(80,160,255,0.15);
    --grid:         rgba(100,180,255,0.18);
    --grid-bright:  rgba(80,160,255,0.35);
    --font-mono:    'Arial', bolder;
    --font-display: 'Arial', sans-serif;
                                                  }
/* ── Base ── */
body{
    background-color:#000;
    max-width:100vw;
    min-height: 100vh;
    font-family: var(--font-mono);
    color: var(--text-main);
    margin: 0px; 
    overflow-x:hidden;
    overflow-y:scroll;
    height:auto;
}
    
/* ── Headwrap ── */
.headwrap {
    
    align-items: center;
    border-bottom: 1px solid var(--line);
    /*background: rgba(255,255,255,0.6);*/
    backdrop-filter: blur(10px);
    position: sticky;
    z-index: 100;
	width:99vw;
	display:flex;
    justify-content: center;
	clear: both;
	height:auto;
	border-bottom: 1px solid var(--line);
   /* background: rgba(255,255,255,0.4);*/
	border-radius:10px;
    backdrop-filter: blur(8px);
	min-height:4vh;
    padding-top: 20px;
}

.headwrap img {
    height: 4rem;
    width: auto;
	float:left;
	margin-right:10px;
}

/* ── Nav ── */
.mainnav {
	float:right;
    align-items: center;
    gap: 1.5rem;
    position:inline;
    padding: 0.6rem 1.5rem;
   clear:both;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
	margin-top:15px;
    	width:100%;
}

.mainnav ul {
    list-style: none;
    display: flex;
    justify-content:space-evenly;

}
a{
    color:#fff;
    transform:scale(120%);2
}
.nt-pp-label,.mainnav ul li a {
    flex-wrap: nowrap;  
    color: var(--text-dim);
    display:block;
    text-decoration: none;
	padding:5px;
	border: 1px solid rgba(0,127,255,0.08);
	border-radius: 20px;
	box-shadow: -1px 1px 2px #1a2a4a, inset -3px 3px 3px #FFF;
    transition: color 0.2s ease;
    background-color:rgba(255,255,255,0.8);
}

.mainnav ul li a:hover {
    color: var(--accent);
    transform: scale(110%);
    transition: scale 2s;
}

.mainnav .search {

    gap: 0.4rem;
    margin-left: auto;
	float:right;
	clear:none;
    right:20px;
}

.mainnav .search input {
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--line);
    padding: 0.3rem 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s ease;
}

.mainnav .search input:focus {
    border-color: rgba(0,127,255,0.8);
}

.mainnav .search button {
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--line);
    padding: 0.3rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    transition: all 0.2s ease;
}

.mainnav .search button:hover {
    background: rgba(0,127,255,0.8);
    border-color: rgba(0,127,255,0.4);
}

/* ── Page container ── */
#page {
    width: auto;
    min-height: calc(100vh - 6rem);
    overflow-y:scroll;
}
.nodewrap {
    width: 100vw;
    height: 100vh;
    position:absolute;
    z-index:-98;
    vertical-align:middle;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    text-align: center; 
    aspect-ratio: 1 / 1;    /* Keeps it square */
    box-sizing:border-box;
    padding:10%;
    transform-style: preserve-3d; /* Allows child elements to stay 3D */
    display: flex;
    flex-wrap: wrap; /* Allows nodes to flow like your floats did */
    justify-content: center;
    align-items: center;
    perspective: 100vw;
    overflow-y:scroll;
    overflow-x:hidden;
}

/* ── Footnotes ── */
.footnotes {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--line);
    text-align: center;
}

/* ── Global error ── */
.page-error {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: rgba(0,127,255,0.5);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 2rem;
    text-align: center;
}

/* ── Links ── */
a {
    text-decoration: none;
    font-weight: bolder;
}

a:hover {
transform: scale(120%);
transition: scale 2s;
    
}
.login a {
	font-size:14px;
    color:#222;
	padding:10px;
	border: 1px solid rgba(0,127,255,0.08);
    background-color: rgba(100,100,255,0.7);
	border-radius:30px;
	box-shadow: -1px 1px 2px #1a2a4a inset, inset -3px 3px 1px #FFF;
	margin-left:5px;
	margin-right:5px;
	float:right;
	clear:none;
}
.login:hover{
	scale:1.2;
    transition: scale 2s;
    color: #FFF;
}

.addnodelink{
	font-size:14px;
	padding:5px;
	border: 1px solid rgba(0,127,255,0.08);
	border-radius: 20px;
	box-shadow: -1px 1px 2px #1a2a4a, inset -3px 3px 3px #FFF;
	margin-left:5px;
	margin-right:5px;
}
/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0,127,255,0.2);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0,127,255,0.4);
}

/* ── Selection ── */
::selection {
    background: rgba(0,127,255,0.15);
    color: var(--text-main);
}
/* registration */
#reg-wrap {
    width: 99%;
    max-width: 540px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Raleway', sans-serif;
}

.reg-step { display: none; }
.reg-step.active { display: block; animation: stepIn 0.4s ease; }

@keyframes stepIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.reg-step h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--text-main, #1a2a4a);
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.reg-step h2 span {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--accent, #2a7fff);
    font-weight: 300;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.reg-field { margin-bottom: 1.2rem; }

.reg-field label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim, rgba(30,60,120,0.5));
    margin-bottom: 0.4rem;
}

.reg-field input[type='text'],
.reg-field input[type='email'],
.reg-field input[type='password'],
.reg-field input[type='date'],
.reg-field select,
.reg-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,127,255,0.2);
    padding: 0.7rem 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--text-main, #1a2a4a);
    outline: none;
    transition: border-color 0.3s;
    backdrop-filter: blur(4px);
}

.reg-field input:focus,
.reg-field select:focus,
.reg-field textarea:focus {
    border-color: rgba(0,127,255,0.5);
}

.reg-field.check {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reg-field.check label {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: none;
    color: var(--text-main, #1a2a4a);
}

.reg-field input[type='checkbox'] {
    width: 18px; height: 18px;
    accent-color: var(--accent, #2a7fff);
    cursor: pointer;
    flex-shrink: 0;
}

.reg-photo-note {
    font-size: 0.65rem;
    color: var(--text-dim, rgba(30,60,120,0.5));
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
}

.reg-agreement {
    border-left: 2px solid rgba(0,127,255,0.2);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.8rem;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.reg-agreement p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--text-main, #1a2a4a);
    font-weight: 300;
}

.reg-agreement-num {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--accent, #2a7fff);
    margin-bottom: 0.8rem;
    display: block;
}

.reg-thankyou {
    text-align: center;
    padding: 2rem 0;
}

.reg-thankyou .big {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--text-main, #1a2a4a);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.reg-thankyou .sub {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--accent, #2a7fff);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.reg-thankyou .further {
    font-size: 0.8rem;
    color: var(--text-dim, rgba(30,60,120,0.5));
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.reg-thankyou .further a {
    color: var(--accent, #2a7fff);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,127,255,0.3);
}

.reg-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: none;
    border: 1px solid rgba(0,127,255,0.3);
    color: var(--accent, #2a7fff);
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.reg-btn:hover {
    background: rgba(0,127,255,0.06);
    border-color: rgba(0,127,255,0.6);
}

.reg-btn.agree {
    border-color: rgba(0,180,100,0.4);
    color: #1a7a40;
    width: 100%;
    padding: 1rem;
}

.reg-btn.agree:hover {
    background: rgba(0,180,100,0.06);
    border-color: rgba(0,180,100,0.7);
}

.reg-btn.go {
    background: var(--accent, #2a7fff);
    color: white;
    border-color: var(--accent, #2a7fff);
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
}

.reg-btn.go:hover { background: #1a6fee; }

.reg-progress {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.reg-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(0,127,255,0.15);
    transition: background 0.3s;
}

.reg-dot.done   { background: rgba(0,127,255,0.4); }
.reg-dot.active { background: var(--accent, #2a7fff); }

.reg-error {
    font-size: 0.72rem;
    color: #c0392b;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}
#an-wrap {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
}

.an-title {
    font-family: var(--font-display, 'Rajdhani', sans-serif);
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    letter-spacing: 0.15em;
    color: var(--text-main, #1a2a4a);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.an-title span {
    display: block;
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    color: var(--accent, #2a7fff);
    font-weight: 400;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.an-field { margin-bottom: 1.5rem; }

.an-field label {
    display: flex;
    justify-content: space-between;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim, rgba(30,60,120,0.5));
    margin-bottom: 0.5rem;
}

.an-field label span {
    color: var(--accent, #2a7fff);
    font-size: 0.5rem;
}

.an-field input[type='text'],
.an-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,127,255,0.2);
    padding: 0.8rem 1rem;
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.85rem;
    color: var(--text-main, #1a2a4a);
    outline: none;
    transition: border-color 0.3s;
    backdrop-filter: blur(4px);
    resize: none;
}

.an-field input:focus,
.an-field textarea:focus {
    border-color: rgba(0,127,255,0.5);
}

.an-field textarea { height: 6rem; }

.an-submit {
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: var(--accent, #2a7fff);
    border: 1px solid var(--accent, #2a7fff);
    color: white;
    padding: 0.9rem 2.5rem;
    cursor: auto;
    transition: all 0.3s;
}

.an-submit:hover { background: #1a6fee; }

.an-login-prompt {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-dim, rgba(30,60,120,0.5));
    text-transform: uppercase;
    padding: 2rem 0;
}

.an-login-prompt a {
    color: var(--accent, #2a7fff);
    text-decoration: none;
}


.top-ten-field {
    position: relative;
    width: 95vw;
    min-height: 600px; /* Ensure there is actual room to float */
    min-height: 85vh;
    overflow: scroll;
    border: 1px solid #d0e4ff;
}

#connection-canvas {
    position: absolute;
    inset: 0;           /* Ensures it covers the whole field */
    width: 99vw;        /* Explicit width */
    height: 100%;       /* Explicit height */
    z-index: 0;         /* Keep it behind bubbles (index 2) */
    pointer-events: none; 
}

.synapse-line {
    stroke: #FFF;    /* Solid blue to test visibility */
    stroke-width: 2px;
    opacity: 0.9; 
    z-index:1;      /* Subtle but visible */
}

.node-bubble {
    position: absolute;
    z-index: 2;
    
    /* These are now driven directly by the PHP loop */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 0 0 5px white;
   
  
    background: var(--node-fill);
    border: var(--node-border);
    border-radius: 50%;
    padding: 15px;
    box-shadow: var(--node-glow);
    
    /* The animation now uses translate to drift from its assigned left/top */
    animation: floating-drift var(--dur) ease-in-out var(--delay) infinite alternate;
    transition: box-shadow 0.3s ease;
}

.node-label {
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    pointer-events: none;
	text-shadow: 0 0 5px white;
	background-color:rgba(255,255,255,0.7);
	border-radius:10px;
	padding:2px;
}

.node-score {
    color: #007bff;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.7;
}
#colony-root {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Keeps the 'cluster' central */
    align-items: center;
    gap: 15px; /* Adjust this to control how much they overlap or touch */
    perspective: 1000px; /* Optional: gives a slight 3D depth to the floating */
}


#colony-root {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 60px 20px;
    background: transparent; /* Sits over your honeycomb mesh */
}

.cn-node {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    
    /* The "Orb" styling */
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,1) 0%, rgba(220,240,255,0.85) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 -4px 10px rgba(0, 100, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: colonyFloat infinite ease-in-out;
    will-change: transform;
}

.cn-node:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 48px rgba(0, 120, 255, 0.3);
    z-index: 10;
}

.cn-inner {
    padding: 15px;
    text-align: center;
    color: #336699;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.cn-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.cn-value {
    display: block;
    font-size: 0.8rem;
    margin-top: 4px;
    color: #007bff;
    font-weight: bold;
}

/* Smooth organic movement */
@keyframes colonyFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(4px, -8px); }
    50% { transform: translate(-4px, 6px); }
    75% { transform: translate(6px, 4px); }
}

@keyframes floating-drift {
    from { transform: translate(0, 0); }
    to { transform: translate(20px, 25px); }
}
#ln-wrap {
    width: 99vw;
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem 1.5rem;
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
}

.ln-title {
    font-family: var(--font-display, 'Rajdhani', sans-serif);
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    letter-spacing: 0.15em;
    color: var(--text-main, #1a2a4a);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.ln-title span {
    display: block;
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    color: var(--accent, #2a7fff);
    font-weight: 400;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.ln-field { margin-bottom: 1.2rem; }

.ln-field label {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim, rgba(30,60,120,0.5));
    margin-bottom: 0.5rem;
}

.ln-field input {
    width: 100%;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,127,255,0.2);
    padding: 0.8rem 1rem;
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.85rem;
    color: var(--text-main, #1a2a4a);
    outline: none;
    transition: border-color 0.3s;
    backdrop-filter: blur(4px);
}

.ln-field input:focus { border-color: rgba(0,127,255,0.5); }

.ln-submit {
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: var(--accent, #2a7fff);
    border: 1px solid var(--accent, #2a7fff);
    color: white;
    padding: 0.9rem 2.5rem;
    cursor: auto;
    transition: all 0.3s;
    width: 100%;
    margin-top: 0.5rem;
}

.ln-submit:hover { background: #1a6fee; }

.ln-error {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: #c0392b;
    margin-bottom: 1rem;
}

.ln-register {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--text-dim, rgba(30,60,120,0.5));
    text-transform: uppercase;
    margin-top: 1.5rem;
    text-align: center;
}

.ln-register a {
    color: var(--accent, #2a7fff);
    text-decoration: none;
}
.layout-full{
	width: 75vw;
	height:75vh;
}

/* ── Node Navigator (Colony) ── */
#colony-root {
    z-index: 5;
    width: 99vw;
    height: 85vh;
    position: relative;
    background: linear-gradient(180deg, var(--sky-top) 0%, var(--horizon-top) 60%, var(--horizon-mid) 100%);
    overflow: hidden;
    background-image: url('/m/img/colonybg.svg');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}
#colony-canvas {
    position: absolute;
    inset: 0;
    width: 99vw;
    height: 100%;
    pointer-events: none;
}
#colony-tagline {
    position: absolute;
    top: 14px;
    left: 16px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(30,60,120,0.35);
    pointer-events: none;
}
.cn-node {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(220,238,255,0.92);
    border: var(--node-border);
    box-shadow: 0 0 18px var(--node-glow), inset 0 10px 10px rgba(255,255,255,0.9);
    cursor: pointer;
    text-align: center;
    padding: 6px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.cn-node:hover {
    box-shadow: 0 0 36px rgba(80,160,255,0.5), inset 0 20px 20px rgba(255,255,255,0.9);
    transform: translate(-50%,-50%); 
	scale:1.2;
	transition: scale 0.3s;
    z-index: 10;
}
.cn-node.cn-heat {
    border-color: rgba(255,120,0,0.5);
    box-shadow: 0 0 20px rgba(255,100,0,0.2) inset;
}
.cn-name {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
}
.cn-score {
    color: rgba(0,127,255,0.6);
    letter-spacing: 0.15em;
    margin-top: 1px;
	font-size:14px;
}
#cn-nav {
    position: absolute;
    top: 12px;
    right: 20px;
    width: 240px;
    background: rgba(220,238,255,0.92);
    border: 1px solid rgba(80,160,255,0.3);
    border-radius: 6px;
    backdrop-filter: blur(14px);
    z-index: 50;
    overflow: hidden;
	box-shadow: -3px 3px 10px rgba(0,127,200,0.3) inset;

}
#cn-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    border-bottom: var(--line);
    cursor: pointer;
    user-select: none;
}
#cn-nav-title {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-dim);
	font-size:14px;
}
#cn-nav-toggle {
    color: rgba(0,127,255,0.5);
}
#cn-nav-body { padding: 0.8rem; }
.cn-sec { margin-bottom: 0.8rem; }
.cn-lbl {
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(30,60,120,0.8);
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size:12px;
}
.cn-val {
    color: var(--accent);
    font-weight: 700;
}
input[type=range] {
    width: 100%;
    height: 2px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(80,160,255,0.25);
    border-radius: 1px;
    outline: none;
    cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    border: 1px solid rgba(255,255,255,0.8);
    cursor: pointer;
}
input[type=range]::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    border: 1px solid rgba(255,255,255,0.8);
    cursor: pointer;
}
.cn-pips {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
	font-size: 10px;
    padding: 0 1px;
}
.cn-pip {
    color: rgba(30,60,120,0.25);
    text-align: center;
    transition: color 0.15s;
    flex: 1;
}
.cn-pip.on {
    color: var(--accent);
    font-weight: 700;
}
.cn-search {
    width: 100%;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(80,160,255,0.2);
    padding: 0.4rem 0.6rem;
    color: var(--text-main);
    outline: none;
    letter-spacing: 0.1em;
    transition: border-color 0.2s;
}
.cn-search:focus { border-color: rgba(0,127,255,0.5); }
.cn-search::placeholder { color: rgba(30,60,120,0.3); }
#cn-nav-go {
    width: 100%;
    margin-top: 0.6rem;
    padding: 0.5rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: rgba(0,127,255,0.15);
    border: 1px solid rgba(0,127,255,0.3);
    color: #1a4a9a;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 2px;
}
#cn-nav-go:hover {
    background: rgba(0,127,255,0.25);
    border-color: rgba(0,127,255,0.5);
}
#cn-count {
    position: absolute;
    bottom: 32px;
    left: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(30,60,120,0.8);
    pointer-events: none;
}
#cn-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(215,232,255,0.75);
    backdrop-filter: blur(6px);
    border-top: var(--line);
    padding: 0 16px;
	font-size:10px;
    letter-spacing: 0.25em;
    color: rgba(30,60,120,0.9);
    text-transform: lowercase;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
	box-shadow: 0px 3px 10px rgba(0,127,255,0.6) inset;
}
#cn-tick {
    display: inline-block;
    white-space: nowrap;
    animation: cn-ticker 28s linear infinite;
    overflow: hidden;
}
@keyframes cn-ticker {
    from { transform: translateX(95vw); }
    to   { transform: translateX(-95vw); }
}
.cn-ripple {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,180,255,0.4);
    pointer-events: none;
    animation: cn-ripple 1s ease-out forwards;
}
@keyframes cn-ripple {
    from { width:0; height:0; opacity:0.7; transform:translate(-50%,-50%); }
    to   { width:100px; height:100px; opacity:0; transform:translate(-50%,-50%); }
}

.node-page{
	width:95vw;
    max-width:95vw;
	margin-top:20px;
	float:left;
	clear:both;
	height:auto;
    overflow-y: auto;
}
.left-panel{
    transform-style: preserve-3d;
    transform: rotateY(10deg);
    border:1px solid rgba(80,160,255,0.5);
    border-radius:10px;
    border-top:0px;
    float:left;
    display: block;
    width:20vw;    
	background-color:rgba(255,255,255,0.3);
	margin-left:10px;
	border-radius: 20px;
	padding:5px;
    transition:transform 3s, width 3s;
    margin-left:10px;
    }

.left-panel:hover, .left-panel:focus{
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    
    transition:transform 3s, width 3s;	
    backdrop-filter: blur(20px);
}


.right-panel, .center-column, .left-panel{
	background-color:rgba(0,0,0,0.3);
	transform-style: preserve-3d;
    transform: rotateY(10deg);  
    border: 1px solid rgba(80,160,255,0.5);border-radius:10px;border-top:0px;float:right;padding:5px;	backdrop-filter: blur(20px);
    margin:auto;
    box-shadow: 3px -3px inset #333;
}


.right-panel:hover, .right-panel:focus{
	width:20vw;
	transform: rotateY(0deg);
	backdrop-filter: blur(20px);
	background-color: rgba(255,255,255,0.6);
	transition:transform 3s, width 3s;
    right:5px;
}
.center-column {
    border:1px solid rgba(80,160,255,0.5);
    border-radius:10px;
    padding:5px;
	width:65vw;
    height:auto;
    min-height:99vh;
    overflow-y: auto;
    float:left;
    clear:none;
    display:inline-block;
}
.left-wrap{
perspective: 100vw;
height:auto;
float:left;
display:block;
}
.left-wrap:hover{
perspective: 100vw;
transform: rotateZ(0deg) ;
transition: transform 3s width:2;
}

.right-wrap{
	perspective: 100vw;
    float:left;
    min-width:20vw;
}

.lf-wrap{
	width:20vw;
	float: left;
	clear: none;
}

/* Kill the fixed min/max widths from nodecluster.css on mobile */
@media (max-width: 768px) {
    .left-panel  { min-width: unset !important; max-width: unset !important; }
    .right-panel { min-width: unset !important; }
}