/* =========================================================ROOT VARIABLES========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&family=Press+Start+2P&family=Pixelify+Sans:wght@400;600&display=swap');
/* =========================FONTS / IMPORTS========================= */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
:root {
	--bg: #0b0014;
	--bg2: #120022;
	--neon-pink: #ff2bd6;
	--neon-blue: #00f7ff;
	--neon-purple: #9d4dff;
	--text: #e6e6ff;
	--dim: #9a9ab3;
	--mini-size: 6px;
}
/* =========================CRT OVERLAY========================= */
  .crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: 
  linear-gradient(rgba(10, 0, 20, 0) 50%, rgba(0, 0, 0, 0.35) 50%),
  linear-gradient(90deg, 
    rgba(255, 0, 200, 0.08),   /* neon pink/magenta */
    rgba(0, 255, 255, 0.05),   /* cyan glow */
    rgba(120, 0, 255, 0.08)    /* electric purple */
  );
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  mix-blend-mode: overlay; /* key */
}

@keyframes flicker {
  0% {
  opacity: 0.27861;
  }
  5% {
  opacity: 0.34769;
  }
  10% {
  opacity: 0.23604;
  }
  15% {
  opacity: 0.10626;
  }
  20% {
  opacity: 0.18128;
  }
  25% {
  opacity: 0.10626;
  }
  30% {
  opacity: 0.18128;
  }
  35% {
  opacity: 0.23604;
  }
}

.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
 animation: scanMove 1.2s linear infinite;

	content: "";
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(circle at center,rgba(255, 0, 200, 0.04),rgba(0, 0, 0, 0.35));
}
/* =========================GLOBAL TEXT========================= */
p {
	font-family: Pixelify Sans;
	margin: 10px 0;
	width: 100%;
	max-width: 500px;
	color: #ff77ff;
}
h1 {
	font-family: monospace;
	color: #ffffff;
	margin: 0;
}
/* =========================AUTOPLAYER========================= */
.buttondiv {
	cursor: pointer;
	position: fixed;
	height: 35px;
	bottom: 5px;
	width: 35px;
	left: 5px;
	z-index: 1;
}
.autoplayer button {
	background: #0a0a0a;
	cursor: pointer;
	color: #fff;
	border: 2px solid #ff00cc;
	border-radius: 6px;
	box-shadow:0 0 5px #ff00cc,0 0 10px #ff00cc,0 0 15px #00ffff;
	padding: 1px 4px 0 4px;
	font-size: 18px;
	position: fixed;
	height: 35px;
	bottom: 5px;
	width: 35px;
	left: 5px;
}
.autoplayer a {
	background: #0a0a0a;
	color: #ffffff;
	border: 2px solid #00ffff;
	border-radius: 6px;
	box-shadow:0 0 5px #00ffff,0 0 10px #00ffff,0 0 15px #ff00cc;
	text-decoration: none;
	padding: 2px 10px;
	position: fixed;
	font-size: 14px;
	bottom: 5px;
	left: 50px;
	z-index: 1;
}
.autoplayer button:hover,.autoplayer a:hover {
	box-shadow:0 0 10px #ff00cc,0 0 20px #00ffff,0 0 30px #ff00cc;
	transform: scale(1.05);
}
/* =========================BUTTON + CODE BOX========================= */
.button-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	flex-wrap: wrap;
}
.code-box {
	background-color: #272822;
	color: #f8f8f2;
	padding: 2px;
	border: 2px solid #ccc;
	border-radius: 5px;
	overflow: auto;
	font-family: 'Courier New', Courier, monospace;
	flex: 1;
	min-width: 25px;
	max-height: 35px;
}
.button-preview {
	display: flex;
	align-items: center;
}
/* =========================PFP========================= */
.pfp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
.pfp-glow {
	padding: 10px;
	border-radius: 20px;
	background: linear-gradient(65deg, #ff00ff, #00ffff, #ff00ff);
	background-size: 300% 300%;
	animation: neonShift 6s ease infinite, flicker 3s infinite;
	box-shadow: 0 0 25px #ff00ff, 0 0 50px #00ffff;
}
.pfp {
	width: 160px;
	height: 160px;
	border-radius: 15px;
	object-fit: cover;
	border: 2px solid #0ff;
	filter: contrast(1.1) saturate(1.3);
}
@keyframes neonShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes flicker {
	0%, 100% {
		opacity: 1;
	}
	92% {
		opacity: 0.95;
	}
	94% {
		opacity: 0.85;
	}
	96% {
		opacity: 1;
	}
}
/* =========================SOCIALS========================= */
.synth-socials {
	display: flex;
	gap: 14px;
	align-items: center;
}
.synth-socials a {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	position: relative;
	background: linear-gradient(135deg, #ff2bd6, #00e5ff);
	box-shadow:0 0 8px rgba(255, 0, 200, 0.6),0 0 18px rgba(0, 255, 255, 0.4);
	transition: 0.25s ease;
	overflow: hidden;
}
.synth-socials a::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: linear-gradient(120deg,transparent,rgba(255,255,255,0.25),transparent);
	transform: rotate(25deg);
	transition: 0.5s;
}
.synth-socials a:hover {
	transform: translateY(-4px) scale(1.08);
	box-shadow:0 0 14px #ff2bd6,0 0 28px #00e5ff,0 0 50px rgba(255, 0, 255, 0.6);
}
.synth-socials a:hover::before {
	transform: translateX(120%) rotate(25deg);
}
/* =========================PLATFORM COLORS========================= */
.synth-twitter {
	background: linear-gradient(135deg, #00d4ff, #0066ff);
}
.synth-insta {
	background: linear-gradient(135deg, #ff2bd6, #ff7a18);
}
.synth-th {
	background: linear-gradient(135deg, #6e00ff, #00e5ff);
}
.synth-discord {
	background: linear-gradient(135deg, #5865F2, #00e5ff);
}
/* =========================================================GLOBAL========================================================= */
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: 'Orbitron', monospace;
	color: var(--text);
	background: radial-gradient(circle at top, var(--bg2), var(--bg));
	overflow-x: hidden;
	position: relative;
	z-index: 0;
}
/* Blurry background layer */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("https://i.postimg.cc/X7Y9Cvtk/Untitled137-20260428064726.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(2px);
	transform: scale(1.1);
	/* prevents edge cutoff from blur */
	z-index: -1;
	opacity: 0.6;
	/* adjust for visibility */
}
.topbar,.badge,.mini,.headerbox {
	font-family: 'Press Start 2P', monospace !important;
	font-size: 12px;
	letter-spacing: 1px;
}
/* Pixelify Sans ONLY for misc text (SAFE VERSION) */
body *:not(.topbar):not(.badge):not(.mini):not(.headerbox):not(i):not(.fa):not(.fa-brands):not(.fa-solid) {
	font-family: 'Pixelify Sans', sans-serif;
}
/* =========================================================BACKGROUND EFFECTS========================================================= */
.bg-grid {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 50%;
	background:linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 40px 40px;
	transform: perspective(400px) rotateX(60deg);
	animation: gridMove 10s linear infinite;
	z-index: -3;
}
@keyframes gridMove {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 0 40px;
	}
}
.bg-glow {
	position: fixed;
	top: 20%;
	left: 50%;
	width: 600px;
	height: 600px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(255,43,214,0.25), transparent 70%);
	filter: blur(80px);
	z-index: -4;
}
/* =========================================================LAYOUT========================================================= */
.layout-grid {
	display: grid;
	grid-template-columns: 250px 1fr 250px;
	gap: 15px;
	padding: 20px;
}
.column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.column.wide {
	min-width: 0;
}
/* =========================================================BOXES========================================================= */
.box {
	background: rgba(10, 0, 30, 0.6);
	border: 1px solid rgba(255, 43, 214, 0.3);
	padding: 12px;
	backdrop-filter: blur(6px);
	box-shadow:0 0 10px rgba(255, 43, 214, 0.2),0 0 20px rgba(0, 247, 255, 0.1);
	transition: 0.2s ease;
}
.box:hover {
	border-color: var(--neon-blue);
	box-shadow:0 0 15px rgba(0, 247, 255, 0.4),0 0 25px rgba(255, 43, 214, 0.3);
}
/* HEADER BOXES */
.headerbox {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(90deg,rgba(255,43,214,0.2),rgba(0,247,255,0.2));
	border: 1px solid var(--neon-pink);
}
/* =========================================================TOPBAR + FOOTER========================================================= */
.topbar {
	text-align: center;
	border-bottom: 2px solid var(--neon-blue);
	font-size: 14px;
}
.footer {
	text-align: center;
	margin: 20px;
	font-size: 12px;
	color: var(--dim);
}
/* =========================================================TEXT STYLES========================================================= */
.highlight {
	color: var(--neon-blue);
	text-shadow: 0 0 6px var(--neon-blue);
}
.mini {
	font-size: 8px;
	color: var(--dim);
	opacity: 0.8;
}
/* =========================================================LINKS========================================================= */
a {
	color: var(--neon-pink);
	text-decoration: none;
	transition: 0.2s;
}
a:hover {
	color: var(--neon-blue);
	text-shadow: 0 0 6px var(--neon-blue);
}
/* =========================================================DIVIDER========================================================= */
.divider {
	height: 1px;
	margin: 8px 0;
	background: linear-gradient(90deg,transparent,var(--neon-pink),var(--neon-blue),transparent);
}
/* =========================================================BADGES========================================================= */
.badge {
	display: inline-block;
	padding: 3px 8px;
	margin: 2px;
	font-size: 10px;
	border: 0px solid var(--neon-blue);
	color: var(--neon-blue);
	text-shadow: 0 0 4px var(--neon-blue);
}
/* =========================================================MARQUEE========================================================= */
marquee {
	font-size: 11px;
	color: var(--neon-blue);
	margin-top: 4px;
}
/* =========================================================SCROLLBAR========================================================= */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-thumb {
	background: linear-gradient(var(--neon-pink),var(--neon-blue));
}
/* =========================================================SUBTLE GLOW ANIMATION========================================================= */
@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 5px var(--neon-pink);
	}
	50% {
		box-shadow: 0 0 15px var(--neon-blue);
	}
	100% {
		box-shadow: 0 0 5px var(--neon-pink);
	}
}
.topbar {
	animation: pulseGlow 3s infinite;
}
