
body {
	overflow-x: hidden;
	/* Red gradient background */
	background: linear-gradient(135deg, #000000 0%, #383838 25%, #222222 50%, #1f1f1f 75%, #202020 100%);
	background-size: 400% 400%;
	animation: redGradientShift 12s ease infinite;
}

@keyframes redGradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.extension {
    font-size: 1.4em;
    font-weight: 700;
    color: #4c4c4c!important;
	display: inline;
}

.accent-color {
    background: linear-gradient(135deg, #ffffff 0%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: redAccentGradient 3s ease infinite;
    font-weight: 700;
}

@keyframes redAccentGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

html {
	overflow-y: scroll;
	overflow-x: hidden;
}
ul {
	list-style: none;
}
textarea, input, a, button { 
	outline: none;
}
.clearfix {
	position: relative;
	clear: both;
}
.container-fluid {
	padding: 0 50px;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	font-family: 'Exo 2', sans-serif;
	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;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
	text-align: center;
	padding: 20px 0;
	background: linear-gradient(135deg, #000000 10%, #0c0c0c 25%);
	background-size: 300% 300%;
	animation: redHeaderGradient 8s ease infinite;
	box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

@keyframes redHeaderGradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
.header-icon-wrapper i, .header-icon-wrapper span.lnr {
	font-size: 5em;
	color: #fff;
	line-height: 1;
	display: inline-block;
}
.site-logo {
	max-width: 60px;
	margin: 0 auto;
	display: table;
	color:#fff;
}
.rainbow-text {
    -webkit-animation: color-change 3s infinite;
    -moz-animation: color-change 3s infinite;
    -o-animation: color-change 3s infinite;
    -ms-animation: color-change 3s infinite;
    animation: color-change 3s infinite;
}
@-webkit-keyframes color-change {
    0% { color: #ffffff; }
}
@keyframes color-change {
    0% { color: #ffffff; }
}
.header-title {
	margin: 0;
	color:#fff;
	display: inline-block;
}

h6 {color:#999!important;font-weight:300!important;letter-spacing: 1px!important;margin-top:10px;}	

.site-logo path {
	-webkit-animation: color-change-svg 3s infinite;
    -moz-animation: color-change-svg 3s infinite;
    -o-animation: color-change-svg 3s infinite;
    -ms-animation: color-change-svg 3s infinite;
    animation: color-change-svg 3s infinite;
}
@-webkit-keyframes color-change-svg {
    0% { fill: #ff0000; }
    16% { fill: #ff3333; }
    32% { fill: #ff6666; }
    48% { fill: #ff9999; }
    64% { fill: #ffcccc; }
    80% { fill: #ffaaaa; }
    100% { fill: #ff0000; }
}
@keyframes color-change-svg {
    0% { fill: #ff0000; }
    16% { fill: #ff3333; }
    32% { fill: #ff6666; }
    48% { fill: #ff9999; }
    64% { fill: #ffcccc; }
    80% { fill: #ffaaaa; }
    100% { fill: #ff0000; }
}
/*--------------------------------------------------------------
# Live Search
--------------------------------------------------------------*/
.live-search-section {
	position: relative;
	padding: 25px 0;
	background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
	background-size: 200% 200%;
	animation: redSearchGradient 6s ease infinite;
	box-shadow: 0 2px 15px rgba(0,0,0,0.4);
}
.sp-input {
	width: 100%;
	height: 60px;
	padding: 0 10px 0 65px;
	font-size: 1.4em;
	border-radius: 15px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}
#live-search fieldset {
	position: relative;
}
#live-search fieldset i, #live-search fieldset span.lnr {
	position: absolute;
	font-size: 2em;
	top: 14px;
	left: 20px;
	color: #fff;
	transition: all 0.3s ease;
	animation: searchIconPulse 2s ease-in-out infinite;
}

@keyframes searchIconPulse {
	0% { transform: scale(1); color: #fff; }
	50% { transform: scale(1.1); color: #ff0000; }
	100% { transform: scale(1); color: #fff; }
}
#filter-count {
	display: block;
	text-align: center;
	color: #999;
	font-size: 0.7em;
	margin: 3px 0 0 0;
	position: absolute;
	bottom: -20px;
	left: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 300;
	width: 100%;
}


.title-under {
    position: absolute;
    left: 26px;
    top: 100px;
    width: 22%;
    z-index: 20;
    color: #fff;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*--------------------------------------------------------------
# App Line Grid
--------------------------------------------------------------*/
.app-line-grid-section {
	position: relative;
	padding: 10px 0 20px 0;
}
ul.app-line-grid {
	padding: 0;
	margin: 0;
}
.app-line-grid-item {
	position: relative;
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding: 15px 0;
	
	border-radius: 10px;
	margin: 5px 0;
	transition: all 0.3s ease;
	animation: floatIn 0.6s ease-out;
}

@keyframes floatIn {
	0% { 
		opacity: 0; 
		transform: translateY(20px) scale(0.95); 
	}
	100% { 
		opacity: 1; 
		transform: translateY(0) scale(1); 
	}
}
.app-line-grid-item:after {
	content: '';
	height: 100%;
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 51, 51, 0.1) 25%, rgba(255, 102, 102, 0.1) 50%, rgba(255, 153, 153, 0.1) 75%, rgba(255, 204, 204, 0.1) 100%);
	background-size: 200% 200%;
	animation: redCardGradient 4s ease infinite;
	z-index: -1;
	opacity: 0;
	border-radius: 10px;
	transition: all 0.3s ease;
}

@keyframes redCardGradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
.app-line-grid-item:last-child {
	border-bottom: none;
}
.app-line-grid-item:hover::after {
	opacity: 1;
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.app-line-grid-item .app-img-wrapper {
	position: relative;
	width: 5%;
	float: left;
	padding-right: 10px;
}
.app-line-grid-item .app-meta-wrapper {
	position: relative;
	width: 95%;
	float: left;
	padding-left: 10px;
	padding-top: 2px;
}
.app-meta-wrapper:after {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: 900;
    font-style: normal;
	position: absolute;
	right: 0;
	top: 20px;
	font-size: 2em;
	color: rgba(51, 51, 51,0.5);
}
.app-img {
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.app-img:hover {
	border-color: #ff0000;
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}
.app-author {
	font-size: 0.9em;
}
.app-title {
	font-weight: 700;
	color: #fff;
	font-size: 1.2em;
}
.app-description {
	color: #999;
}

/*--------------------------------------------------------------
# App Modal Holder
--------------------------------------------------------------*/
#app-modal-holder {
	max-width: 600px;
	margin: 0 auto;
}
.app-modal-holder-top-wrapper {
	position: relative;
	padding: 30px 50px 0 50px;
	background: #151515;
	-webkit-border-top-left-radius: 15px;
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topleft: 15px;
	-moz-border-radius-topright: 15px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.mockup-holder {
	position: relative;
	display: table;
	margin: 0 auto;
	width: 270px;
}
.phone-mockup {
	position: relative;
	width: 100%;
}
.mockup-icon {
	position: absolute;
	left: 31px;
	top: 55px;
	border-radius: 8px;
	max-width: 42px;
	max-height: 42px;
	z-index: 20;
}
.app-modal-holder-bottom-wrapper {
	position: relative;
	padding: 30px 50px 60px 50px;
	background: #15151e;
	text-align: center;
	color: #fff;
	-webkit-border-bottom-right-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-radius-bottomright: 15px;
	-moz-border-radius-bottomleft: 15px;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
}
.app-modal-holder-bottom-wrapper h2 {
	margin: 0 0 10px 0;
}
#process-holder {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1050;
	display: flex;
    align-items: center;
}
.processing-wrapper {
	margin: 0 auto;
	border-radius: 12px;
	background: #fff;
	padding: 30px 20px;
	width: 290px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7), 0 3px 5px 0 rgba(0, 0, 0, 0.3);
}
.processing-title {
	font-size: 1.5em;
	font-weight: 700;
	margin: 0 0 15px 0;
	text-align: center;
	color: #000;
}
.processing-msg {
	font-size: 0.95em;
	text-align: center;
	font-weight: 400;
}
.console-loadbar {
	width: 90%;
	position: relative;
	margin: 15px auto 0 auto;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 7px;
}
.console-loadbar div {
	font-size: 5px;
	text-indent: 9999px;
	overflow: hidden;
	border-radius: 7px;
}
/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.app-btn-wrapper {
	margin: 20px auto 0 auto;
}
.app-btn {
	width: 100%;
	max-width: 270px;
	margin: 0 auto;
	padding: 15px 10px;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	border-radius: 5px;
	
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 1440px) {
	.app-line-grid-item .app-img-wrapper {
		width: 7%;
	}
	.app-line-grid-item .app-meta-wrapper {
		width: 93%;
	}
}
@media screen and (max-width: 993px) {
	.app-line-grid-item .app-img-wrapper {
		width: 10%;
	}
	.app-line-grid-item .app-meta-wrapper {
		width: 90%;
	}
}
@media screen and (max-width: 767px) {
	.app-line-grid-item .app-img-wrapper {
		width: 15%;
	}
	.app-line-grid-item .app-meta-wrapper {
		width: 85%;
	}
	.app-meta-wrapper:after {
		top: 5px;
	}
}
@media screen and (max-width: 550px) {
	.container-fluid {
		padding: 0 15px;
	}
	.app-line-grid-item {
		display: flex;
		align-items: center;
	}
}
@media screen and (max-width: 460px) {
	.app-line-grid-item .app-img-wrapper {
		width: 20%;
	}
	.app-line-grid-item .app-meta-wrapper {
		width: 80%;
	}
	.app-modal-holder-bottom-wrapper {
		padding: 20px 20px 40px 20px;
	}
}
@media screen and (max-width: 400px) {
	.live-search-section {
		padding: 15px 0;
	}
	.site-logo {
		max-width: 45px;
	}
	.header-title {
		font-size: 2em;
	}
	.app-line-grid-item {
		padding: 12px 0;
	}
	.app-author {
		font-size: 0.75em;
	}
	.app-title {
		font-size: 1em;
	}
	.app-description {
		font-size: 0.8em;
	}
}
@media screen and (max-width: 360px) {
	.mockup-holder {
		width: 200px;
	}
	.mockup-icon {
		left: 23px;
		top: 41px;
		border-radius: 7px;
		max-width: 30px;
		max-height: 30px;
	}
	.app-modal-holder-bottom-wrapper {
		padding: 20px 15px 40px 15px;
	}
	.app-modal-holder-bottom-wrapper h2 {
		font-size: 1.7em;
	}
}

/*--------------------------------------------------------------
# Modal Styles
--------------------------------------------------------------*/
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(15px);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
	0% { 
		opacity: 0; 
		backdrop-filter: blur(0px);
	}
	100% { 
		opacity: 1; 
		backdrop-filter: blur(15px);
	}
}

.modal-container {
	background: linear-gradient(135deg, #ff3333 0%, #cc1111 50%, #990000 100%);
	border-radius: 25px;
	box-shadow: 
		0 25px 80px rgba(0, 0, 0, 0.6),
		0 0 0 1px rgba(255, 255, 255, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	max-width: 500px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	backdrop-filter: blur(20px);
}

@keyframes modalSlideIn {
	0% { 
		transform: translateY(-100px) scale(0.8) rotateX(20deg); 
		opacity: 0; 
		filter: blur(10px);
	}
	100% { 
		transform: translateY(0) scale(1) rotateX(0deg); 
		opacity: 1; 
		filter: blur(0px);
	}
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 30px 20px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-app-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.modal-app-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-app-title {
	color: #fff;
	font-size: 1.5em;
	font-weight: 700;
	margin: 0 0 5px 0;
}

.modal-app-author {
	color: #ffcccc;
	font-size: 0.9em;
	margin: 0 0 5px 0;
	font-weight: 600;
}

.modal-app-description {
	color: #fff;
	font-size: 0.9em;
	margin: 0;
	opacity: 0.9;
}

.modal-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 2em;
	
	padding: 5px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.1);
}

.modal-content {
	padding: 30px;
}

.injection-info h3 {
	color: #fff;
	font-size: 1.3em;
	margin: 0 0 15px 0;
}

.injection-info p {
	color: #ffcccc;
	margin: 0 0 20px 0;
	line-height: 1.5;
}

.injection-steps {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.injection-steps li {
	color: #fff;
	padding: 8px 0;
	font-size: 0.95em;
	display: flex;
	align-items: center;
	gap: 10px;
}

.start-injection-btn {
	width: 100%;
	background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
	color: #fff;
	border: none;
	padding: 15px 20px;
	font-size: 1.1em;
	font-weight: 700;
	border-radius: 12px;
	
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.start-injection-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
	background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

/* Injection Modal */
.injection-modal {
	max-width: 400px;
}

.injection-header {
	text-align: center;
	padding: 30px 30px 20px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.injection-header h2 {
	color: #fff;
	margin: 0 0 15px 0;
	font-size: 1.4em;
}

.injection-icon {
	font-size: 3em;
	animation: injectionPulse 2s ease-in-out infinite;
}

@keyframes injectionPulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

.injection-content {
	padding: 30px;
}

.progress-bar {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 20px;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff0000 0%, #ff6666 100%);
	border-radius: 4px;
	width: 0%;
	transition: width 0.3s ease;
	animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
	0% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
	50% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.8); }
	100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
}

.injection-status {
	color: #fff;
	font-size: 1.1em;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.injection-details {
	color: #ffcccc;
	font-size: 0.9em;
	text-align: center;
}

.loading-dots {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-top: 10px;
}

.loading-dots span {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	animation: loadingDots 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
	animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes loadingDots {
	0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
	40% { transform: scale(1.2); opacity: 1; }
}

/* Verification Modal */
.verification-modal {
	max-width: 450px;
}

.verification-header {
	text-align: center;
	padding: 30px 30px 20px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.verification-header h2 {
	color: #fff;
	margin: 0 0 15px 0;
	font-size: 1.4em;
}

.verification-icon {
	font-size: 3em;
	animation: verificationBounce 2s ease-in-out infinite;
}

@keyframes verificationBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.verification-content {
	padding: 30px;
}

.verification-content p {
	color: #ffcccc;
	margin: 0 0 25px 0;
	text-align: center;
	line-height: 1.5;
}

.verification-steps {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.verification-step h4 {
	color: #fff;
	font-size: 1.1em;
	margin: 0 0 15px 0;
}

.verification-step p {
	color: #ffcccc;
	margin: 0 0 15px 0;
	text-align: left;
}

.captcha-container {
	display: flex;
	justify-content: center;
}

.captcha-box {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.captcha-text {
	color: #fff;
	display: block;
	margin-bottom: 15px;
	text-align: center;
	font-weight: 600;
}

.captcha-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	width: 150px;
}

.captcha-square {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	
	transition: all 0.3s ease;
}

.captcha-square:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
}

.captcha-square.selected {
	background: #ff0000;
	border-color: #ff3333;
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.verification-progress {
	margin-top: 15px;
}

.verification-bar {
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	overflow: hidden;
}

.verification-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff0000 0%, #ff6666 100%);
	border-radius: 3px;
	width: 0%;
	transition: width 0.3s ease;
}

/* Complete Verification Button */
.complete-verification-btn {
	width: 100%;
	background: linear-gradient(135deg, #ff0000 0%, #ff3333 50%, #ff0000 100%);
	background-size: 200% 200%;
	color: #fff;
	border: none;
	padding: 18px 25px;
	font-size: 1.2em;
	font-weight: 700;
	border-radius: 15px;
	
	transition: all 0.3s ease;
	box-shadow: 
		0 8px 25px rgba(255, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.1);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
	overflow: hidden;
	animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
	0% { 
		transform: scale(1);
		box-shadow: 
			0 8px 25px rgba(255, 0, 0, 0.4),
			0 0 0 1px rgba(255, 255, 255, 0.1);
	}
	50% { 
		transform: scale(1.05);
		box-shadow: 
			0 12px 35px rgba(255, 0, 0, 0.6),
			0 0 20px rgba(255, 0, 0, 0.3),
			0 0 0 1px rgba(255, 255, 255, 0.2);
	}
	100% { 
		transform: scale(1);
		box-shadow: 
			0 8px 25px rgba(255, 0, 0, 0.4),
			0 0 0 1px rgba(255, 255, 255, 0.1);
	}
}

.complete-verification-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 
		0 15px 40px rgba(255, 0, 0, 0.5),
		0 0 25px rgba(255, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.3);
	background: linear-gradient(135deg, #ff3333 0%, #ff6666 50%, #ff3333 100%);
}

.complete-verification-btn:active {
	transform: translateY(-1px) scale(0.98);
}

.complete-verification-btn.waiting {
	background: linear-gradient(135deg, #666666 0%, #888888 50%, #666666 100%);
	animation: none;
	transform: scale(1);
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.1);
	cursor: not-allowed;
}

.complete-verification-btn.waiting:hover {
	transform: scale(1);
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.1);
}

.complete-verification-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.complete-verification-btn:hover::before {
	left: 100%;
}

/* Responsive Modal */
@media screen and (max-width: 600px) {
	.modal-container {
		width: 95%;
		margin: 20px;
	}
	
	.modal-header {
		padding: 20px;
	}
	
	.modal-content {
		padding: 20px;
	}
	
	.modal-app-info {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
	
	.captcha-grid {
		width: 120px;
	}
	
	.captcha-square {
		width: 35px;
		height: 35px;
	}
}

/*--------------------------------------------------------------
# Injection Page Styles
--------------------------------------------------------------*/
.injection-page-header {
	background: linear-gradient(135deg, #ff4444 0%, #ff2222 25%, #cc0000 50%, #aa0000 75%, #880000 100%);
	background-size: 300% 300%;
	animation: redHeaderGradient 8s ease infinite;
	padding: 40px 0;
	box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.app-info-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	position: relative;
}

.app-info-content {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 20px;
}

.app-icon-large {
	width: 80px;
	height: 80px;
	border-radius: 15px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.app-title-large {
	color: #fff;
	font-size: 2.2em;
	font-weight: 700;
	margin: 0 0 10px 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.app-author-large {
	color: #ffcccc;
	font-size: 1.1em;
	margin: 0 0 10px 0;
	font-weight: 600;
}

.app-description-large {
	color: #fff;
	font-size: 1em;
	margin: 0;
	opacity: 0.9;
	line-height: 1.5;
}

.back-button {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 12px 20px;
	border-radius: 10px;
	
	transition: all 0.3s ease;
	font-size: 1em;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.back-button:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.injection-process-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #ff0000 0%, #cc0000 25%, #990000 50%, #660000 75%, #330000 100%);
	background-size: 400% 400%;
	animation: redGradientShift 12s ease infinite;
	min-height: 60vh;
}

.injection-container {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	padding: 40px;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
	max-width: 600px;
	margin: 0 auto;
}

.injection-header {
	text-align: center;
	margin-bottom: 40px;
}

.injection-header h2 {
	color: #fff;
	font-size: 2em;
	margin: 0 0 20px 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.injection-icon {
	font-size: 4em;
	animation: injectionPulse 2s ease-in-out infinite;
}

.verification-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #ff3333 0%, #cc1111 50%, #990000 100%);
	background-size: 200% 200%;
	animation: redSearchGradient 6s ease infinite;
	min-height: 60vh;
}

.verification-container {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	padding: 40px;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
	max-width: 600px;
	margin: 0 auto;
}

.verification-header {
	text-align: center;
	margin-bottom: 40px;
}

.verification-header h2 {
	color: #fff;
	font-size: 2em;
	margin: 0 0 20px 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.verification-icon {
	font-size: 4em;
	animation: verificationBounce 2s ease-in-out infinite;
}

.verification-content p {
	color: #ffcccc;
	margin: 0 0 30px 0;
	text-align: center;
	line-height: 1.6;
	font-size: 1.1em;
}

.verification-steps {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.verification-step h4 {
	color: #fff;
	font-size: 1.3em;
	margin: 0 0 15px 0;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.verification-step p {
	color: #ffcccc;
	margin: 0 0 20px 0;
	text-align: left;
	font-size: 1em;
}

.captcha-container {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.captcha-box {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.captcha-text {
	color: #fff;
	display: block;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 600;
	font-size: 1.1em;
}

.captcha-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	width: 180px;
}

.captcha-square {
	width: 55px;
	height: 55px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	
	transition: all 0.3s ease;
}

.captcha-square:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.captcha-square.selected {
	background: #ff0000;
	border-color: #ff3333;
	box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
	transform: scale(1.1);
}

.verification-progress {
	margin-top: 20px;
}

.verification-bar {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.verification-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff0000 0%, #ff6666 100%);
	border-radius: 4px;
	width: 0%;
	transition: width 0.3s ease;
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Responsive Injection Page */
@media screen and (max-width: 768px) {
	.app-info-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	
	.app-icon-large {
		width: 70px;
		height: 70px;
	}
	
	.app-title-large {
		font-size: 1.8em;
	}
	
	.injection-container,
	.verification-container {
		margin: 0 20px;
		padding: 30px 20px;
	}
	
	.captcha-grid {
		width: 150px;
	}
	
	.captcha-square {
		width: 45px;
		height: 45px;
	}
}