/*--------------------------------------------------------------
# Basics
--------------------------------------------------------------*/
body {
	overflow-x: hidden;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2a0a3f+0,1c002e+100 */
	background: #27083b;
	min-height: 100vh;
}
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
ul {
	list-style: none;
}
textarea, input, a, button { 
	outline: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	color: #333;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
a {
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
a:hover, a:visited, a:focus, a:active,
button:hover, button:visited, button:active, button:focus {
	text-decoration: none !important;
	outline: none !important;
}
::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.animation-delay-100 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.animation-delay-200 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.animation-delay-300 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.animation-delay-400 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.animation-delay-600 {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.animation-delay-800 {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.animation-delay-1000 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.animation-delay-2000 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

/* Outer gradient border (same behavior as c-step-b) */
.app-header .header-b {
  border-radius: 999px;  /* pill */
  padding: 2px;          /* border thickness */
}

/* Inner white pill (same as c-step, but header layout) */
.app-header .header-i {
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Make branding align left */
.app-header .branding {
  justify-content: flex-start;
}

/* Slogan darker (your current slogan is white for the old gradient header) */
.app-header .header-slogan {
  color: #777;
  font-size: 0.75em;
  margin-top: -4px;
  display: block;
}

/* Optional right badge like your screenshot */
.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f3f6;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 575px) {
  .app-header .header-i {
    padding: 10px 12px;
  }
  .header-status {
    font-size: 12px;
    padding: 7px 10px;
  }
}

.container {
	max-width: 900px;
	margin: 0 auto;
}
.branding {
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo {
	max-width: 40px;
	margin-right: 7px;
}
.header-title {
	margin: 0;
	font-size: 1.8em;
}
.header-slogan {
	color: #fff;
	font-size: 0.7em;
	display: block;
	margin-top: -5px;
}
.header-bar {
	width: 100%;
	border-radius: 10px;
	padding: 10px 15px;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
	color: #fff;
	font-size: 1.4em;
	font-weight: 700;
	text-align: center;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.content-w {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	justify-content: center;
	align-items: center;
}
.content-l {
	width: 250px;
}
.content-r {
	width: calc(100% - 250px);
	padding-left: 30px;
}
.c-step-b {
    padding: 2px;
    border-radius: 20px;
	margin-bottom: 20px;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	
}


.c-step-b-3 {
	margin-bottom: 0;
}
.c-step-b {
	opacity: 0.5;
	transform: scale(0.95);
}
.c-step {
	background: #fff;
	border-radius: 20px;	
	padding: 20px 20px;
	display: flex;
	align-items: center;	
}
.c-step-active {
	opacity: 1;
	transform: scale(1);
}
.c-step div {
	height: 26px;
	width: 26px;
	font-size: 0.9em;
	border-radius: 5px;
	display: flex;
	align-items: center;
    justify-content: center;
	color: #fff;
	font-weight: 600;
	background: linear-gradient(135deg, rgba(255, 200, 150, 1) 0%, rgba(255, 120, 150, 1) 50%, rgba(150, 50, 120, 1) 100%);
	margin-right: 10px;
}
.c-step span {
	display: block;
	width: calc(100% - 35px);
	padding-left: 10px;
	font-size: 0.8em;
	font-weight: 500;
}
.username-form-b {
	padding: 2px;
	border-radius: 30px;	
}
.username-form-w {
	background: #fff;
	padding: 40px 50px 40px 50px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	cursor: pointer;	
}
.package-icons-w {
	position: relative;
	text-align: center;
	margin: 0 0 30px 0;
}
.package-icon-1 {
	width: 70px;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	position: relative;
	animation: MoveUpDown 5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.m-wr {
	position: fixed;
	width: 100%;
	background: #fff;
	left: 0;
	top: 0;
	overflow-y: auto;
}
.m-wr-inner {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.m-wr-header {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}
.m-wr-content {
	background: #fff;
	border-radius: 20px;
	margin: 0 auto;
	padding: 30px 30px;
	flex-grow: 1;
	display: flex;
	align-items: center;
}
.anifa {
	animation-duration: 0.6s;
}
.anifav {
	animation-duration: 0.3s;
}
.mr-wr-step-num {
	height: 35px;
	width: 35px;
	border-radius: 5px;
	display: flex;
	align-items: center;
    justify-content: center;
	color: #fff;
	font-weight: 600;
	background: linear-gradient(135deg, rgba(255, 200, 150, 1) 0%, rgba(255, 120, 150, 1) 50%, rgba(150, 50, 120, 1) 100%);
	margin: 0 auto 10px auto;
}
.mr-wr-step-title {
	font-size: 1.4em;
	font-weight: 600;
	text-align: center;
	margin: 0 0 10px 0;
}
.mr-wr-step-instr {
	font-size: 0.9em;
	text-align: center;
	color: #aaa;
}
.mr-wr-step-examp {
	display: none;
	font-weight: 600;
	font-size: 0.8em;
	margin: 10px 0 0 0;
}
.mr-wr-step-examp span {
	text-decoration: underline;	
}
.m-wr-b-wrapper {
	margin-top: 30px;
}
.m-wr-input-wrapper {
	position: relative;
}
.m-wr-input {
	width: 100%;
	background: transparent;
	height: 55px;
	background: #f5f5f5;
	border-radius: 10px;
	padding: 0 0 0 50px;	
	font-size: 0.9em;
	font-weight: 500;
	border: none;
	outline: none;
	box-shadow: none;
}
.m-wr-input-icon {
	width: 18px;
	position: absolute;
	left: 17px;
	top: 20px;
}
.input-err-w {
	font-size: 0.85em;
	font-weight: 500;
	text-align: center;
	color: #fc4349;
	margin: 5px 0 0 0;
	display: none;
}
.m-wr-btn-wrapper {
	margin: 30px 0 0 0;
	text-align: center;
}
.m-wr-btn {
	width: 150px;
	display: flex;
	height: 50px;
	align-items: center;
    justify-content: center;
	background: linear-gradient(135deg, rgba(255, 200, 150, 1) 0%, rgba(255, 120, 150, 1) 50%, rgba(150, 50, 120, 1) 100%);
	color: #fff;
	margin: 0 auto;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 500;
}
a.m-wr-btn {
	text-decoration: none;
}
.m-wr-btn:hover, .m-wr-btn:visited {
	color: #fff;
}
.username-connect {
	display: none;
}
.username-connect-i {
	display: flex;
	min-height: 375px;
	align-items: center;
    justify-content: center;
}
.icon-search {
	width: 70px;
}
.no-p-img-w {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
	padding: 2px;
}
.no-p-img-w-i {
	width: 100%;
	height: 100%;
	background: #fff;
	padding: 3px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.no-p-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.confirm-profile-overview {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    justify-content: center;
	padding: 15px 0;
}
.confirm-profile-username-label {
	color: #999;
	font-size: 0.9em;
	font-weight: 500;
}
.confirm-profile-username-val {
	font-weight: 600;
	font-size: 1.1em;
}
.confirm-profile-overview-r {
	padding-left: 15px;
}
.package-select-w {
	flex-wrap: wrap;
	align-items: center;
    justify-content: center;
	display: flex;
	margin: 0 -15px;
}
.package-select-col-w {
	position: relative;
	margin-bottom: 20px;
	width: 33.333%;
	flex: 0 0 33.333%;
	padding: 0 5px;
}
.package-select-col {
	width: 100%;
	padding: 30px 15px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(255, 200, 150, 1) 0%, rgba(255, 120, 150, 1) 50%, rgba(150, 50, 120, 1) 100%);
	position: relative;
	cursor: pointer;
	opacity: 0.7;
	transform: scale(0.9);
	transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}
.package-select-col-t, .package-select-col-m, .package-select-col-b {
	display: flex;
	align-items: center;
}
.package-sel-marker {
	width: 26px;
	height: 26px;
	border: 2px solid #fff;
	border-radius: 50%;
	position: relative;
}
.package-sel-duration {
	font-weight: 500;
	margin-left: 15px;
}
.package-select-col-m {
    margin: 15px 0 0px 0;
}
.package-sel-cur-price {
	font-size: 1.4em;
	font-weight: 600;
	margin-right: 15px;
}
.package-sel-old-price {
	position: relative;
	display: inline-block;
	font-weight: 500;
	font-size: 1.1em;
}
.package-sel-old-price:after {
	content: '';
	position: absolute;
	width: 120%;
	left: -10%;
	height: 2px;
	top: calc(50% - 1px);
	background: #000;
	transform: rotate(-20deg);
}
.package-select-col-b {
	font-size: 0.9em;
	opacity: 0.8;
	font-weight: 500;
}
.package-select-col-w-active .package-select-col {
	opacity: 1;
	transform: scale(1);
	cursor: default;
}
.package-select-col-w-active .package-sel-marker:after {
	width: 32px;
    height: 32px;
    left: -5px;
    top: -5px;
    content: '';
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
	opacity: 0.6;
}
.package-select-col-w-active .package-sel-marker:before {
	width: 14px;
    height: 14px;
    left: 4px;
    top: 4px;
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
}
.package-select-col-badge {
	transform: rotate(45deg);
    position: absolute;
    right: 1px;
    top: -2px;
    background: #222;
    width: 35px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 12px;
    color: #FFFFFF;
    z-index: 2;
    font-size: 0.75em;
    font-weight: 600;
}
.package-select-col-badge span {
	display: block;
	transform: rotate(-45deg);
	opacity: .9;
}
.confirm-profile-overview-s .no-p-img-w {
	width: 50px;
	height: 50px;
}
.package-select-w {
	border-top: 1px solid #eee;
	padding-top: 10px;
}
.m-wr-header {
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}
.package-select-err, .code-err {
	display: none;
	font-weight: 500;
	margin: 10px 0 0 0;
	text-align: center;
	color: #fc4349;
	font-size: 0.9em;
}
.proc-w {
	display: none;
}
.progress-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 40px auto 0 auto;
    text-align: center;
	transform: scale(0.8);
}
.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1em;
    color: #000;
	font-weight: 600;
}
#console-message {
	margin: 20px 0 0 0;
    width: 100%;
    font-size: 1.6em;
	font-weight: 600;
	padding: 0 20px;
    color: #000;
    text-align: center;
}
.proc-w svg circle {
    fill: none;
    transition: stroke-dashoffset 0.1s linear;
}
.proc-w svg .progress-bar {
    stroke: rgba(255, 120, 150, 1);
    stroke-width: 8px;
}
.proc-w svg circle {
    stroke: #eee;
    stroke-width: 8px;
}
.verif-w {
	position: relative;
}
.verif-intro {
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}
.v-btext {
	font-weight: 600;
}
.code-entry-wrapper {
	display: none;
	position: relative;
	z-index: 2;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.code-entry-i {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.code-entry-c {
	width: 80%;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	padding: 30px 30px;
	position: relative;
	text-align: center;
}
.cei-title {
	font-size: 1.1em;
	font-weight: 600;
}
.cei-texe {
	font-size: 0.9em;
	font-weight: 500;
	color: #999;
	margin: 3px 0 0 0;
}
.code-entry {
	margin-top: 15px;
}
/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 575px) {
	header {
		margin-bottom: 20px;
		height: 60px;
	}
	.header-title {
		font-size: 1.6em;
	}
	.header-bar {
		font-size: 1.2em;
	}
	.content-w {
		display: block;
		margin-top: 10px;
	}
	.content-l, .content-r {
		width: 100%;
		margin-bottom: 12px;
	}
	.c-step-b {
		border-radius: 15px;
		margin-bottom: 8px;
	}
	.c-step {
		background: #fff;
		border-radius: 15px;
		padding: 10px 20px;
		display: flex;
		align-items: center;
	}
	.c-step span {
		padding: 0;
		font-size: 0.7em;
	}
	.content-r {
		padding: 0;
	}
	.package-icon-1 {
		width: 50px;
	}
	.username-form-w {
		padding: 40px 30px 40px 30px;
	}
	.package-select-col-w {
		position: relative;
		margin-bottom: 5px;
		width: 100%;
		flex: 0 0 100%;
		padding: 0 5px;
	}
	.package-select-col {
		padding: 15px 15px 8px 15px;
	}
	.package-select-col-m {
		margin: 5px 0 0px 0;
	}
	#console-message {
		font-size: 1.2em;
	}
	.package-select-col-m, .package-select-col-b {
		display: inline-flex;
	}
	.package-select-col-b {
		margin-left: 16px;
	}
	.confirm-profile-overview.confirm-profile-overview-s {
		padding-bottom: 7px;
	}
	.code-entry-c {
		width: 90%;
	}
}


.confirm-screen {
    text-align: center;
}

.confirm-target-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 30px 0 35px;
}

.confirm-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #ff7a5c, #ffb347, #ff5c97);
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}

.confirm-target-text {
    text-align: left;
}

.confirm-target-label {
    font-size: 14px;
    color: #8c8c8c;
    margin-bottom: 2px;
}

.confirm-target-username {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}


.step3-screen {
    text-align: center;
}

.rt-progress-wrap {
    margin: 30px auto 20px;
    max-width: 260px;
}

.rt-progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.rt-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a5c, #ffb347, #ff5c97);
    transition: width 0.06s linear;
}

.rt-progress-percent {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}



.step3-screen {
    min-height: 520px;
    padding-bottom: 30px;
}

.step3-preview {
    text-align: left;
}

/* avatar + username + stats in a row */
.step3-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 26px 0 12px;
    width: 100%;
}

.step3-avatar {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.step3-header-text {
    flex: 1;
}

.step3-username {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step3-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 13px;
    color: #666;
}

.step3-stats span strong {
    font-weight: 600;
    color: #222;
}

.step3-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

/* optional: 4 story circles above the grid */
.step3-stories-row {
    display: flex;
    gap: 10px;
    margin: 18px 0 4px;
    width: 100%;
    justify-content: center;
}

.step3-story-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #ff7a5c, #ffb347, #ff5c97);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step3-story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.step3-preview .mr-wr-step-num {
    display: none;
}


.step3-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 6px;
    width: 100%;
    margin-top: 16px;
}

.step3-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 1 / 1;
}

.step3-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.step3-preview .m-wr-btn-wrapper {
    display: none;
}


/* FORCE the grid photos to be only 1px rounded */
.step3-preview .step3-grid-item img {
    border-radius: 1px !important;
}

/* Also make the grid images slightly bigger & square */
.step3-preview .step3-grid-item {
    border-radius: 1px !important;
    aspect-ratio: 1/1;
}


.locker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.locker-overlay.active {
  display: flex;
}

.locker-popup {
  width: 420px;
  max-width: 95vw;
  max-height: 95vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.locker-popup iframe {
  width: 100%;
  height: 600px;
  border: 0;
}


/* Fix Instagram confirm avatar */
.confirm-avatar {
    width: 60px;
    height: 60px;
    padding: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a5c, #ffb347, #ff5c97);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.confirm-avatar-img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    background: #fff;
}

.terminal-wrap {
  margin-top: 40px;
}

.terminal-window {
  background: #050712;
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #2b1645, #120521);
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.t-red { background: #ff5f57; }
.t-yellow { background: #ffbd2f; }
.t-green { background: #28c840; }

.terminal-body {
  min-height: 140px;
  max-height: 220px;
  padding: 14px 16px;
  background: radial-gradient(circle at top, #15152b 0, #050712 60%);
  color: #00ff9b;
  font-size: 13px;
  line-height: 1.5;
  overflow-y: auto;
}

.terminal-line {
  opacity: 0;
  transform: translateY(6px);
  animation: termLineIn 0.22s ease-out forwards;
}

@keyframes termLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-screen {
  text-align: center;
  min-height: 420px;
  padding-bottom: 30px;
  position: relative;
}

.loader-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7a5c, #ffb347, #ff5c97);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.loader-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;

  height: 28px;              /* LOCK height */
  line-height: 28px;
  white-space: nowrap;      /* single line */
  overflow: hidden;
  text-overflow: ellipsis;
}

.loader-circle-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 18px;
}

.loader-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loader-track {
  fill: none;
  stroke: #f3f3f5;
  stroke-width: 8;
}

.loader-progress {
  fill: none;
  stroke: #ff5c97;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.16s linear;
}

.loader-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.loader-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.loader-username {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

.loader-username span {
  font-weight: 600;
}

.loader-version {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b1b1b1;
}


/* Green pulsing dot */
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1ecb4f;
  box-shadow: 0 0 0 rgba(30, 203, 79, 0.7);
  animation: livePulse 1.4s infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 203, 79, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(30, 203, 79, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 203, 79, 0);
  }
}

/* Force live users + version on ONE line */
.loader-footer {
  position: absolute;
  bottom: 17px;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;
  white-space: nowrap;   /* 🔑 prevents line breaks */
}

/* Ensure text itself doesn't wrap */
.live-users {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}


/* ========= FORCE NEW HEADER (must be LAST in file) ========= */
header.app-header{
  background: transparent !important;
  background-image: none !important;
  height: auto !important;
  min-height: 0 !important;
  display: block !important;          /* kill old flex centering */
  align-items: initial !important;
  justify-content: initial !important;
  box-shadow: none !important;
  margin: 18px 0 25px !important;
  padding: 0 !important;
}

/* Make the pill actually fill the container width */
header.app-header .container{
  display: block;
}

header.app-header .header-b{
  width: 100%;
  border-radius: 999px !important;
  padding: 2px;
  opacity: 1 !important;              /* override c-step-b default */
  transform: none !important;
}

/* Inner white pill */
header.app-header .header-i{
  background: #fff !important;
  border-radius: 999px !important;
  padding: 12px 16px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Text color fix (your old header-slogan was white) */
header.app-header .header-slogan{
  color: #777 !important;
}

/* IMPORTANT: remove the old mobile header height rule */
@media (max-width: 575px){
  header.app-header{
    height: auto !important;
    margin-bottom: 20px !important;
  }
  header.app-header .header-i{
    padding: 10px 12px !important;
  }
}


/* ===== GOONVIEW-STYLE HEADER CONTENT ===== */

/* inner pill layout */
header.app-header .header-i{
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* left group */
.header-left{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* instagram icon badge */
.ig-badge{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  padding: 2px;
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ig-badge img{
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #fff;
  object-fit: cover;
  padding: 7px; /* makes the icon look like the sample */
}

/* brand text */
.brand-name{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
}

.brand-goon{
  background: linear-gradient(135deg, #ff5c97, #ff7a5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-view{
  color: #111;
  margin-left: 2px;
}

/* right status pill */
header.app-header .header-status{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2f3f6;
  font-size: 13px;
  font-weight: 800;
  color: #666;
  white-space: nowrap;
}

/* dot already in your CSS; keeping here for safety */
header.app-header .live-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1ecb4f;
  box-shadow: 0 0 0 6px rgba(30,203,79,0.12);
}

/* mobile sizing */
@media (max-width: 575px){
  .ig-badge{ width: 36px; height: 36px; border-radius: 12px; }
  .ig-badge img{ border-radius: 10px; padding: 6px; }
  .brand-name{ font-size: 18px; }
  header.app-header .header-status{ font-size: 12px; padding: 7px 10px; }
}


:root{
  --soft-shadow: 
    0 2px 3px rgba(0, 0, 0, 0.06),
    0 2px 3px rgba(0, 0, 0, 0.04);
}

/* Header pill */
header.app-header .header-b{
  box-shadow: var(--soft-shadow);
}

/* Step cards (left column) */
.c-step-b{
  box-shadow: var(--soft-shadow);
}

/* Main form card */
.username-form-w{
  box-shadow: var(--soft-shadow);
}

/* Any modal / popup / overlay card */
.code-entry-c,
.locker-popup,
.m-wr-content,
.package-select-col{
  box-shadow: var(--soft-shadow);
}

/* ===== STEP 2 (GOONVIEW CONFIRM CARD) ===== */

.step2-card{
  text-align: center;
  padding: 18px 10px 10px;
}

.step2-top{
  padding: 10px 0 14px;
}

/* avatar ring */
.step2-avatar-ring{
  width: 94px;
  height: 94px;
  border-radius: 999px;
  padding: 3px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #ff7a5c, #ff5c97, #7b3cff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step2-avatar{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #fff;
  object-fit: cover;
  display: block;
}

.step2-username{
  font-size: 34px;
  font-weight: 900;
  color: #111;
  line-height: 1.05;
  margin: 4px 0 10px;
}

.step2-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffe9ef;
  color: #ff2f6d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step2-bio{
  min-height: 18px; /* keeps layout stable even if empty */
  font-size: 14px;
  color: #7a7a7a;
  font-weight: 600;
}

/* stats bar */
.step2-statsbar{
  max-width: 340px;
  margin: 16px auto 18px;
  padding: 14px 10px;
  border-radius: 18px;
  background: #f2f3f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.step2-stat{
  flex: 1;
  text-align: center;
}

.step2-stat-num{
  font-size: 18px;
  font-weight: 900;
  color: #222;
  line-height: 1.1;
}

.step2-stat-lbl{
  font-size: 10px;
  font-weight: 800;
  color: #7b7b7b;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.step2-divider{
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,0.10);
  border-radius: 2px;
}

/* CTA button */
.step2-cta{
  padding: 2px 0 8px;
}

.step2-btn{
  width: 100%;
  max-width: 360px;
  height: 58px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ff7a5c, #ff5c97, #d6005f);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.step2-btn:active{
  transform: translateY(1px);
}

/* mobile tune */
@media (max-width: 575px){
  .step2-username{ font-size: 30px; }
  .step2-btn{ height: 54px; border-radius: 14px; font-size: 17px; }
}

/* Profile Preview Styling */
.confirm-screen {
    text-align: center;
    padding: 20px 0;
}
.profile-preview {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid #eee;
}
.profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #ff5c97;
    margin-bottom: 15px;
    object-fit: cover;
}
.confirm-profile-username-val {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

/* STEP 3 - PREMIUM CENTERED LOADER */
.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Forces everything to the center */
    justify-content: center;
    padding: 30px 0;
    text-align: center;
}

.loader-percent {
    font-size: 54px;
    font-weight: 900;
    color: #ff5c97;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.loader-bar-bg {
    width: 80%; /* Takes up most of the card width */
    max-width: 400px;
    height: 16px;
    background: #f0f0f0;
    border-radius: 50px;
    overflow: hidden;
    margin: 20px auto;
    border: 1px solid #eee;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff7a5c, #ff5c97);
    box-shadow: 0 0 10px rgba(255, 92, 151, 0.5);
    border-radius: 50px;
    transition: width 0.15s linear;
}

.loader-status-text {
    font-size: 13px;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}
/* Updated Centered Loader Layout */
.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.loader-wrapper .mr-wr-step-title {
    margin-bottom: 25px; /* Pushes the title to the top */
    font-size: 24px;
    font-weight: 800;
}

.loader-percent {
    font-size: 42px;
    font-weight: 900;
    color: #ff5c97;
    margin-bottom: 5px;
}

.loader-bar-bg {
    width: 90%;
    max-width: 350px;
    height: 14px;
    background: #f0f0f0;
    border-radius: 50px;
    overflow: hidden;
    margin: 15px auto;
    border: 1px solid #eee;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff7a5c, #ff5c97);
    border-radius: 50px;
    transition: width 0.15s linear;
}

.loader-status-text {
    font-size: 12px;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}