/* Copy Animation */

.copyInput {
	display: inline-block;
	line-height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.copied::after {
	position: absolute;
	top: 8px;
	right: 12%;
	width: 100px;
	display: block;
	content: "COPIED";
	font-size: 1em;
	padding: 5px 5px;
	color: #fff;
	background-color: #FF7000;
	border-radius: 3px;
	opacity: 0;
	will-change: opacity, transform;
	animation: showcopied 1.5s ease;
}

@keyframes showcopied {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	50% {
		opacity: 0.7;
		transform: translateX(40%);
	}
	70% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
	}
}

/* Cookies card */

.cookies-card {
	width: 520px;
	padding: 30px;
	color: #1E2337;
	position: fixed;
	bottom: 15px;
	left: 15px;
	z-index: 99;
	transition: all .5s;
	background: #d1d1d1;
	border-radius: 5px;
}

.cookies-card.hide {
	bottom: -500px !important;
}

.radius--10px {
	border-radius: 10px;
}

.cookies-card__icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background-color: #6e6f70;
	color: #fff;
	font-size: 32px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.cookies-card__content {
	margin-bottom: 0;
}

.cookies-btn {
	color: #363636;
	text-decoration: none;
	padding: 10px 35px;
	margin: 3px 5px;
	display: inline-block;
	border-radius: 999px;
}

.cookies-btn:hover {
	color: #363636;
}

@media (max-width: 767px) {
	.cookies-card {
		width: 100%;
		left: 0;
		bottom: 0;
		font-size: 14px;
		padding: 15px;
	}
}

/* Hover input popup */

.hover-input-popup {
	position: relative;
}

.input-popup {
	display: none;
}

.hover-input-popup .input-popup {
	display: block;
	position: absolute;
	bottom: 70%;
	left: 50%;
	width: 280px;
	background-color: #1a1a1a;
	color: #fff;
	padding: 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.input-popup::after {
	position: absolute;
	content: '';
	bottom: -19px;
	left: 50%;
	margin-left: -5px;
	border-width: 10px 10px 10px 10px;
	border-style: solid;
	border-color: transparent transparent #1a1a1a transparent;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.input-popup p {
	padding-left: 20px;
	position: relative;
}

.input-popup p::before {
	position: absolute;
	content: '';
	font-family: 'Line Awesome Free';
	font-weight: 900;
	left: 0;
	top: 4px;
	line-height: 1;
	font-size: 18px;
}

.input-popup p.error {
	text-decoration: line-through;
}

.input-popup p.error::before {
	content: "\f057";
	color: #ea5455;
}

.input-popup p.success::before {
	content: "\f058";
	color: #28c76f;
}

/* Filter responsive */

.show-filter {
	display: none;
}

@media(max-width:767px) {
	.responsive-filter-card {
		display: none;
		transition: none;
	}
	.show-filter {
		display: block;
	}
}

/* ////////////////// select 2 css //////////////// */

.select2-dropdown {
	border: 0 !important;
	margin-top: 8px !important;
	border-radius: 5px !important;
	box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%);
	z-index: 1060;
}

.select2-search--dropdown {
	padding: 10px 10px !important;
	border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border-color: #ced4da !important;
	padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
	padding: 12px 14px !important;
	border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
	text-align: center !important;
	padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
	width: 8px;
	border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
	background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
	background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
	position: absolute;
	right: 10px;
	top: 0;
	content: "\f107";
	font-family: "Line Awesome Free";
	font-weight: 900;
	transition: .3s;
}

.select2-container--default .select2-selection--single {
	border-color: hsl(var(--border)) !important;
	border-width: 1px !important;
	border-radius: .375rem !important;
	padding: .375rem .75rem !important;
	height: 45px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 11px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
	transform: rotate(-180deg);
}

.select2-results__option:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #f1f1f1 !important;
	color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
	border-color: rgb(var(--main)) !important;
	box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
	outline: 0 !important;
}

.select2-dropdown .country-flag {
	width: 25px;
	height: 25px;
	border-radius: 8px;
}

.select2-dropdown .gateway-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
	font-size: 12px;
	margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
	border-color: hsl(var(--base)) !important;
	border-radius: .375rem !important;
}

.select2-container:has(.select2-selection--single) {
	width: 100% !important;
}

.selection {
	width: 100%;
}

/* Payment cards */

.gateway-card {
	padding: 15px;
}

.payment-card-title {
	padding: 13px 25px;
	text-align: center;
	background-color: rgb(var(--main));
	border-radius: 5px;
	border: 0;
	margin-bottom: 0px;
	color: #fff;
}

.payment-system-list {
	--thumb-width: 100px;
	--thumb-height: 40px;
	--radio-size: 12px;
	--border-color: #cccccf59;
	--hover-border-color: rgb(var(--main));
	background-color: #fff;
	border-radius: 5px;
	height: 100%;
}

.payment-system-list.is-scrollable {
	max-height: min(388px, 70vh);
	overflow-x: auto;
	padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
	width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
	background-color: rgb(var(--main));
	border-radius: 10px;
}

.payment-item {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px 18px;
	border: 1px solid #fff;
	border-top-color: var(--border-color);
	transition: all 0.3s;
	border-left: 3px solid transparent;
}

.payment-item:first-child {
	border-top-color: #fff;
	border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
	border-left: 3px solid hsl(var(--base));
	border-radius: 0px;
}

.payment-item__check {
	border: 3px solid transparent;
}

.payment-item__btn-text {
	color: #fff;
}

.payment-item__btn__icon {
	color: #fff;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
	border: 3px solid hsl(var(--base));
}

.payment-item__info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
	width: var(--radio-size);
	height: var(--radio-size);
	border: 1px solid hsl(var(--base));
	display: inline-block;
	border-radius: 100%;
}

.payment-item__name {
	padding-left: 10px;
	width: calc(100% - var(--radio-size));
	transition: all 0.3s;
}

.payment-item__thumb {
	width: var(--thumb-width);
	height: var(--thumb-height);
	text-align: right;
	padding-left: 10px;
}

.payment-item__thumb img {
	max-width: var(--thumb-width);
	max-height: var(--thumb-height);
	object-fit: cover;
}

/* Deposit info */

.deposit-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 8px;
}

.deposit-info__title {
	max-width: 50%;
	margin-bottom: 0px;
	text-align: left;
}

.deposit-info__input {
	max-width: 50%;
	text-align: right;
	width: 100%;
}

.deposit-info__input-select {
	border: 1px solid var(--border-color);
	width: 100%;
	border-radius: 5px;
	padding-block: 6px;
}

.deposit-info__input-group {
	border: 1px solid var(--border-color);
	border-radius: 5px;
}

.deposit-info__input-group .deposit-info__input-group-text {
	align-self: center;
	padding-left: 5px;
}

.deposit-info__input-group .form--control {
	padding: 5px;
	border: 0;
	height: 35px;
	text-align: right;
}

.deposit-info__input-group .form--control:focus {
	box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
	font-size: 14px;
}

.deposit-info__title .text.has-icon {
	display: flex;
	align-items: center;
	gap: 5px
}

.total-amount {
	border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
	font-weight: 600;
}

.payment-item__btn {
	border: 0;
	border-block: 1px solid var(--border-color);
	border-bottom: 0;
	background: hsl(var(--base));
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 15px;
	font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
	border-top-color: #fff;
}

button .spinner-border {
	--bs-spinner-width: 1.5rem;
	--bs-spinner-height: 1.5rem;
}

/* Misc */

.form-group {
	margin-bottom: 15px
}

.treeview li.contains-items {
	background-image: url(icons/arrow-left.png) !important;
}

.treeview li.items-expanded {
	background-image: url(icons/arrow-down.png) !important;
}

#counter {
	font-family: 'lora';
}

.accordion-button {
	flex-wrap: wrap;
}

@media (max-width: 575px) {
	.accordion-button {
		padding: 15px 8px;
	}
}

@media (max-width: 575px) {
	.transaction-item {
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.transaction-item .icon-wrapper .trans-title {
		font-size: 0.875rem;
	}
}

@media (max-width: 767px) {
	.transaction-item .icon-wrapper p,
	.transaction-item .icon-wrapper span {
		font-size: 0.75rem !important;
	}
}

@media (max-width: 575px) {
	.transaction-item .content-wrapper {
		padding-left: 2.5rem;
		margin-top: 8px !important;
	}
}

@media (max-width: 767px) {
	.transaction-item .content-wrapper p {
		font-size: 0.75rem !important;
	}
}

@media (max-width: 767px) {
	.transaction-item .amount-wrapper p {
		font-size: 0.8125rem !important;
	}
}

@media (max-width: 767px) {
	.transaction-item .amount-wrapper span {
		font-size: 0.75rem !important;
	}
}

/* Accordion table */

.table--acordion {
	background-color: #fff;
}

.table--acordion .accordion-body {
	background-color: #faebd72e;
}

.table--acordion .accordion-button {
	text-align: left;
	align-items: center;
}

.table--acordion .accordion-button::after {
	display: none;
}

.table--acordion .accordion-button:focus {
	box-shadow: none;
}

.table--acordion .left {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
}

.table--acordion .left .icon {
	width: 2.5rem;
	height: 2.5rem;
	background-color: rgba(69, 130, 255, 0.15);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #4582ff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	font-size: 1.625rem;
}

@media (max-width: 575px) {
	.table--acordion .left .icon {
		width: 1.875rem;
		height: 1.875rem;
		font-size: 16px;
	}
}

.table--acordion .left .content {
	width: calc(100% - 2.5rem);
	padding-left: 0.9375rem;
}

@media (max-width: 575px) {
	.table--acordion .left .content {
		padding-left: 0.625rem;
	}
}

.table--acordion .accordion-item.rcv-item .icon {
	background-color: rgba(40, 199, 111, 0.15);
	color: #28c76f;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.table--acordion .accordion-item.sent-item .icon {
	background-color: rgba(234, 84, 85, 0.15);
	color: #ea5455;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Caption lists */

.caption-list li {
	display: flex;
	flex-wrap: wrap;
	padding: 0.625rem 0;
	font-size: 0.9375rem;
	border-bottom: 1px dashed #cacaca;
}

.caption-list li:first-child {
	padding-top: 0;
}

.caption-list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.caption-list li .caption {
	width: 30%;
	font-family: "Maven Pro", sans-serif;
	font-weight: 500;
	font-size: 0.875rem;
	position: relative;
}

@media (max-width: 480px) {
	.caption-list li .caption {
		width: 35%;
	}
}

.caption-list li .caption::after {
	position: absolute;
	content: ':';
	top: 0;
	right: 0;
}

.caption-list li .value {
	width: 70%;
	padding-left: 0.9375rem;
}

@media (max-width: 480px) {
	.caption-list li .value {
		width: 65%;
	}
}

.caption-list-two {
	padding: 0.625rem 0.9375rem;
	background-color: rgba(69, 130, 255, 0.1);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.caption-list-two li {
	font-family: "Maven Pro", sans-serif;
	font-weight: 500;
	color: #373e4a;
	font-size: 0.875rem;
	padding: 0.5rem 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px dashed #b1b1b1;
}

.caption-list-two li:first-child {
	padding-top: 0;
}

.caption-list-two li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.caption-list-two li .caption {
	width: 20%;
	position: relative;
}

.caption-list-two li .caption::after {
	position: absolute;
	content: ':';
	top: 0;
	right: 0;
}

.caption-list-two li .value {
	width: 80%;
	text-align: right;
}

.table--acordion .left .icon-success {
	background-color: #28c87026;
	color: #28c870;
}

.table--acordion .left .icon-warning {
	background-color: #ff9e4226;
	color: #ff9e42;
}

.table--acordion .left .icon-danger {
	background-color: #ea535326;
	color: #ea5353;
}

.table--acordion .left .icon-dark {
	background-color: #081f3026;
	color: #081f30;
}

.tr-icon.icon-success {
	transform: rotate(45deg);
}

.tr-icon.icon-danger {
	transform: rotate(-45deg);
}

.close {
	background-color: transparent;
	border: none;
}

label.required:after {
	content: '*';
	color: #DC3545 !important;
	margin-left: 2px;
}

.auth-page-logo img {
	max-width: 180px !important;
}

.input-group-text {
	border: 1px solid hsl(var(--border));
}

.dashboard-nav select.langSel {
	border: 1px solid #ddd !important;
	color: hsl(var(--body));
}

.rang-user img {
	width: 60px;
}

.dashboard-nav select.langSel {
	margin-left: 0px;
}

/* investor card design */

.investor-card {
	background-color: hsl(var(--white));
	padding: 30px;
	position: relative;
	border-radius: 10px;
	box-shadow: 0px 0px 10px #ddd;
}

.investor-card__thumb {
	position: absolute;
	right: 20px;
	top: 20px;
}

.amount span {
	font-weight: 500;
	color: #2a3962;
}

/* =========================================================
   ETERNA DARK THEME – UTEX-STYLE ADDITIONS
   ========================================================= */

/* Dark gradient background for whole site */

body {
	background: radial-gradient(120% 120% at 50% 0, #172c31 0%, #1a1a1a 45%, #050609 100%) !important;
	color: #f5f7ff;
}

/* Make main sections transparent so gradient is visible */

.section,
.section-bg,
.hero,
.hero-section,
.banner-section,
.page-wrapper {
	background: transparent !important;
}

/* Generic card styling in UTEX style */

.card,
.investor-card,
.payment-system-list,
.table--acordion,
.cookies-card {
	background: radial-gradient(circle at top left, #212832 0%, #181c22 45%, #14171d 100%) !important;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.04);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
	color: #f5f7ff;
}

/* Adjust some specific blocks */

.cookies-card {
	color: #f5f7ff;
}

/* Accordion in dark */

.table--acordion {
	background-color: rgba(20, 23, 29, 0.95) !important;
}

.table--acordion .accordion-body {
	background-color: rgba(29, 47, 61, 0.6) !important;
}

/* Caption list backgrounds a bit darker */

.caption-list-two {
	background-color: rgba(69, 130, 255, 0.08);
}

/* Payment list in dark card */

.payment-system-list {
	background-color: rgba(23, 31, 40, 0.98) !important;
}

/* Investor card in dark style */

.investor-card {
	background: radial-gradient(circle at top left, #232a35 0%, #181c22 50%, #13161c 100%) !important;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.amount span {
	color: #e5ecff;
}

/* Primary buttons – UTEX style (Stocks / Crypto) */

.btn--base,
.btn--primary,
.cmn-btn,
.btn.btn--base,
.btn.btn--primary {
	background: linear-gradient(90deg, #3a67cf, #4a7dff);
	border: none;
	color: #ffffff !important;
	border-radius: 999px;
	padding: 12px 28px;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 12px 30px rgba(58, 103, 207, 0.45);
	transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, opacity 0.18s ease-out;
}

.btn--base:hover,
.btn--primary:hover,
.cmn-btn:hover,
.btn.btn--base:hover,
.btn.btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 40px rgba(58, 103, 207, 0.6);
	opacity: 0.95;
}

/* Outline / secondary buttons – glassy style */

.btn--outline,
.btn.btn--outline {
	background: transparent;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #e4edff !important;
	padding: 10px 26px;
	transition: background 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out;
}

.btn--outline:hover,
.btn.btn--outline:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.32);
}

/* Crypto icons / pool icons hover effect */

.crypto-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, filter 0.25s ease-out;
	transform-origin: center center;
	will-change: transform, box-shadow;
}

.crypto-icon:hover {
	transform: translateY(-6px) scale(1.06);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
	filter: saturate(1.08);
}

/* Reveal-on-scroll blocks (будут работать после JS-логики) */

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	will-change: opacity, transform;
}

.reveal.reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

/* Titles / headings a bit brighter */

h1, h2, h3, h4, h5, h6 {
	color: #f8fbff;
}

/* Secondary text softer */

.text-muted,
.text--muted,
p {
	color: #b1c0d4;
}

/* Small tweak for cookie button colors on dark bg */

.cookies-btn {
	color: #f5f7ff;
	background: rgba(255, 255, 255, 0.04);
}

.cookies-btn:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
}
/* =========================================================
   ETERNA STYLE – GLOBAL OVERRIDES
   ========================================================= */

/* Градиентный тёмный фон */
body {
    background: radial-gradient(120% 120% at 50% 0, #172c31 0%, #1a1a1a 45%, #050609 100%) !important;
    color: #f5f7ff;
}

/* Прозрачные секции, чтобы был виден фон */
.section,
.section-bg,
.hero,
.hero-section,
.banner-section,
.page-wrapper,
.body-wrapper {
    background: transparent !important;
}

/* Карточки и полезные блоки */
.card,
.plan-item,
.invest-plan-item,
.pricing-card,
.feature-card,
.investor-card,
.payment-system-list {
    background: radial-gradient(circle at top left, #212832 0%, #181c22 45%, #14171d 100%) !important;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    color: #f5f7ff;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: #f8fbff;
}

/* Базовый текст */
p,
.text-muted,
.text--muted {
    color: #b1c0d4;
}

/* Основные кнопки в стиле ETERNA */
.btn--base,
.btn--primary,
.cmn-btn,
.btn.btn--base,
.btn.btn--primary {
    background: linear-gradient(90deg, #3a67cf, #4a7dff);
    border: none;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(58, 103, 207, 0.45);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, opacity 0.18s ease-out;
}

.btn--base:hover,
.btn--primary:hover,
.cmn-btn:hover,
.btn.btn--base:hover,
.btn.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(58, 103, 207, 0.6);
    opacity: 0.95;
}

/* Обводочные кнопки */
.btn--outline,
.btn.btn--outline {
    background: transparent;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #e4edff !important;
    padding: 10px 26px;
    transition: background 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out;
}

.btn--outline:hover,
.btn.btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.32);
}

/* Hover-анимация иконок */
.crypto-icon,
.pool-logo,
.coin-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, filter 0.25s ease-out;
}

.crypto-icon:hover,
.pool-logo:hover,
.coin-logo:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
    filter: saturate(1.08);
}

/* Анимация появления блоков */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}
/* =========================================================
   ETERNA STYLE – COLOR PALETTE OVERRIDE
   Перекраска базовых переменных темы под тёмный стиль
   ========================================================= */

:root {
    /* Цвет заголовков и текста */
    --heading: 220 35% 92%;   /* почти белые заголовки */
    --body:    215 18% 78%;   /* мягкий светло-серый текст */
    --border:  215 18% 26%;   /* тёмная граница вместо светло-серой */

    /* Базовый фирменный цвет (синие акценты) */
    --base-h: 220;
    --base-s: 72%;
    --base-l: 60%;

    /* Светлый (фон секций) теперь тоже тёмный, а не почти белый */
    --light-h: 215;
    --light-s: 30%;
    --light-l: 16%;

    /* Цвет ссылок и hover */
    --link-color-h: 220;
    --link-color-s: 90%;
    --link-color-l: 65%;
}

/* Делимитируем фон секций, чтобы не было светлых полос */
.bg--light,
.bg--white {
    background-color: transparent !important;
}

/* Карточки “How HYIPLab Work” и подобные */
.feature-card,
.work-card,
.how-work-card,
.single-feature,
.single-process,
.single-service {
    background: radial-gradient(circle at top left, #212832 0%, #181c22 45%, #14171d 100%) !important;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    color: #f5f7ff;
}
/* =========================================================
   ETERNA STYLE – SECTIONS & STRATEGY CARDS
   ========================================================= */

/* Убираем светлые подложки секций */
.section--bg,
.bg--light,
.bg--white {
    background-color: transparent !important;
}

/* Фон футера тоже тёмный, без светлой полосы */
footer {
    background-color: transparent !important;
}

/* Карточки How HYIPLab Work (верхние 4 блока) */
.single-process,
.single-service,
.single-feature,
.work-card {
    background: radial-gradient(circle at top left, #212832 0%, #181c22 45%, #14171d 100%) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55) !important;
    color: #f5f7ff !important;
}

/* Карточки стратегий (CME / U.S. Stock / Crypto / IPO) */
.plan-item,
.plan__item,
.single-plan,
.invest-plan,
.invest-plan-item {
    background: radial-gradient(circle at top left, #212832 0%, #181c22 45%, #14171d 100%) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55) !important;
    color: #f5f7ff !important;
}

/* Текст внутри карточек стратегий делаем мягким светлым */
.plan-item p,
.plan__item p,
.single-plan p,
.invest-plan p,
.invest-plan-item p {
    color: #b1c0d4 !important;
}

/* Кнопки Join Strategy – в стиле ETERNA */
.plan-item .btn,
.plan__item .btn,
.single-plan .btn,
.invest-plan .btn,
.invest-plan-item .btn {
    background: linear-gradient(90deg, #3a67cf, #4a7dff) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    box-shadow: 0 12px 30px rgba(58, 103, 207, 0.45) !important;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, opacity 0.18s ease-out !important;
}

.plan-item .btn:hover,
.plan__item .btn:hover,
.single-plan .btn:hover,
.invest-plan .btn:hover,
.invest-plan-item .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(58, 103, 207, 0.6);
    opacity: 0.95;
}
/* =========================================================
   ETERNA STYLE – GLOBAL OVERRIDE (FRONT)
   ========================================================= */

/* Общий фон сайта */
body {
    background: radial-gradient(120% 120% at 50% 0, #172c31 0%, #1a1a1a 45%, #050609 100%) !important;
    color: #f5f7ff !important;
}

/* Убираем светлые подложки у секций и блоков */
section,
.section,
.section--bg,
.bg--light,
.bg--white,
.main-wrapper,
.body-wrapper {
    background-color: transparent !important;
}

/* Верхний блок "How HYIPLab Work" – карточки */
section .card,
section [class*="single-"],
section [class*="work-"],
section [class*="process"],
section [class*="feature"] {
    background: radial-gradient(circle at top left, #212832 0%, #181c22 45%, #14171d 100%) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55) !important;
    color: #f5f7ff !important;
}

/* Карточки стратегий (CME / U.S. Stock / Crypto / IPO) */
section [class*="plan"],
section [class*="strategy"],
section [class*="invest"] {
    background: radial-gradient(circle at top left, #212832 0%, #181c22 45%, #14171d 100%) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55) !important;
    color: #f5f7ff !important;
}

/* Текст внутри карточек стратегий */
section [class*="plan"] p,
section [class*="strategy"] p,
section [class*="invest"] p {
    color: #b1c0d4 !important;
}

/* Кнопки Join Strategy и любые .btn--base на публичных страницах */
section .btn,
section .btn--base,
section .btn--primary {
    background: linear-gradient(90deg, #3a67cf, #4a7dff) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    box-shadow: 0 12px 30px rgba(58, 103, 207, 0.45) !important;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, opacity 0.18s ease-out !important;
}

section .btn:hover,
section .btn--base:hover,
section .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(58, 103, 207, 0.6);
    opacity: 0.95;
}

/* Футер – тёмный под общий фон */
footer {
    background-color: transparent !important;
    color: #b1c0d4 !important;
}
footer a {
    color: #e4edff !important;
}
footer a:hover {
    color: #ffffff !important;
}
/* =========================================================
   ETERNA – HERO + PHONE + FLOATING CARDS
   ========================================================= */

/* Hero section */
.eterna-hero {
  position: relative;
  overflow: hidden;
}

.eterna-hero__title {
  font-size: clamp(2.4rem, 3.1vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.eterna-hero__subtitle {
  font-size: 0.98rem;
  max-width: 470px;
  color: #b1c0d4;
}

.eterna-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.eterna-hero__cta .btn-primary-eterna {
  background: linear-gradient(90deg, #3a67cf, #4a7dff) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 11px 26px !important;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(58, 103, 207, 0.43);
}

.eterna-hero__cta .btn-primary-eterna:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(58, 103, 207, 0.65);
}

.eterna-hero__cta .btn-secondary-eterna {
  border-radius: 999px;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #e4edff;
  background: rgba(4, 12, 24, 0.5);
}

.eterna-hero__cta .btn-secondary-eterna:hover {
  background: rgba(12, 22, 40, 0.95);
}

/* Stats under hero */
.eterna-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.eterna-stat {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at top left, rgba(60, 99, 204, 0.25) 0, rgba(10, 14, 24, 0.85) 45%, rgba(5,6,9,0.95) 100%);
  font-size: 0.8rem;
  color: #d5e2ff;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.eterna-stat__value {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

/* Phone mockup */
.eterna-hero-phone-wrapper {
  display: flex;
  justify-content: center;
}

.eterna-phone {
  position: relative;
  width: 290px;
  max-width: 100%;
  padding: 12px;
  border-radius: 36px;
  background: radial-gradient(circle at top left, #262f3d 0, #05070b 60%, #000000 100%);
  box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.8),
      0 0 0 1px rgba(255,255,255,0.02);
}

.eterna-phone__screen {
  border-radius: 26px;
  background: radial-gradient(circle at top, #243449 0, #0b1018 55%, #020308 100%);
  overflow: hidden;
  padding: 14px 14px 16px;
  position: relative;
}

.eterna-phone__status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: #9fb0d1;
  margin-bottom: 10px;
}

.eterna-phone__pill {
  width: 78px;
  height: 16px;
  border-radius: 999px;
  background: rgba(5,7,12,0.85);
  margin: 0 auto;
}

.eterna-phone__tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.eterna-phone__tab {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  padding: 6px 4px;
  border-radius: 999px;
  cursor: default;
  color: #9fb0d1;
}

.eterna-phone__tab--active {
  background: linear-gradient(90deg, #3a67cf, #4a7dff);
  color: #ffffff;
}

/* Content inside phone */
.eterna-phone__section-title {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7c90b4;
  margin-bottom: 5px;
}

.eterna-phone__balance {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.eterna-phone__balance-sub {
  font-size: 0.8rem;
  color: #7c90b4;
}

.eterna-phone__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.eterna-pill {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  border: 1px solid rgba(255,255,255,0.07);
  color: #c4d3f2;
}

.eterna-pill--green {
  border-color: rgba(76, 217, 143, 0.4);
  color: #8ff0b8;
}

.eterna-pill--red {
  border-color: rgba(255, 94, 94, 0.4);
  color: #ff9a9a;
}

.eterna-phone__list {
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
}

.eterna-phone__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  font-size: 0.75rem;
  color: #c3d2f0;
}

.eterna-phone__row-label {
  opacity: 0.86;
}

.eterna-phone__row-value {
  font-weight: 600;
}

/* Floating cards (Why Eterna, etc.) */
.eterna-section-header {
  margin-bottom: 2.5rem;
}

.eterna-section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.eterna-section-header p {
  font-size: 0.95rem;
  color: #b1c0d4;
  max-width: 540px;
  margin: 0 auto;
}

.eterna-floating-card {
  position: relative;
  padding: 20px 20px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08) 0, rgba(8,12,20,0.98) 48%, rgba(3,5,9,1) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
      0 18px 45px rgba(0,0,0,0.85),
      0 0 0 1px rgba(255,255,255,0.02);
  color: #dbe6ff;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.eterna-floating-card:hover {
  transform: translateY(-4px);
  box-shadow:
      0 26px 60px rgba(0,0,0,0.9),
      0 0 0 1px rgba(58, 103, 207, 0.3);
  border-color: rgba(58, 103, 207, 0.75);
}

.eterna-floating-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(58, 103, 207, 0.9) 0, rgba(10, 16, 30, 0.95) 60%);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.eterna-floating-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.eterna-floating-card p {
  font-size: 0.87rem;
  color: #b5c5e0;
  margin-bottom: 0;
}

/* Strategy cards on home */
.eterna-strategy-card {
  border-radius: 18px;
  padding: 20px 20px 16px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08) 0, rgba(8,12,20,0.98) 48%, rgba(3,5,9,1) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 45px rgba(0,0,0,0.85);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.eterna-strategy-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8ea0c6;
  margin-bottom: 6px;
}

.eterna-strategy-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.eterna-strategy-meta {
  font-size: 0.8rem;
  color: #b5c5e0;
  margin-bottom: 10px;
}

.eterna-strategy-meta span {
  display: inline-block;
  margin-right: 10px;
}

.eterna-strategy-list {
  font-size: 0.82rem;
  color: #d2def6;
  margin-bottom: 14px;
}

.eterna-strategy-list li {
  padding: 2px 0;
}

.eterna-strategy-card .btn-primary-eterna {
  margin-top: auto;
}

/* Security list */
.eterna-security-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.eterna-security-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: #c5d3f0;
  margin-bottom: 8px;
}

.eterna-security-list li i {
  color: #4cd964;
  margin-top: 2px;
}

/* FAQ accordion override */
.eterna-faq .accordion-button {
  background: rgba(9,14,24,0.95);
  color: #e4edff;
}

.eterna-faq .accordion-body {
  background: rgba(5,9,16,0.98);
  color: #c5d3f0;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .eterna-hero__stats {
    margin-top: 1.25rem;
  }
  .eterna-hero {
    text-align: center;
  }
  .eterna-hero__subtitle,
  .eterna-hero__stats {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .eterna-hero-phone-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .eterna-phone {
    width: 260px;
  }
}
/* =========================
   ETERNA HERO – LAYOUT FIX
   ========================= */

.eterna-hero {
    /* фон */
    background: radial-gradient(circle at top, #1d2633 0, #0c1218 55%, #05080c 100%);
    padding-top: 60px;
    padding-bottom: 60px;

    /* центрируем блок по высоте окна на десктопе */
    min-height: calc(100vh - 80px); /* высота экрана минус хедер */
    display: flex;
    align-items: center;
}

.eterna-hero > .container {
    width: 100%;
}

.eterna-hero .row {
    align-items: center; /* текст и телефон по вертикальному центру */
}

/* Заголовок – сразу с нужным центрированием и 2 строками */
.eterna-hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;
    max-width: 900px;
    text-align: center;

    font-size: clamp(2.8rem, 4vw + 1rem, 3.8rem);
    line-height: 1.15;
    letter-spacing: 0.03em;
    color: #ffffff;
}

/* каждая строка заголовка – отдельным span без переноса внутри */
.eterna-hero__title span {
    display: block;
    white-space: nowrap;
}

/* Подзаголовок – по центру и ярко-белый */
.eterna-hero__subtitle {
    max-width: 560px;
    margin: 0 auto;
    text-align: center !important;
    font-size: 1.05rem;
    color: #ffffff !important;
    opacity: 0.9;
}

/* Телефон – по центру колонки, эта обёртка будет родителем для иконок */
.eterna-hero-phone-wrapper {
    display: flex;
    justify-content: center;
    position: relative;      /* ВАЖНО: от неё считаем позицию иконок тикеров */
    z-index: 1;
}

.eterna-phone {
    width: 420px;
    max-width: 100%;
    padding: 20px;
    border-radius: 42px;
    background: radial-gradient(circle at top, #181f2b 0, #05070b 80%);
    box-shadow:
        0 32px 68px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: transform 0.35s ease, filter 0.35s ease;    
}

.eterna-phone:hover {
    transform: translateY(-6px) scale(1.06);
    filter: drop-shadow(0 0 10px rgba(255, 150, 0, 0.45));
}

.eterna-phone__screen {
    border-radius: 30px;
    padding: 20px 20px 24px;
}

/* Блок под телефоном – кнопки + мини-пилюли */

.eterna-hero-under-phone {
    margin-top: 26px;
}

.eterna-hero__cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.eterna-hero__stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.eterna-stat {
    min-width: 230px;
    max-width: 260px;
    padding: 14px 18px;
    border-radius: 999px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 45px rgba(0, 0, 0, 0.85);
}

.eterna-stat__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.eterna-stat span:last-child {
    display: block;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
    opacity: 0.9;
}

/* Адаптив: на мобиле всё в колонку */

@media (max-width: 991px) {
    .eterna-hero {
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: auto; /* на маленьких экранах не тянем секцию на весь vh */
    }

    .eterna-hero__title,
    .eterna-hero__subtitle {
        text-align: center !important;
    }

    .eterna-phone {
        width: 320px;
        margin-top: 32px;
    }
}

/* --- HERO main buttons ×2 size --- */
.btn-primary-eterna,
.btn-secondary-eterna {
    padding: 18px 38px !important;   /* больше внутренние отступы */
    font-size: 20px !important;      /* увеличиваем текст */
    border-radius: 16px !important;  /* более массивные кнопки */
}

/* --- HERO mini pills ×3 size + белый текст --- */
.eterna-hero .eterna-pill {
    padding: 14px 28px !important;
    font-size: 20px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    display: inline-block !important;
}

/* ===== TICKER ICONS AROUND PHONE – 2× SIZE, СИММЕТРИЯ (без GOOGL) ===== */

/* Контейнер для всех иконок, позиционируется относительно .eterna-hero-phone-wrapper */
.eterna-ticker-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Общий стиль эмблем тикеров */
.eterna-ticker-icon {
    position: absolute;
    width: 150px;
    opacity: 1;
    transform: none;
    filter: drop-shadow(0 0 18px rgba(0,0,0,0.55));
    transition: transform .25s ease, filter .25s ease;
    pointer-events: auto;
    cursor: default;
    z-index: 4;
}

/* Hover-эффект */
.eterna-ticker-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 26px rgba(255,255,255,0.45));
}

/* ЛЕВАЯ ГРУППА – 5 иконок */
.ticker-nasdaq { top: -30px;  left: -120px; }
.ticker-sp500  { top: 70px;   left: -180px; }
.ticker-gold   { top: 190px;  left: -135px; }
.ticker-wti    { top: 310px;  left: -170px; }
.ticker-tsla   { top: 430px;  left: -120px; }

/* ПРАВАЯ ГРУППА – крипта + AMZN */
.ticker-btc    { top: -10px;  right: -120px; }
.ticker-eth    { top: 90px;   right: -180px; }
.ticker-nflx   { top: 180px;  right: -135px; }
.ticker-bnb    { top: 330px;  right: -195px; }
.ticker-amzn   { top: 450px;  right: -120px; }

/* Логотип в топбаре личного кабинета */
.dashboard-logo img {
    height: 38px;      /* сделай больше/меньше под себя */
    width: auto;
    display: block;
}

/* На больших экранах можно сделать чуть крупнее */
@media (min-width: 1200px) {
    .dashboard-logo img {
        height: 46px;
    }
}
.dashboard-sidebar .logo img {
    width: 180px !important;
    max-width: 180px !important;
}
.dashboard-sidebar .logo img {
    height: 100px !important;
    width: auto !important;
}
/* === FIX: FORCE OVERRIDE TICKER POSITIONS === */
.eterna-ticker-icons .eterna-ticker-icon {
    width: 150px !important;
}

/* LEFT */
.eterna-ticker-icons .ticker-nasdaq { top: -30px !important; left: -60px !important; }
.eterna-ticker-icons .ticker-sp500  { top: 70px !important;  left: -95px !important; }
.eterna-ticker-icons .ticker-gold   { top: 190px !important; left: -65px !important; }
.eterna-ticker-icons .ticker-wti    { top: 310px !important; left: -95px !important; }
.eterna-ticker-icons .ticker-tsla   { top: 430px !important; left: -60px !important; }

/* RIGHT */
.eterna-ticker-icons .ticker-btc  { top: -10px !important; right: -60px !important; }
.eterna-ticker-icons .ticker-eth  { top: 90px !important;  right: -95px !important; }
.eterna-ticker-icons .ticker-nflx { top: 180px !important; right: -65px !important; }
.eterna-ticker-icons .ticker-bnb  { top: 330px !important; right: -95px !important; }
.eterna-ticker-icons .ticker-amzn { top: 450px !important; right: -60px !important; }
/* HERO: делаем обёртку телефона компактной,
   чтобы иконки позиционировались ближе к нему */
.eterna-hero-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;

    max-width: 480px;     /* чуть шире телефона (сам телефон ~420px) */
    margin: 40px auto 0;  /* центрируем по горизонтали */
}
/* === HERO – mobile typography fix === */
@media (max-width: 575px) {

  /* Заголовок на мобиле поменьше и с переносами */
  .eterna-hero__title {
      font-size: 2.2rem;        /* можно 2.0–2.4 под вкус */
      line-height: 1.25;
      max-width: 95%;
      margin-bottom: 16px;
  }

  .eterna-hero__title span {
      white-space: normal;      /* разрешаем перенос внутри строк */
  }

  /* Подзаголовок поуже и чуточку крупнее/читабельнее */
  .eterna-hero__subtitle {
      font-size: 0.98rem;
      max-width: 92%;
      padding: 0 12px;
  }

  /* Пилюли – чуть компактнее вертикально */
  .eterna-hero .eterna-pill {
      font-size: 18px !important;
      padding: 12px 22px !important;
  }
}
.header .logo img {
    width: 150px !important; /* раньше было ~50px */
    height: auto !important;
}
/* Увеличиваем логотип, делаем симметрию */
.header .logo img {
    height: 100px !important;     /* подгони: 55–70px выглядит идеально */
    width: auto !important;
}

/* Делаем шапку выше под увеличенный логотип */
.header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* Центровка логотипа по вертикали */
.header .logo {
    display: flex;
    align-items: center;
}
.header .dashboard-logo img,
.dashboard-logo img {
    height: 72px !important;
    width: auto !important;
}
/* Логотип в шапке главной страницы */
.header-bottom .logo img {
    height: 120px !important;   /* подгони под нужный размер */
    width: auto !important;    /* сохраняем пропорции */
    max-height: none !important;
}
/* Уменьшаем вертикальные отступы шапки */
.header-bottom {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.header-bottom-area {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
}

/* Дополнительно выравниваем логотип по центру */
.header-bottom .logo img {
    vertical-align: middle;
}
/* ===== ETERNA: compact desktop header (only paddings) ===== */
@media (min-width: 992px) {

  /* Внешняя полоска шапки */
  .header {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Внутренний блок под шапкой */
  .header-bottom {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Основная зона с логотипом и меню */
  .header-bottom-area {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    min-height: auto !important;
  }

  /* Лого и пункты меню по вертикальному центру */
  .header-bottom-area .logo,
  .header-bottom-area,
  .header-bottom-area .menu {
    align-items: center;
  }
}
/* ===== ETERNA: compact mobile header ===== */
@media (max-width: 991.98px) {

  /* сама шапка */
  .header {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* внутренняя область с логотипом и языком/бургером */
  .header-bottom-area {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    min-height: auto !important;
  }

  /* чуть компактнее логотип, чтобы полоса стала ниже */
  .header-bottom-area .logo img {
    max-height: 106px !important;  /* при необходимости поиграйся 40–50px */
    height: auto !important;
    width: auto !important;
  }
}
/* === ETERNA – Header toning === */
.header,
.header-top,
.header-bottom,
.header-bottom-area {
    background-color: #101A27 !important;
    border-bottom: none !important;
}

/* Меню — белый текст */
.header .menu li a,
.header .menu li .link,
.header .menu li span,
.header .menu a {
    color: #ffffff !important;
}

/* Hover эффект — легкая подсветка */
.header .menu li a:hover {
    color: #d7e3ff !important;
}
/* === ETERNA – Header exactly same tone as hero === */
.header,
.header-top,
.header-bottom,
.header-bottom-area {
    background: radial-gradient(circle at top, #1d2633 0, #0c1218 55%, #05080c 100%) !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
/* === ETERNA – Header gradient fix === */
.header {
    background: radial-gradient(circle at top, #1d2633 0, #0c1218 55%, #05080c 100%) !important;
}

/* Отключаем перекрытие фона у вложенных контейнеров */
.header-top,
.header-bottom,
.header-bottom-area {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}
/* === ETERNA – фиксированная шапка при скролле === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.footer-links {
    text-align: left !important;
}
footer .footer-column {
    text-align: center;       /* Заголовки остаются по центру */
}

footer .footer-column ul {
    text-align: left !important;  /* Пункты идут слева */
    display: inline-block;        /* Чтобы красиво стояли */
    margin: 0 auto;               /* Центрируем блок со списком */
}
/* === Password requirements tooltip — fix text color === */
.input-popup,
.input-popup * {
    color: #ffffff !important;
}