/* ==========================================================
   EVO3x Scrolling Text — v1.0.3
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* ── Custom Property Defaults ──────────────────────────── */
.evo3x-st-track-wrap {
	--evo3x-st-color:   inherit;
	--evo3x-st-bg:      transparent;
	--evo3x-st-size:    1.4rem;
	--evo3x-st-weight:  500;
	--evo3x-st-gap:     60px;
	--evo3x-st-height:  64px;
	--evo3x-st-dur:     30s;
}

/* ── Track Wrapper ─────────────────────────────────────── */
.evo3x-st-track-wrap {
	display:    flex;
	align-items: center;
	min-height: var(--evo3x-st-height);
	background: var(--evo3x-st-bg);
	overflow:   hidden;
	width:      100%;
	position:   relative;
}

/* Fade edges */
.evo3x-st-track-wrap::before,
.evo3x-st-track-wrap::after {
	content:  '';
	position: absolute;
	top:      0;
	width:    80px;
	height:   100%;
	z-index:  2;
	pointer-events: none;
}
.evo3x-st-track-wrap::before { left:  0; background: linear-gradient(to right,  var(--evo3x-st-bg, #fff), transparent); }
.evo3x-st-track-wrap::after  { right: 0; background: linear-gradient(to left,   var(--evo3x-st-bg, #fff), transparent); }

/* Styles with solid bg – let the fade use the right colour */
.evo3x-st--style-2::before { background: linear-gradient(to right,  #000, transparent); }
.evo3x-st--style-2::after  { background: linear-gradient(to left,   #000, transparent); }
.evo3x-st--style-4::before { background: linear-gradient(to right,  #111, transparent); }
.evo3x-st--style-4::after  { background: linear-gradient(to left,   #111, transparent); }

/* ── Scrolling Track ───────────────────────────────────── */
.evo3x-st-track {
	display:    flex;
	flex-wrap:  nowrap;
	will-change: transform;
}

.evo3x-st-set {
	display:    flex;
	align-items: center;
	flex-shrink: 0;
	white-space: nowrap;
}

/* ── Items & Separators ────────────────────────────────── */
.evo3x-st-item {
	display:     inline-flex;
	align-items: center;
	font-size:   var(--evo3x-st-size);
	font-weight: var(--evo3x-st-weight);
	color:       var(--evo3x-st-color);
	margin-right: var(--evo3x-st-gap);
	white-space:  nowrap;
}

.evo3x-st-item a {
	color:           inherit;
	text-decoration: none;
	transition:      opacity 0.2s;
}
.evo3x-st-item a:hover { opacity: 0.75; text-decoration: underline; }

.evo3x-st-sep {
	display:      inline-block;
	margin-right: var(--evo3x-st-gap);
	color:        var(--evo3x-st-color);
	opacity:      0.6;
	font-size:    var(--evo3x-st-size);
}

/* ── Keyframes ─────────────────────────────────────────── */
@keyframes evo3x-scroll-left {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@keyframes evo3x-scroll-right {
	from { transform: translateX(-50%); }
	to   { transform: translateX(0); }
}

.evo3x-st-track[data-running="true"] {
	animation: evo3x-scroll-left var(--evo3x-st-dur) linear infinite;
}
.evo3x-st-track[data-running="true"][data-dir="right"] {
	animation-name: evo3x-scroll-right;
}

/* Pause on hover */
.evo3x-st-track-wrap[data-pause="true"]:hover .evo3x-st-track {
	animation-play-state: paused;
}

/* ── Style 1 — Soft Pink ───────────────────────────────── */
.evo3x-st--style-1 {
	background: transparent;
	padding: 14px 0;
}
.evo3x-st--style-1 .evo3x-st-item {
	display: flex;
	align-items: center;
	font-family: 'Jost', sans-serif;
	font-size: 48px;
	font-weight: 500;
	letter-spacing: .05em;
	text-transform: uppercase;
	background: linear-gradient(180deg, #f48075 0%, #e886e4 40.14%, #aa71f5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.evo3x-st--style-1 .evo3x-st-item a {
	font-family: 'Jost', sans-serif;
	background: linear-gradient(180deg, #f48075 0%, #e886e4 40.14%, #aa71f5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}
.evo3x-st--style-1 .evo3x-st-sep {
	background: linear-gradient(180deg, #f48075 0%, #e886e4 40.14%, #aa71f5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.7;
}
.evo3x-st--style-1::before,
.evo3x-st--style-1::after { display: none; }

@media screen and (max-width: 1440px) {
	.evo3x-st--style-1 .evo3x-st-item { font-size: 42px; }
}

/* ── Style 2 — Dark Bold ───────────────────────────────── */
.evo3x-st--style-2 {
	background: transparent;
	padding: 18px 0;
}
.evo3x-st--style-2 .evo3x-st-item {
	display: flex;
	align-items: center;
	font-family: 'Jost', sans-serif;
	font-size: 40px;
	font-weight: 300;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.evo3x-st--style-2 .evo3x-st-sep { opacity: 0.5; }
.evo3x-st--style-2::before,
.evo3x-st--style-2::after { display: none; }

@media screen and (max-width: 1440px) {
	.evo3x-st--style-2 .evo3x-st-item { font-size: 36px; }
}

/* ── Style 3 — Small Thin ──────────────────────────────── */
.evo3x-st--style-3 {
	background: transparent;
	padding: 14px 0;
}
.evo3x-st--style-3 .evo3x-st-item {
	display: flex;
	align-items: center;
	font-family: 'Jost', sans-serif;
	font-size: 16px;
	letter-spacing: .5px;
	text-transform: uppercase;
}
.evo3x-st--style-3::before,
.evo3x-st--style-3::after { display: none; }

/* ── Style 4 — Fun Pink Emoji ──────────────────────────── */
.evo3x-st--style-4 {
	background: transparent;
	padding: 20px 0;
}
.evo3x-st--style-4 .evo3x-st-item {
	display: flex;
	align-items: center;
	font-family: 'Jost', sans-serif;
	font-size: 56px;
	font-weight: 500;
	background: linear-gradient(90deg, #f48075 -27.66%, #e886e4 52.28%, #aa71f5 131.91%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.evo3x-st--style-4 .evo3x-st-item a {
	font-family: 'Jost', sans-serif;
	background: linear-gradient(90deg, #f48075 -27.66%, #e886e4 52.28%, #aa71f5 131.91%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}
.evo3x-st--style-4 .evo3x-st-sep {
	background: linear-gradient(90deg, #f48075 -27.66%, #e886e4 52.28%, #aa71f5 131.91%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.7;
}
.evo3x-st--style-4::before,
.evo3x-st--style-4::after { display: none; }

@media screen and (max-width: 1440px) {
	.evo3x-st--style-4 .evo3x-st-item { font-size: 42px; }
}

/* ── Item Images (NFT / image style) ───────────────────── */
.evo3x-st-img {
	display:       inline-block;
	width:         auto;
	height:        48px;
	object-fit:    cover;
	border-radius: 4px;
	margin-right:  12px;
	vertical-align: middle;
	flex-shrink:   0;
}

.evo3x-st-label {
	display:     inline-block;
	white-space: nowrap;
}

/* ── Elementor editor notice ───────────────────────────── */
.evo3x-st-editor-notice {
	font-size: 12px;
	color: #888;
	text-align: center;
	padding: 6px 0 0;
	font-style: italic;
}
