* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	overflow-y: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

 body {
	 font-family: 'Segoe UI', 'Arial', sans-serif;
	 background: linear-gradient(135deg, 
		 #c2ddf5 0%, 
		 #d5c1e3 25%, 
		 #bdd9d5 50%, 
		 #cde3c1 75%, 
		 #e8d6b8 100%);
	 background-size: 400% 400%;
	 animation: gradientWave 8s ease-in-out infinite;
	 background-attachment: fixed;
	 min-height: 100vh;
	 width: 100%;
	 margin: 0;
	 padding: 0;
	 overflow-x: hidden;
	 overflow-y: auto;
 }

body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(80, 90, 100, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(90, 80, 95, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(85, 95, 90, 0.12) 0%, transparent 50%),
		linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
	z-index: -1;
}

@keyframes gradientWave {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.container {
	padding: 20px;
	text-align: center;
	width: 100%;
	min-height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


.container::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	height: 6px;
	background: linear-gradient(90deg, 
		transparent 0%,
		#42a5f5 20%,
		#ab47bc 50%,
		#42a5f5 80%,
		transparent 100%);
	border-radius: 20px;
	pointer-events: none;
	animation: topGlow 3s ease-in-out infinite;
}

.container::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: -3px;
	right: -3px;
	height: 6px;
	background: linear-gradient(90deg, 
		transparent 0%,
		#42a5f5 20%,
		#ab47bc 50%,
		#42a5f5 80%,
		transparent 100%);
	border-radius: 20px;
	pointer-events: none;
	animation: bottomGlow 3s ease-in-out infinite reverse;
}

.tech-decoration {
	position: absolute;
	pointer-events: none;
}

.tech-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: radial-gradient(circle, #42a5f5 0%, rgba(66, 165, 245, 0.3) 70%, transparent 100%);
	box-shadow: 
		0 0 20px rgba(66, 165, 245, 0.6),
		0 0 40px rgba(66, 165, 245, 0.3);
	animation: modernPulse 2s ease-in-out infinite;
}

.tech-dot.top-left {
	top: 20px;
	left: 20px;
	animation-delay: 0s;
}

.tech-dot.top-right {
	top: 20px;
	right: 20px;
	animation-delay: 0.5s;
}

.tech-dot.bottom-left {
	bottom: 20px;
	left: 20px;
	animation-delay: 1s;
}

.tech-dot.bottom-right {
	bottom: 20px;
	right: 20px;
	animation-delay: 1.5s;
}

/* 中心现代脉冲装饰 */
.tech-pulse.center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #42a5f5;
	box-shadow: 
		0 0 0 0 rgba(66, 165, 245, 0.8),
		0 0 0 20px rgba(66, 165, 245, 0.4),
		0 0 0 40px rgba(66, 165, 245, 0.2);
	animation: centerPulse 3s ease-out infinite;
}

.tech-orbit {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 220px;
	height: 220px;
	border: 2px solid rgba(66, 165, 245, 0.3);
	border-radius: 50%;
	animation: rotate 20s linear infinite;
}

.tech-orbit::before {
	content: '✨';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	filter: drop-shadow(0 0 8px rgba(66, 165, 245, 0.8));
}

.tech-grid {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		linear-gradient(rgba(66, 165, 245, 0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(66, 165, 245, 0.12) 1px, transparent 1px);
	background-size: 25px 25px;
	border-radius: 50px;
	opacity: 0.4;
}

.tech-orbit-2 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140px;
	height: 140px;
	border: 2px solid rgba(171, 71, 188, 0.3);
	border-radius: 50%;
	animation: rotate 16s linear infinite reverse;
}

.tech-orbit-2::before {
	content: '◆';
	position: absolute;
	top: -6px;
	right: 35px;
	font-size: 12px;
	filter: drop-shadow(0 0 6px rgba(171, 71, 188, 0.8));
}

.tech-scanner {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50px;
	overflow: hidden;
}

.tech-scanner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -10px;
	right: -10px;
	height: 3px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(66, 165, 245, 0.8) 50%, 
		transparent 100%);
	border-radius: 10px;
	animation: scan 5s ease-in-out infinite;
}

.tech-hexagon {
	top: 30px;
	right: 30px;
	width: 28px;
	height: 28px;
	background: rgba(66, 165, 245, 0.2);
	border: 2px solid rgba(66, 165, 245, 0.5);
	border-radius: 50%;
	animation: modernFloat 4s ease-in-out infinite;
}

.tech-hexagon::before {
	content: '●';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 8px;
	color: #42a5f5;
}

.tech-data-stream {
	left: 15px;
	width: 4px;
	height: 40px;
	background: linear-gradient(180deg, 
		transparent 0%, 
		rgba(66, 165, 245, 0.7) 50%, 
		transparent 100%);
	border-radius: 10px;
}

.tech-data-stream.top {
	top: 80px;
	animation: dataFlow 3s ease-in-out infinite;
}

.tech-data-stream.bottom {
	bottom: 80px;
	animation: dataFlow 3s ease-in-out infinite reverse;
}

/* 现代角落框架装饰 */
.tech-corner-frame {
	width: 30px;
	height: 30px;
	border: 3px solid rgba(66, 165, 245, 0.6);
}

.tech-corner-frame.top-left {
	top: 15px;
	left: 15px;
	border-right: none;
	border-bottom: none;
	border-radius: 15px 0 0 0;
}

.tech-corner-frame.top-right {
	top: 15px;
	right: 15px;
	border-left: none;
	border-bottom: none;
	border-radius: 0 15px 0 0;
}

.tech-corner-frame.bottom-left {
	bottom: 15px;
	left: 15px;
	border-right: none;
	border-top: none;
	border-radius: 0 0 0 15px;
}

.tech-corner-frame.bottom-right {
	bottom: 15px;
	right: 15px;
	border-left: none;
	border-top: none;
	border-radius: 0 0 15px 0;
}

@keyframes modernPulse {
	0%, 100% { 
		opacity: 0.7;
		transform: scale(1);
		box-shadow: 
			0 0 20px rgba(66, 165, 245, 0.6),
			0 0 40px rgba(66, 165, 245, 0.3);
	}
	50% { 
		opacity: 1;
		transform: scale(1.3);
		box-shadow: 
			0 0 25px rgba(66, 165, 245, 0.8),
			0 0 50px rgba(66, 165, 245, 0.4);
	}
}

@keyframes modernFloat {
	0%, 100% {
		transform: translateY(0px);
		opacity: 0.8;
	}
	50% {
		transform: translateY(-8px);
		opacity: 1;
	}
}

@keyframes centerPulse {
	0% {
		box-shadow: 
			0 0 0 0 rgba(66, 165, 245, 0.8),
			0 0 0 20px rgba(66, 165, 245, 0.4),
			0 0 0 40px rgba(66, 165, 245, 0.2);
	}
	70% {
		box-shadow: 
			0 0 0 20px rgba(66, 165, 245, 0),
			0 0 0 40px rgba(66, 165, 245, 0),
			0 0 0 60px rgba(66, 165, 245, 0);
	}
	100% {
		box-shadow: 
			0 0 0 0 rgba(66, 165, 245, 0),
			0 0 0 20px rgba(66, 165, 245, 0),
			0 0 0 40px rgba(66, 165, 245, 0);
	}
}

@keyframes rotate {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scan {
	0%, 100% {
		top: -50%;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		top: 100%;
		opacity: 0;
	}
}

@keyframes hexagonPulse {
	0%, 100% {
		transform: rotate(45deg) scale(1);
		opacity: 0.6;
	}
	50% {
		transform: rotate(45deg) scale(1.1);
		opacity: 1;
	}
}

@keyframes dataFlow {
	0%, 100% {
		opacity: 0.3;
		height: 20px;
	}
	50% {
		opacity: 1;
		height: 40px;
	}
}

@keyframes topGlow {
	0%, 100% {
		opacity: 0.6;
	}
	50% {
		opacity: 1;
	}
}

@keyframes bottomGlow {
	0%, 100% {
		opacity: 0.6;
	}
	50% {
		opacity: 1;
	}
}

@keyframes titleGlow {
	0%, 100% {
		text-shadow: 
			0 2px 4px rgba(0, 0, 0, 0.1);
	}
	50% {
		text-shadow: 
			0 2px 8px rgba(0, 0, 0, 0.15);
	}
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes sparkle {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

@keyframes scanLine {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes percentPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.title {
	color: #1976d2;
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 15px;
	text-transform: none;
	letter-spacing: 1px;
	text-shadow: 
		0 3px 6px rgba(25, 118, 210, 0.3),
		0 0 20px rgba(25, 118, 210, 0.2);
	font-family: 'Segoe UI', 'Arial', sans-serif;
}

.subtitle {
	background: linear-gradient(45deg, #42a5f5, #ab47bc, #26c6da);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	font-size: 24px;
	font-weight: 600;
	font-family: 'Segoe UI', 'Arial', sans-serif;
	letter-spacing: 1px;
	animation: gradientShift 4s ease-in-out infinite;
	position: relative;
}

.subtitle::before {
	content: '◆ ';
	color: #42a5f5;
	position: absolute;
	left: -35px;
	animation: sparkle 2s infinite;
}

.subtitle::after {
	content: ' ◆';
	color: #ab47bc;
	position: absolute;
	right: -35px;
	animation: sparkle 2s infinite reverse;
}

.robot {
	width: 180px;
	height: 180px;
	position: relative;
	margin: 25px auto -60px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	animation: modernFloat 3s ease-in-out infinite;
}

.robot img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 15px 35px rgba(66, 165, 245, 0.4));
	border-radius: 20px;
}


.accuracy-box {
	background: linear-gradient(135deg, 
		rgba(227, 242, 253, 0.9) 0%,
		rgba(243, 229, 245, 0.95) 50%,
		rgba(224, 242, 241, 0.9) 100%);
	border-radius: 25px;
	padding: 30px;
	margin: 25px 0 0 0;
	color: #4a4a4a;
	position: relative;
	z-index: 10;
	box-shadow: 
		0 15px 40px rgba(66, 165, 245, 0.2),
		inset 0 2px 0 rgba(255, 255, 255, 0.9),
		inset 0 -2px 0 rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(66, 165, 245, 0.4);
}

.accuracy-box::before {
	content: '◆ 分析レポート ◆';
	position: absolute;
	top: -15px;
	left: 25px;
	background: rgba(255, 255, 255, 0.95);
	color: #1976d2;
	padding: 5px 15px;
	font-size: 12px;
	font-family: 'Segoe UI', 'Arial', sans-serif;
	letter-spacing: 1px;
	border: 2px solid rgba(66, 165, 245, 0.5);
	border-radius: 15px;
}


.accuracy-title {
	font-size: 18px;
	margin-bottom: 15px;
	color: #666;
	font-weight: 600;
	font-family: 'Segoe UI', 'Arial', sans-serif;
	letter-spacing: 0.5px;
}

.accuracy-percent {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 18px;
	background: linear-gradient(45deg, #42a5f5, #ab47bc, #26c6da);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: 'Segoe UI', 'Arial', sans-serif;
	animation: percentPulse 2.5s ease-in-out infinite;
}

.accuracy-desc {
	font-size: 16px;
	color: #777;
	font-family: 'Segoe UI', 'Arial', sans-serif;
	opacity: 0.9;
	line-height: 1.5;
}

.input-container {
	margin: 30px 0;
	width: 100%;
}

.stock-input {
	width: 100%;
	padding: 18px 25px;
	font-size: 16px;
	border: 3px solid rgba(66, 165, 245, 0.4);
	border-radius: 25px;
	background: rgba(255, 255, 255, 0.95);
	color: #555;
	text-align: center;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	font-family: 'Segoe UI', 'Arial', sans-serif;
	letter-spacing: 0.5px;
	box-shadow: 
		0 8px 25px rgba(66, 165, 245, 0.1),
		inset 0 2px 0 rgba(255, 255, 255, 0.9),
		inset 0 -2px 0 rgba(255, 255, 255, 0.9);
}

.stock-input::placeholder {
	color: rgba(170, 170, 170, 0.8);
	font-family: 'Segoe UI', 'Arial', sans-serif;
	letter-spacing: 0.5px;
}

.stock-input:focus {
	outline: none;
	border-color: #42a5f5;
	box-shadow: 
		0 0 0 4px rgba(66, 165, 245, 0.2),
		0 10px 30px rgba(66, 165, 245, 0.2),
		inset 0 2px 0 rgba(255, 255, 255, 1),
		inset 0 -2px 0 rgba(255, 255, 255, 1);
	background: rgba(255, 255, 255, 1);
	color: #444;
	transform: translateY(-2px);
}

.analyze-btn {
	width: 100%;
	padding: 20px;
	font-size: 18px;
	font-weight: 700;
	background: linear-gradient(135deg, 
		rgba(240, 240, 240, 0.9) 0%, 
		rgba(250, 250, 250, 0.8) 50%, 
		rgba(240, 240, 240, 0.9) 100%);
	color: rgba(150, 150, 150, 0.6);
	border: 3px solid rgba(200, 200, 200, 0.3);
	border-radius: 25px;
	cursor: not-allowed;
	transition: all 0.4s ease;
	letter-spacing: 1px;
	font-family: 'Segoe UI', 'Arial', sans-serif;
	box-shadow: 
		0 8px 25px rgba(0, 0, 0, 0.05),
		inset 0 2px 0 rgba(255, 255, 255, 0.9),
		inset 0 -2px 0 rgba(255, 255, 255, 0.9);
	opacity: 0.7;
}

.analyze-btn.active {
	background: linear-gradient(135deg, 
		rgba(66, 165, 245, 0.2) 0%, 
		rgba(171, 71, 188, 0.2) 50%, 
		rgba(38, 198, 218, 0.2) 100%);
	color: #555;
	border: 3px solid rgba(66, 165, 245, 0.5);
	cursor: pointer;
	box-shadow: 
		0 10px 35px rgba(66, 165, 245, 0.25),
		inset 0 2px 0 rgba(255, 255, 255, 0.95),
		inset 0 -2px 0 rgba(255, 255, 255, 0.95),
		0 0 45px rgba(66, 165, 245, 0.15);
	opacity: 1;
	font-weight: 800;
}

.analyze-btn.active::before {
	content: '◆ ';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #42a5f5;
	animation: sparkle 1.5s infinite;
}

.analyze-btn.active::after {
	content: ' ◆';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #ab47bc;
	animation: sparkle 1.5s infinite reverse;
}

@keyframes readyGlow {
	0% { opacity: 0.5; }
	100% { opacity: 1; }
}

.analyze-btn.active:hover {
	transform: translateY(-2px) scale(1.02);
	background: linear-gradient(135deg, 
		rgba(74, 144, 226, 0.25) 0%, 
		rgba(0, 191, 255, 0.25) 50%, 
		rgba(74, 144, 226, 0.25) 100%);
	box-shadow: 
		0 12px 40px rgba(74, 144, 226, 0.25),
		inset 0 2px 0 rgba(255, 255, 255, 0.95),
		inset 0 -2px 0 rgba(255, 255, 255, 0.95),
		0 0 50px rgba(74, 144, 226, 0.15);
}

.analyze-btn.active:active {
	transform: translateY(0px) scale(0.98);
	background: linear-gradient(135deg, 
		rgba(74, 144, 226, 0.3) 0%, 
		rgba(0, 191, 255, 0.3) 50%, 
		rgba(74, 144, 226, 0.3) 100%);
	box-shadow: 
		0 4px 20px rgba(74, 144, 226, 0.3),
		inset 0 4px 8px rgba(0, 0, 0, 0.1),
		0 0 30px rgba(74, 144, 226, 0.2);
}

.analyze-btn.clicked {
	animation: buttonPulse 0.6s ease-out;
}

@keyframes buttonPulse {
	0% { 
		transform: scale(1);
		box-shadow: 0 6px 20px rgba(74, 144, 226, 0.2);
	}
	50% { 
		transform: scale(1.05);
		box-shadow: 
			0 10px 35px rgba(74, 144, 226, 0.3),
			0 0 35px rgba(74, 144, 226, 0.4);
	}
	100% { 
		transform: scale(1);
		box-shadow: 0 6px 20px rgba(74, 144, 226, 0.2);
	}
}

.premium-badge {
	background: linear-gradient(135deg, 
		rgba(227, 242, 253, 0.9) 0%, 
		rgba(243, 229, 245, 0.95) 100%);
	color: #1976d2;
	padding: 15px 30px;
	border-radius: 20px;
	font-weight: 700;
	display: inline-block;
	font-size: 16px;
	font-family: 'Segoe UI', 'Arial', sans-serif;
	letter-spacing: 1px;
	border: 2px solid rgba(66, 165, 245, 0.4);
	box-shadow: 
		0 8px 25px rgba(66, 165, 245, 0.15),
		inset 0 2px 0 rgba(255, 255, 255, 0.9),
		inset 0 -2px 0 rgba(255, 255, 255, 0.9);
	position: relative;
}

.premium-badge::before {
	content: '◆ ';
	color: #42a5f5;
}

.premium-badge::after {
	content: ' ◆';
	color: #ab47bc;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
}

.modal-content {
	background: rgba(255, 255, 255, 0.95);
	margin: 10% auto;
	padding: 40px;
	border-radius: 30px;
	width: 90%;
	max-width: 520px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 
		0 30px 60px rgba(0, 0, 0, 0.15),
		0 0 0 1px rgba(255, 255, 255, 0.8),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	position: relative;
	backdrop-filter: blur(10px);
}

.modal-title {
	color: #2c3e50;
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 600;
}

.progress-container {
	background: rgba(233, 236, 239, 0.6);
	border-radius: 15px;
	height: 24px;
	margin: 25px 0;
	overflow: hidden;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress-bar {
	height: 100%;
	background: linear-gradient(45deg, #4a90e2, #00bfff);
	width: 0%;
	border-radius: 15px;
	transition: width 0.1s ease;
	box-shadow: 0 0 25px rgba(74, 144, 226, 0.3);
}

.progress-text {
	color: #6c757d;
	margin: 12px 0;
	font-size: 16px;
	font-weight: 500;
}

.completion-content {
	display: none;
}

.success-icon {
	font-size: 60px;
	color: #4a90e2;
	margin-bottom: 20px;
	filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.2));
}

.completion-title {
	color: #2c3e50;
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 600;
}

.whatsapp-btn {
	background: linear-gradient(135deg, #4a90e2 0%, #00bfff 50%, #4a90e2 100%);
	color: #ffffff;
	padding: 16px 32px;
	border: 2px solid rgba(74, 144, 226, 0.3);
	border-radius: 15px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 25px;
	box-shadow: 
		0 6px 20px rgba(74, 144, 226, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 0 15px rgba(74, 144, 226, 0.15);
}

.whatsapp-btn:hover {
	transform: translateY(-3px);
	background: linear-gradient(135deg, #357abd 0%, #0099cc 50%, #357abd 100%);
	box-shadow: 
		0 10px 30px rgba(74, 144, 226, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.3),
		0 0 25px rgba(74, 144, 226, 0.2);
}

.close {
	color: #6c757d;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 15px;
	transition: all 0.3s ease;
}

.close:hover {
	color: #2c3e50;
	transform: scale(1.1);
}

@media (max-width: 480px) {
	body {
		background-attachment: scroll;
	}
	
	.container {
		padding: 15px 10px;
		min-height: 100vh;
		justify-content: flex-start;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	.title {
		font-size: 24px;
		margin-bottom: 10px;
		letter-spacing: 0.5px;
	}
	
	.subtitle {
		font-size: 18px;
		margin-bottom: 8px;
	}
	
	.subtitle::before,
	.subtitle::after {
		display: none;
	}
	
	.robot {
		width: 140px;
		height: 140px;
		margin: 15px auto -40px auto;
	}
	
	.accuracy-box {
		padding: 20px 15px;
		margin: 20px 0;
		border-radius: 20px;
	}
	
	.accuracy-title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	
	.accuracy-percent {
		font-size: 32px;
		margin-bottom: 12px;
	}
	
	.accuracy-desc {
		font-size: 14px;
		line-height: 1.4;
	}
	
	.stock-input {
		padding: 15px 20px;
		font-size: 16px;
		border-radius: 20px;
	}
	
	.analyze-btn {
		padding: 16px;
		font-size: 16px;
		border-radius: 20px;
	}
	
	.premium-badge {
		padding: 12px 20px;
		font-size: 14px;
		border-radius: 15px;
	}
	
	.tech-grid,
	.tech-scanner,
	.tech-orbit-2,
	.tech-data-stream {
		display: none;
	}
	
	.tech-dot {
		width: 12px;
		height: 12px;
	}
	
	.tech-orbit {
		width: 180px;
		height: 180px;
		border-width: 1px;
	}
	
	.tech-corner-frame {
		width: 20px;
		height: 20px;
		border-width: 2px;
	}
	
	.modal-content {
		margin: 5% auto;
		padding: 25px 20px;
		width: 95%;
		border-radius: 20px;
	}
	
	.modal-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.completion-title {
		font-size: 20px;
	}
	
	.whatsapp-btn {
		padding: 14px 24px;
		font-size: 14px;
		border-radius: 12px;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	body {
		background-attachment: scroll;
	}
	
	.container {
		padding: 25px 15px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	.title {
		font-size: 28px;
		margin-bottom: 12px;
	}
	
	.subtitle {
		font-size: 20px;
	}
	
	.robot {
		width: 160px;
		height: 160px;
		margin: 20px auto -50px auto;
	}
	
	.accuracy-box {
		padding: 25px 20px;
		margin: 25px 0;
	}
	
	.accuracy-percent {
		font-size: 38px;
	}
	
	.stock-input {
		padding: 16px 22px;
		font-size: 16px;
	}
	
	.analyze-btn {
		padding: 18px;
		font-size: 17px;
	}
	
	.tech-orbit {
		width: 200px;
		height: 200px;
	}
	
	.modal-content {
		margin: 8% auto;
		padding: 35px 25px;
		width: 90%;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.container {
		padding: 30px 20px;
	}
	
	.title {
		font-size: 30px;
	}
	
	.subtitle {
		font-size: 22px;
	}
	
	.robot {
		width: 170px;
		height: 170px;
	}
	
	.accuracy-box {
		padding: 30px 25px;
	}
	
	.modal-content {
		margin: 10% auto;
		width: 85%;
		max-width: 600px;
	}
}

@media (max-height: 500px) and (orientation: landscape) {
	body {
		background-attachment: scroll;
		overflow-y: auto;
	}
	
	.container {
		padding: 10px 15px;
		justify-content: flex-start;
		min-height: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	.title {
		font-size: 20px;
		margin-bottom: 5px;
	}
	
	.subtitle {
		font-size: 16px;
		margin-bottom: 5px;
	}
	
	.robot {
		width: 100px;
		height: 100px;
		margin: 10px auto -30px auto;
	}
	
	.accuracy-box {
		padding: 15px;
		margin: 15px 0;
	}
	
	.accuracy-title {
		font-size: 14px;
		margin-bottom: 8px;
	}
	
	.accuracy-percent {
		font-size: 24px;
		margin-bottom: 8px;
	}
	
	.accuracy-desc {
		font-size: 12px;
	}
	
	.stock-input {
		padding: 12px 18px;
		font-size: 14px;
	}
	
	.analyze-btn {
		padding: 12px;
		font-size: 14px;
	}
	
	.premium-badge {
		padding: 8px 16px;
		font-size: 12px;
	}
	
	.tech-decoration {
		display: none;
	}
	
	.modal-content {
		margin: 2% auto;
		padding: 20px 15px;
		width: 98%;
		max-height: 90vh;
		overflow-y: auto;
	}
}

@media (min-width: 1440px) {
	.container {
		max-width: 1200px;
		margin: 0 auto;
	}
	
	.title {
		font-size: 36px;
	}
	
	.subtitle {
		font-size: 26px;
	}
	
	.robot {
		width: 200px;
		height: 200px;
	}
	
	.accuracy-box {
		max-width: 600px;
		margin: 25px auto;
		padding: 35px;
	}
	
	.input-container {
		width: 100%;
		margin: 30px auto;
	}
}

@media (hover: none) and (pointer: coarse) {
	.analyze-btn.active {
		transition: transform 0.2s ease, background 0.2s ease;
	}
	
	.analyze-btn.active:active {
		transform: scale(0.95);
	}
	
	.whatsapp-btn:active {
		transform: scale(0.95);
	}
	
	.close {
		padding: 10px;
		font-size: 32px;
	}
}