@import url("https://fonts.googleapis.com/css2?family=Jura:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");

:root {
 --site-bg: #0b1210;
 --site-bg-2: #071318;
 --site-panel: rgba(17, 24, 23, 0.95);
 --site-panel-strong: rgba(7, 19, 24, 0.96);
 --site-input: rgba(11, 20, 17, 0.98);
 --site-border: rgba(255, 255, 255, 0.06);
 --site-text: #cfe9ff;
 --site-text-strong: #eaffff;
 --site-text-soft: #9aa4a0;
 --site-neon: #00ffd5;
 --site-neon-2: #7ef9ff;
 --site-green: #00ff9d;
 --site-blue: #4cc9ff;
 --site-red: #ff6b6b;
 --site-yellow: #ffcc00;
 --site-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

html,
body {
 cursor: none;
}

body {
 margin: 0 auto;
 width: 100%;
 max-width: 1280px;
 min-height: 100vh;
 font-family: "Jura", sans-serif;
 font-size: 15px;
 color: var(--site-text);
 position: relative;
 background: none;
 z-index: 0;
}

/* фиксированный фон без background-attachment: fixed */
body::before {
 content: "";
 position: fixed;
 inset: 0;
 z-index: -1;
 pointer-events: none;

 background-image:
 linear-gradient(rgba(0,255,200,0.07) 1px, transparent 1px),
 linear-gradient(90deg, rgba(0,255,200,0.07) 1px, transparent 1px),
 radial-gradient(circle at 20% 20%, rgba(0,255,200,0.08), transparent 45%),
 radial-gradient(circle at 80% 70%, rgba(0,140,255,0.06), transparent 50%),
 url('/mon/img/1234567.png');

 background-size:
 60px 60px,
 60px 60px,
 cover,
 cover,
 cover;

 background-repeat:
 repeat,
 repeat,
 no-repeat,
 no-repeat,
 no-repeat;

 background-position:
 center,
 center,
 center,
 center,
 center;

 will-change: transform;
 transform: translateZ(0);
}

.cursor-arrow {
 position: fixed;
 top: 0;
 left: 0;
 width: 18px;
 height: 18px;
 pointer-events: none;
 z-index: 999999;
 transform: translate(-50%, -50%);
 background:
 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2300ffc8' d='M4 2l16 10-7 1 3 7-3 2-3-8-6 4z'/%3E%3C/svg%3E")
 no-repeat center;
 background-size: contain;
 filter:
 drop-shadow(0 0 6px rgba(0, 255, 200, 0.8))
 drop-shadow(0 0 12px rgba(0, 120, 255, 0.4));
 transition: filter 0.2s ease;
}

body.is-hover a,
body.is-hover button,
body.is-hover .clickable {
 cursor: none;
}

body.is-hover .cursor-arrow {
 background:
 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fc6899' d='M4 2l16 10-7 1 3 7-3 2-3-8-6 4z'/%3E%3C/svg%3E")
 no-repeat center;
 filter:
 drop-shadow(0 0 8px rgba(252, 104, 153, 0.9))
 drop-shadow(0 0 16px rgba(252, 104, 153, 0.5));
}

::-webkit-scrollbar {
 width: 8px;
}

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

::-webkit-scrollbar-thumb {
 background: linear-gradient(180deg, rgba(0, 255, 200, 0.25), rgba(0, 120, 255, 0.25));
 border-radius: 10px;
 box-shadow:
 0 0 6px rgba(0, 255, 200, 0.2),
 0 0 10px rgba(0, 120, 255, 0.15);
}

::-webkit-scrollbar-thumb:hover {
 background: linear-gradient(180deg, rgba(0, 255, 200, 0.45), rgba(0, 120, 255, 0.45));
}

* {
 scrollbar-width: thin;
 scrollbar-color: rgba(0, 255, 200, 0.3) transparent;
}

a {
 color: var(--site-neon);
 text-decoration: none;
 transition: 0.2s;
 text-shadow: 0 0 8px rgba(0, 255, 213, 0.15);
}

a:hover {
 color: var(--site-green);
 text-shadow:
 0 0 8px rgba(0, 255, 157, 0.4),
 0 0 16px rgba(0, 255, 157, 0.2);
}

h1 {
 font-family: "Orbitron", sans-serif;
 font-size: 15px;
 line-height: 26px;
 padding: 5px 10px;
 border-radius: 6px 6px 0 0;
 background: rgba(16, 31, 30, 0.92);
 border: 1px solid rgba(0, 255, 234, 0.08);
 box-shadow:
 0 0 6px rgba(0, 255, 234, 0.35),
 0 0 18px rgba(0, 255, 234, 0.2),
 inset 0 0 12px rgba(0, 255, 234, 0.05);
 color: #cffff6;
 text-shadow:
 0 0 6px rgba(2, 248, 125, 0.7),
 0 0 14px rgba(2, 248, 125, 0.5);
}

h2 {
 margin-top: 20px;
 font-size: 15px;
 color: var(--site-neon-2);
 border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

h2.first {
 margin-top: 0;
}

strong {
 font-weight: 700;
 color: #ffffff;
 text-shadow: 0 0 6px rgba(255, 255, 255, 0.08);
}

ul,
ol {
 margin-left: 20px;
}

ul li {
 list-style-type: square;
 color: var(--site-text);
}

.clear {
 clear: both;
}

.clearfix::before,
.clearfix::after {
 content: "";
 display: block;
 height: 0;
 overflow: hidden;
}

.clearfix::after {
 clear: both;
}

.clearfix {
 zoom: 1;
}

#header {
 margin: 10px 0;
}

#logo {
 float: left;
 margin-left: 5px;
}

.social {
 float: right;
 width: 140px;
 margin-top: 22px;
 text-align: right;
}

#vk_like {
 float: right;
 margin-top: 9px;
}

#social-vk,
#social-twitter {
 width: 40px;
 height: 40px;
}

.c0 {
 width: 40px;
}

.c1 {
 width: 40px;
 padding-top: 5px;
}

.c2,
.c3,
.c4,
.c5,
.c6,
.c7,
.c8,
.c9,
.c10 {
 color: var(--site-text);
 font-size: 14px;
 font-weight: 600;
 text-align: center;
}

.c2 { width: 150px; }
.c3 { width: 150px; }
.c4 { width: 50px; }
.c5 { width: 50px; }
.c6 { width: 50px; }
.c7 { width: 120px; }
.c8 { width: 70px; }
.c9 { width: 120px; }
.c10 { width: 150px; }

.contract {
 font-weight: 700;
 color: var(--site-yellow);
 text-shadow: 0 0 6px rgba(255, 204, 0, 0.2);
}

.pc {
 width: 15px;
 padding-left: 10px;
 text-align: right;
 color: #7f8c8d;
 font-size: 11px;
}

.pc1 {
 width: 405px;
 padding: 0 10px;
 color: var(--site-text);
}

.pc2 {
 width: 75px;
 padding: 0 10px;
 color: var(--site-text);
 text-align: right;
}

thead tr {
 background: rgba(7, 19, 24, 0.95);
 border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

tbody tr {
 border-bottom: 1px solid rgba(255, 255, 255, 0.04);
 transition: 0.2s;
}

tbody tr:hover {
 background: transparent;
 box-shadow: none;
}

tbody tr:hover > td {
 background: rgba(20, 28, 25, 0.96);
 box-shadow: inset 0 0 20px rgba(0, 255, 200, 0.03);
}

tr {
 line-height: 15px;
}

i.icons {
 position: absolute;
 width: 16px;
 height: 16px;
 margin-top: 5px;
 opacity: 0.8;
 background: url(/img/icons.png);
}

i.vote {
 background-position: 0 0;
}

i.voted {
 background-position: -16px 0;
}

i.steam {
 margin-left: -20px;
 opacity: 0.5;
 background-position: -32px 0;
}

tr:hover i.steam {
 opacity: 1;
}

a.connect {
 position: relative;
 width: 16px;
 height: 16px;
}

span.steam {
 margin: 0 5px 0 0;
 padding: 0 5px;
 font-size: 10px;
}

span.steam a {
 color: var(--site-text);
}

a.map {
 color: var(--site-text);
 text-decoration: none;
 border-bottom: 1px solid transparent;
 transition: 0.2s;
}

a.map:hover {
 color: var(--site-neon);
 border-bottom-color: var(--site-neon);
}

.comments-wrap {
 margin-top: 20px;
 padding: 16px;
 background: rgba(10, 10, 15, 0.6);
 border: 1px solid rgba(0, 255, 200, 0.12);
 border-radius: 16px;
 backdrop-filter: blur(18px);
 box-shadow: var(--site-shadow);
 font-family: Arial, sans-serif;
}

.comments-title {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin-bottom: 14px;
 font-size: 16px;
 font-weight: 700;
 letter-spacing: 1px;
 color: var(--site-neon);
}

.comments-count {
 padding: 3px 10px;
 font-size: 12px;
 color: var(--site-neon);
 background: rgba(0, 255, 200, 0.12);
 border: 1px solid rgba(0, 255, 200, 0.25);
 border-radius: 999px;
}

.comments-list {
 display: flex;
 flex-direction: column;
 gap: 10px;
}

.comments-list > div {
 animation: fadeInUp 0.25s ease;
}

@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(8px);
 }

 to {
 opacity: 1;
 transform: translateY(0);
 }
}

.comments-pages {
 margin-top: 12px;
 text-align: center;
 color: #aaa;
}

.comments-form {
 margin-top: 16px;
 padding-top: 14px;
 border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comments-form-title {
 margin-bottom: 8px;
 font-weight: 600;
 color: var(--site-blue);
}

.comments-form textarea,
.comments-form input[type="text"] {
 width: 100%;
 padding: 10px;
 color: #fff;
 background: rgba(255, 255, 255, 0.05);
 border: 1px solid rgba(0, 255, 200, 0.2);
 border-radius: 10px;
 outline: none;
 transition: 0.2s;
}

.comments-form textarea {
 min-height: 90px;
 resize: none;
}

.comments-form textarea:focus,
.comments-form input:focus {
 border-color: var(--site-neon);
 box-shadow: 0 0 12px rgba(0, 255, 213, 0.2);
 transform: scale(1.01);
}

.comments-form input[type="submit"] {
 margin-top: 8px;
 padding: 8px 14px;
 color: #000;
 font-weight: 700;
 cursor: pointer;
 background: var(--site-neon);
 border: none;
 border-radius: 999px;
 transition: 0.2s;
}

.comments-form input[type="submit"]:hover {
 transform: scale(1.05);
 box-shadow: 0 0 14px rgba(0, 255, 213, 0.4);
}

.comm-card {
 margin: 12px 0;
 padding: 14px;
 background: rgba(255, 255, 255, 0.04);
 border: 1px solid rgba(0, 255, 200, 0.15);
 border-radius: 16px;
 backdrop-filter: blur(10px);
 box-shadow: 0 0 20px rgba(0, 255, 200, 0.05);
 transition: 0.25s ease;
}

.comm-card:hover {
 transform: translateY(-2px);
 border-color: rgba(0, 255, 200, 0.35);
 box-shadow: 0 0 25px rgba(0, 255, 200, 0.15);
}

.comm-card-avatar {
 float: left;
 margin-right: 12px;
}

.comm-avatar-img {
 width: 42px;
 height: 42px;
 object-fit: cover;
 border: 2px solid rgba(0, 120, 255, 0.5);
 border-radius: 50%;
}

.comm-card-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 8px;
}

.comm-name {
 color: var(--site-blue);
 font-weight: 600;
}

.comm-info {
 margin-left: 6px;
 font-size: 12px;
 opacity: 0.6;
}

.comm-message {
 padding-left: 52px;
 color: #eaeaea;
 font-size: 14px;
 line-height: 1.5;
}

.comm-answer {
 margin-top: 8px;
 padding: 8px;
 background: rgba(0, 255, 200, 0.05);
 border-left: 2px solid #00ffc8;
 border-radius: 6px;
}

.u-rate-btn {
 margin: 0 4px;
 color: #aaa;
 text-decoration: none;
 transition: 0.2s;
}

.u-rate-btn.up:hover {
 color: #00ff99;
}

.u-rate-btn.down:hover {
 color: #ff4d6d;
}

.comm-answer-link {
 color: #00cfff;
 font-size: 13px;
 text-decoration: none;
}

.comm-answer-link:hover {
 text-shadow: 0 0 8px rgba(0, 207, 255, 0.6);
}

.comm-form-box {
 margin-top: 20px;
 padding: 14px;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid rgba(0, 255, 200, 0.15);
 border-radius: 16px;
 backdrop-filter: blur(12px);
}

.comm-form-inner {
 display: flex;
 gap: 12px;
 align-items: flex-start;
}

.comm-form-body {
 flex: 1;
 min-width: 0;
}

.comm-form-avatar img,
.comm-form-avatar svg {
 width: 42px;
 height: 42px;
 border: 2px solid rgba(0, 120, 255, 0.5);
 border-radius: 50%;
}

.comm-form-input {
 display: block;
 width: 100%;
 padding: 10px;
 color: #fff;
 background: rgba(0, 0, 0, 0.25);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 10px;
 box-sizing: border-box;
 outline: none;
 transition: 0.2s;
}

.comm-form-input:focus {
 border-color: #00ffc8;
 box-shadow: 0 0 10px rgba(0, 255, 200, 0.3);
}

.comm-textarea {
 width: 100%;
 min-width: 100%;
 max-width: 100%;
 min-height: 120px;
 resize: none;
}

.comm-form-actions {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-top: 10px;
}

.comm-form-btn {
 padding: 10px 16px;
 color: #000;
 font-weight: 700;
 cursor: pointer;
 background: linear-gradient(90deg, #00ffc8, #00a2ff);
 border: none;
 border-radius: 10px;
}

.comm-option {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 cursor: pointer;
 opacity: 0.7;
}

.comm-option:hover {
 opacity: 1;
}

.new-navigation {
 margin-bottom: 0;
 padding: 0;
 background: rgba(7, 19, 24, 0.96);
 border: 1px solid var(--site-border);
 border-radius: 8px;
 backdrop-filter: blur(4px);
}

.new-navigation ul {
 margin: 0;
 padding: 0;
}

.new-navigation ul li {
 position: relative;
 float: left;
 display: block;
 margin: 10px 15px 0 0;
 padding-left: 34px;
 opacity: 0.7;
 cursor: pointer;
 transition: 0.2s;
}

.new-navigation ul li.current,
.new-navigation ul li:hover {
 opacity: 1;
}

.new-navigation ul li a {
 color: var(--site-neon-2);
 font-family: "Orbitron", sans-serif;
 font-size: 12px;
 text-decoration: none;
 text-shadow: 0 0 6px rgba(0, 255, 220, 0.3);
 transition: 0.2s;
}

.new-navigation ul li a:hover {
 color: var(--site-neon);
 text-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.new-navigation ul li p {
 font-size: 11px;
 color: var(--site-text-soft);
}

.new-navigation ul li#nav-vip,
.new-navigation ul li#nav-add {
 float: right;
}

.dex-inform-box {
 position: relative;
 display: inline-block;
 margin: 8px 0;
 padding: 12px 16px;
 overflow: hidden;
 color: #b9fff0;
 font-size: 13px;
 line-height: 1.55;
 background: linear-gradient(180deg, rgba(8, 12, 16, 0.85), rgba(5, 8, 10, 0.95));
 border: 1px solid rgba(0, 255, 200, 0.18);
 border-radius: 16px;
 backdrop-filter: blur(12px);
 box-shadow:
 0 0 0 1px rgba(0, 255, 200, 0.05),
 0 10px 35px rgba(0, 0, 0, 0.45),
 inset 0 0 12px rgba(0, 255, 200, 0.05);
 text-shadow: 0 0 8px rgba(0, 255, 200, 0.35);
 transition: 0.25s ease;
}

.dex-inform-box::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 2px;
 background: linear-gradient(90deg, transparent, #00ffd0, transparent);
 opacity: 0.9;
}

.dex-inform-box::after {
 content: "";
 position: absolute;
 inset: 0;
 background: radial-gradient(circle at 20% 0%, rgba(0, 255, 200, 0.12), transparent 60%);
 opacity: 0.4;
 pointer-events: none;
}

.dex-inform-box:hover {
 transform: translateY(-3px) scale(1.01);
 color: #eafffa;
 border-color: rgba(0, 255, 200, 0.4);
 box-shadow:
 0 0 25px rgba(0, 255, 200, 0.25),
 0 15px 50px rgba(0, 0, 0, 0.5),
 inset 0 0 16px rgba(0, 255, 200, 0.08);
}

#new-inform-box {
 position: relative;
 float: left;
 width: 949px;
 margin: 0;
 padding: 16px 20px;
 overflow: hidden;
 color: #e6fff7;
 font-family: Arial, sans-serif;
 font-size: 15px;
 line-height: 1.5;
 background: linear-gradient(180deg, rgba(17, 24, 23, 0.95), rgba(10, 14, 13, 0.98));
 border: 1px solid rgba(0, 255, 180, 0.15);
 border-radius: 12px;
 box-shadow:
 0 0 20px rgba(0, 255, 180, 0.05),
 inset 0 0 10px rgba(0, 255, 180, 0.03);
}

#new-inform-box::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 2px;
 background: linear-gradient(90deg, transparent, #00ffc3, transparent);
 opacity: 0.8;
}

#new-inform-box b {
 color: #00ffc3;
 font-weight: bold;
}

#new-inform-box:hover {
 border-color: rgba(0, 255, 180, 0.35);
 box-shadow:
 0 0 25px rgba(0, 255, 180, 0.12),
 inset 0 0 12px rgba(0, 255, 180, 0.05);
 transition: 0.3s ease;
}

.paginator {
 display: flex;
 justify-content: center;
 gap: 10px;
 margin: 20px 0;
 padding: 10px;
 text-align: center;
 font-size: 14px;
 color: var(--site-neon-2);
 font-family: "Orbitron", "Roboto Mono", monospace;
}

.paginator a {
 padding: 6px 12px;
 color: var(--site-neon-2);
 font-weight: 700;
 letter-spacing: 1px;
 text-decoration: none;
 background: rgba(20, 28, 25, 0.98);
 border: 1px solid var(--site-border);
 border-radius: 6px;
 box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
 transition: 0.2s;
}

.paginator a:hover {
 color: var(--site-neon);
 transform: scale(1.08);
 border-color: rgba(0, 255, 200, 0.2);
 box-shadow: 0 0 12px rgba(0, 255, 200, 0.1);
}

.paginator span {
 padding: 6px 12px;
 color: var(--site-neon);
 font-weight: 700;
 letter-spacing: 1px;
 background: rgba(20, 28, 25, 0.98);
 border: 1px solid rgba(0, 255, 200, 0.15);
 border-radius: 6px;
 box-shadow: 0 0 10px rgba(0, 255, 200, 0.05);
}

.crypto-text {
 padding: 12px 18px;
 color: #d3fcb3;
 font-family: "Rajdhani", sans-serif;
 font-size: 11px;
 background: rgba(20, 35, 30, 0.95);
 border: 1px solid rgba(0, 255, 170, 0.2);
 border-radius: 8px;
 text-shadow: 0 0 6px rgba(0, 255, 170, 0.25);
 transition: 0.3s ease;
}

.crypto-text:hover {
 box-shadow: 0 0 12px rgba(0, 255, 170, 0.15);
 border-color: rgba(0, 255, 170, 0.4);
}

.chat_box_body {
 float: left;
 width: 218px;
 padding-left: 5px;
 margin-bottom: 0;
}

.chat_box_title {
 display: flex;
 align-items: center;
 height: 34px;
 padding-left: 10px;
 color: var(--site-neon-2);
 font-size: 18px;
 background: rgba(15, 23, 20, 0.95);
 border: 1px solid var(--site-border);
 border-radius: 10px;
 text-shadow: none;
}

.chat_box_title div {
 margin-left: 60px;
}

.mcBlock1,
.mcBlock2 {
 max-width: 218px;
 margin: 3px 2px;
 padding: 4px 6px;
 color: #e5e7eb;
 background: rgba(15, 23, 20, 0.98);
 border: 1px solid var(--site-border);
 border-radius: 8px;
 word-wrap: break-word;
 transition: 0.2s;
}

.mcBlock1:hover,
.mcBlock2:hover {
 border-color: rgba(0, 255, 200, 0.15);
 box-shadow: 0 0 10px rgba(0, 255, 200, 0.05);
}

.mcTime {
 float: right;
 font-size: 9px;
 color: #9ca3af;
}

a.mcName:link,
a.mcName:visited,
a.mcName:active,
a.mcName:hover {
 color: var(--site-neon-2);
 font-size: 11px;
 text-shadow: none;
}

.chat-form {
 margin-top: 10px;
 padding: 10px;
 color: #e5e7eb;
 background: rgba(15, 23, 20, 0.98);
 border: 1px solid var(--site-border);
 border-radius: 14px;
}

.chat-grid-2 {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 6px;
 margin-bottom: 6px;
}

.chat-grid-2 input,
.chat-message-box textarea {
 width: 100%;
 padding: 8px;
 color: #fff;
 background: rgba(11, 20, 17, 0.98);
 border: 1px solid var(--site-border);
 border-radius: 10px;
 outline: none;
}

.chat-message-box textarea {
 min-height: 90px;
 resize: vertical;
}

.app {
 display: flex;
 justify-content: center;
 padding-top: 40px;
}

.card {
 width: 100%;
 padding: 16px;
 background: rgba(17, 27, 23, 0.98);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 14px;
 backdrop-filter: blur(4px);
}

.app input,
.app select {
 width: 120px;
 margin-bottom: 10px;
 padding: 10px;
 color: #fff;
 background: rgba(11, 20, 17, 0.98);
 border: 1px solid var(--site-border);
 border-radius: 8px;
 outline: none;
}

.app button {
 width: 100%;
 margin-bottom: 10px;
 padding: 10px;
 font-weight: bold;
 cursor: pointer;
 background: rgba(0, 255, 136, 0.95);
 border: none;
 border-radius: 8px;
 transition: 0.2s;
}

.app button:hover {
 opacity: 0.85;
}

.onlineBox {
 position: relative;
 overflow: hidden;
 width: 100%;
 max-width: 200px;
 margin-top: 10px;
 padding: 10px;
 background: linear-gradient(180deg, #0b0f14, #0a0e12);
 border: 1px solid rgba(0, 255, 200, 0.1);
 border-radius: 10px;
 backdrop-filter: blur(10px);
 box-shadow:
 0 0 25px rgba(0, 255, 200, 0.08),
 0 20px 40px rgba(0, 0, 0, 0.5);
 transition: 0.25s;
}

.onlineBox:hover {
 border-color: rgba(0, 255, 200, 0.35);
 box-shadow:
 0 0 25px rgba(0, 255, 200, 0.15),
 0 25px 60px rgba(0, 0, 0, 0.6);
}

.onlineTitle {
 margin-bottom: 8px;
 padding-bottom: 6px;
 color: var(--site-neon);
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.5px;
 text-transform: uppercase;
 border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 text-shadow: 0 0 10px rgba(0, 255, 200, 0.25);
}

.onlineList {
 max-height: 140px;
 overflow: auto;
 padding: 8px;
 color: #cfd6e4;
 font-size: 12px;
 line-height: 1.5;
 background: rgba(10, 14, 18, 0.85);
 border: 1px solid rgba(0, 255, 200, 0.08);
 border-radius: 8px;
 box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.03);
}

.onlineList a {
 position: relative;
 display: inline-block;
 padding-left: 12px;
 color: var(--site-neon-2);
 text-decoration: none;
}

.onlineList a::before {
 content: "";
 position: absolute;
 left: 0;
 top: 50%;
 width: 5px;
 height: 5px;
 background: var(--site-green);
 border-radius: 50%;
 transform: translateY(-50%);
 box-shadow: 0 0 8px rgba(0, 255, 157, 0.5);
}

.main-menu {
 display: flex;
 gap: 20px;
 padding: 0;
 list-style: none;
}

.menu-item {
 position: relative;
}

.menu-item span {
 cursor: pointer;
 font-weight: 600;
 color: var(--site-green);
}

.dropdown {
 position: absolute;
 top: 100%;
 left: 0;
 display: none;
 min-width: 200px;
 padding: 10px;
 background: #061b16;
 border: 1px solid rgba(0, 255, 170, 0.15);
 border-radius: 10px;
}

.dropdown li {
 list-style: none;
 margin: 5px 0;
}

.dropdown a {
 color: #ccc;
 font-size: 14px;
}

.dropdown a:hover {
 color: var(--site-green);
}

.menu-item:hover .dropdown {
 display: block;
}

.highlight span {
 color: var(--site-yellow);
}

/* =========================
 Global Table Hover Override
 Hard override for legacy site pages
========================= */

table tbody tr:hover,
tbody tr:hover {
 background: transparent !important;
 box-shadow: none !important;
}

table tbody tr:hover > td,
table tbody tr:hover > th,
tbody tr:hover > td,
tbody tr:hover > th {
 background: rgba(20, 28, 25, 0.96) !important;
 box-shadow: inset 0 0 20px rgba(0, 255, 200, 0.03) !important;
}

/* Scanner table fix inside global CSS */

.scanner-app .table-panel {
 border: 1px solid rgba(255, 255, 255, 0.08) !important;
 border-radius: 14px !important;
 background: #0b1320 !important;
 overflow: hidden !important;
}

.scanner-app .table-wrap {
 width: 100% !important;
 overflow: hidden !important;
 border: 1px solid rgba(255, 255, 255, 0.06) !important;
 border-radius: 14px !important;
 background: #0a111d !important;
}

.scanner-app .table-wrap table {
 width: 100% !important;
 min-width: 100% !important;
 border-collapse: separate !important;
 border-spacing: 0 !important;
 table-layout: fixed !important;
 background: #0a111d !important;
 color: #dce9fb !important;
 font-size: 11px !important;
}

.scanner-app .table-wrap thead th {
 position: sticky !important;
 top: 0 !important;
 z-index: 8 !important;
 padding: 10px 8px !important;
 background: #111a29 !important;
 color: #9fb2cb !important;
 font-size: 10px !important;
 letter-spacing: 0.08em !important;
 text-transform: uppercase !important;
 text-align: left !important;
 white-space: nowrap !important;
 border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.scanner-app .table-wrap tbody td {
 padding: 9px 8px !important;
 vertical-align: top !important;
 text-align: left !important;
 background: #0b1320 !important;
 border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
 color: #dce9fb !important;
 white-space: normal !important;
 overflow-wrap: anywhere !important;
}

.scanner-app .table-wrap th:not(:last-child),
.scanner-app .table-wrap td:not(:last-child) {
 border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.scanner-app .table-wrap tbody tr:hover td {
 background: #132033 !important;
 box-shadow: none !important;
}

.scanner-app .table-wrap tbody tr.row-score-hot td { background: #0f2a21 !important; }
.scanner-app .table-wrap tbody tr.row-score-good td { background: #10241e !important; }
.scanner-app .table-wrap tbody tr.row-score-flat td { background: #0c1523 !important; }
.scanner-app .table-wrap tbody tr.row-score-risk td { background: #241b12 !important; }
.scanner-app .table-wrap tbody tr.row-score-bad td { background: #2a1418 !important; }

.scanner-app .table-wrap tbody tr.row-score-hot:hover td { background: #153628 !important; }
.scanner-app .table-wrap tbody tr.row-score-good:hover td { background: #173027 !important; }
.scanner-app .table-wrap tbody tr.row-score-flat:hover td { background: #132033 !important; }
.scanner-app .table-wrap tbody tr.row-score-risk:hover td { background: #312315 !important; }
.scanner-app .table-wrap tbody tr.row-score-bad:hover td { background: #35171d !important; }

.scanner-app .table-wrap th.sticky-col,
.scanner-app .table-wrap td.sticky-col {
 position: sticky !important;
 left: 0 !important;
 z-index: 9 !important;
 background: #0d1626 !important;
 box-shadow: 1px 0 0 rgba(255, 255, 255, 0.06) !important;
}

.scanner-app .table-wrap thead th.sticky-col {
 z-index: 12 !important;
 background: #111a29 !important;
}

.scanner-app .table-wrap th.sorted-header {
 background: #18263a !important;
 color: #ffffff !important;
}

.scanner-app .table-wrap td.sorted-column {
 background: #0f1b2b !important;
}

.scanner-app .table-wrap .sort-button {
 display: inline-flex !important;
 align-items: center !important;
 gap: 6px !important;
 padding: 0 !important;
 margin: 0 !important;
 color: inherit !important;
 font: inherit !important;
 background: transparent !important;
 border: 0 !important;
 cursor: pointer !important;
 box-shadow: none !important;
}

.scanner-app .table-wrap .sort-button:hover {
 color: #ffffff !important;
}

.scanner-app .table-wrap .sort-button.is-active {
 color: #44c6ff !important;
}

.scanner-app .table-wrap .sort-indicator {
 display: inline-block !important;
 min-width: 10px !important;
 color: #ffd166 !important;
 font-size: 11px !important;
 line-height: 1 !important;
}

.scanner-app .table-wrap .pair-title {
 margin-bottom: 4px !important;
 font-size: 12px !important;
 font-weight: 700 !important;
 color: #ffffff !important;
}

.scanner-app .table-wrap .small,
.scanner-app .table-wrap .exchange-note,
.scanner-app .table-wrap .volume-line {
 color: #8ea3bf !important;
 font-size: 10px !important;
 line-height: 1.45 !important;
}

.scanner-app .table-wrap .signal {
 font-size: 13px !important;
 font-weight: 800 !important;
 color: #f4f8ff !important;
}

.scanner-app .table-wrap .metric {
 display: flex !important;
 justify-content: space-between !important;
 gap: 8px !important;
 margin-bottom: 3px !important;
}

.scanner-app .table-wrap .metric span {
 color: #8ea3bf !important;
 font-weight: 600 !important;
}

.scanner-app .table-wrap .metric strong {
 color: #ffffff !important;
 font-weight: 800 !important;
}

.scanner-app .table-wrap .exchange-cell,
.scanner-app .table-wrap .volume-stack,
.scanner-app .table-wrap .exchange-prices {
 display: grid !important;
 gap: 4px !important;
}

@media (max-width: 1280px) {
 html,
 body {
 overflow-x: hidden;
 }

 .scanner-app .table-wrap table {
 font-size: 10px !important;
 }

 .scanner-app .table-wrap th,
 .scanner-app .table-wrap td {
 padding: 8px 6px !important;
 }

 .scanner-app .table-wrap th.sticky-col,
 .scanner-app .table-wrap td.sticky-col {
 position: static !important;
 box-shadow: none !important;
 }
}














/* =========================
THECRYPTOODYSSEY.COM SITE PROTECTION
========================= */

html,
body,
body * {
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 -webkit-touch-callout: none;
}

input,
textarea,
select,
[contenteditable="true"],
input *,
textarea *,
select *,
[contenteditable="true"] * {
 -webkit-user-select: text !important;
 -moz-user-select: text !important;
 -ms-user-select: text !important;
 user-select: text !important;
 -webkit-touch-callout: default !important;
}

img,
picture,
svg,
canvas,
video,
[data-protected-media] {
 -webkit-user-drag: none;
 user-drag: none;
}

a img,
button img {
 pointer-events: auto;
}

.crypto-human body {
 opacity: 1;
}




/* Homepage SEO text block styled to match The Crypto Odyssey live design language. */

.odyssey-seo-block {
 position: relative;
 box-sizing: border-box;
 width: 100%;
 max-width: 100%;
 margin: 28px 0 42px;
 padding: 22px 22px 24px;
 overflow: hidden;
 color: #d9edf7;
 background:
 radial-gradient(circle at top left, rgba(0, 255, 200, 0.08), transparent 34%),
 linear-gradient(180deg, rgba(13, 19, 28, 0.96), rgba(8, 12, 18, 0.98));
 border: 1px solid rgba(0, 255, 200, 0.14);
 border-radius: 18px;
 box-shadow:
 0 20px 60px rgba(0, 0, 0, 0.46),
 inset 0 1px 0 rgba(255, 255, 255, 0.03),
 0 0 0 1px rgba(0, 255, 200, 0.04);
 backdrop-filter: blur(16px);
}

.odyssey-seo-block::before {
 content: "";
 position: absolute;
 inset: 0;
 background:
 linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 14%),
 repeating-linear-gradient(
 180deg,
 rgba(255, 255, 255, 0.015) 0,
 rgba(255, 255, 255, 0.015) 1px,
 transparent 1px,
 transparent 4px
 );
 opacity: 0.34;
 pointer-events: none;
}

.odyssey-seo-block::after {
 content: "";
 position: absolute;
 top: 0;
 left: -35%;
 width: 170%;
 height: 2px;
 background: linear-gradient(90deg, transparent, rgba(0, 255, 200, 0.9), transparent);
 opacity: 0.75;
 animation: odysseySeoScan 4.8s linear infinite;
}

.odyssey-seo-inner {
 position: relative;
 z-index: 1;
}

.odyssey-seo-kicker {
 display: inline-flex;
 align-items: center;
 min-height: 32px;
 margin-bottom: 14px;
 padding: 0 13px;
 color: #7ef9ff;
 font-family: "Orbitron", "Segoe UI", sans-serif;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 background: rgba(0, 255, 200, 0.08);
 border: 1px solid rgba(0, 255, 200, 0.14);
 border-radius: 999px;
 box-shadow: 0 0 18px rgba(0, 255, 200, 0.08);
}

.odyssey-seo-title {
 margin: 0 0 14px;
 color: #ebfdff;
 font-family: "Orbitron", "Segoe UI", sans-serif;
 font-size: clamp(20px, 2.4vw, 30px);
 font-weight: 700;
 line-height: 1.12;
 letter-spacing: -0.03em;
 text-transform: uppercase;
 text-shadow: 0 0 18px rgba(0, 255, 200, 0.12);
}

.odyssey-seo-copy {
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
 gap: 18px 28px;
}

.odyssey-seo-copy p {
 margin: 0;
 color: #b9cad6;
 font-family: "Jura", "Segoe UI", sans-serif;
 font-size: 16px;
 line-height: 1.78;
 text-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}

.odyssey-seo-copy p strong {
 color: #ebfdff;
 font-weight: 700;
}

.odyssey-seo-copy p .accent {
 color: #00ffd0;
 font-weight: 700;
}

.odyssey-seo-footnote {
 margin-top: 18px;
 padding-top: 14px;
 color: #89a0ad;
 font-family: "Jura", "Segoe UI", sans-serif;
 font-size: 13px;
 line-height: 1.7;
 border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@keyframes odysseySeoScan {
 0% {
 transform: translateX(-18%);
 }

 100% {
 transform: translateX(18%);
 }
}

@media (max-width: 1100px) {
 .odyssey-seo-copy {
 grid-template-columns: 1fr;
 gap: 14px;
 }
}

@media (max-width: 860px) {
 .odyssey-seo-block {
 margin: 18px 0 24px;
 padding: 18px 16px 18px;
 border-radius: 16px;
 }

 .odyssey-seo-copy p {
 font-size: 15px;
 line-height: 1.72;
 }
}