/* Vibestrym Landing Page Styles */

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

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:
		'Inter',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #2d3748;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.container {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	max-width: 520px;
	width: 100%;
	text-align: center;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
}

.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	max-width: 180px;
	margin-left: auto;
	margin-right: auto;
}

.logo {
	width: 60px;
	height: auto;
	display: block;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

h1 {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.subtitle {
	font-size: 1.125rem;
	font-weight: 400;
	color: #4a5568;
	margin-bottom: 1.75rem;
	line-height: 1.5;
}

.features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.feature-tag {
	background: rgba(102, 126, 234, 0.1);
	color: #5a67d8;
	padding: 0.4rem 0.75rem;
	border-radius: 16px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid rgba(102, 126, 234, 0.2);
	white-space: nowrap;
}

.cta-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	text-decoration: none;
	padding: 0.875rem 1.75rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	min-width: 200px;
	justify-content: center;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.cta-button::after {
	content: '→';
	transition: transform 0.3s ease;
}

.cta-button:hover::after {
	transform: translateX(4px);
}

.cta-button--secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	color: #667eea;
	text-decoration: none;
	padding: 0.875rem 1.75rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid #667eea;
	min-width: 200px;
	justify-content: center;
}

.cta-button--secondary:hover {
	background: #667eea;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.cta-link {
	color: #667eea;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	padding: 0.5rem 0.75rem;
}

.cta-link:hover {
	color: #4a5568;
	text-decoration: underline;
}

.health-checks {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.health-checks h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #4a5568;
	margin-bottom: 1rem;
}

.health-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.health-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.8);
	color: #4a5568;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 12px;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid rgba(102, 126, 234, 0.1);
	backdrop-filter: blur(10px);
}

.health-link:hover {
	background: rgba(102, 126, 234, 0.1);
	color: #5a67d8;
	border-color: rgba(102, 126, 234, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.health-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.8);
	color: #4a5568;
	border: 1px solid rgba(102, 126, 234, 0.1);
	padding: 0.5rem 1rem;
	border-radius: 12px;
	font-size: 0.85rem;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.health-button:hover {
	background: rgba(102, 126, 234, 0.1);
	color: #5a67d8;
	border-color: rgba(102, 126, 234, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.health-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.health-icon {
	font-size: 1rem;
	line-height: 1;
}

.footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	color: #718096;
	font-size: 0.8rem;
}

.tech-stack {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.tech-item {
	color: #4a5568;
	font-weight: 500;
}

.separator {
	color: #cbd5e0;
}

/* Terminal Styles */
.terminal {
	position: fixed;
	bottom: -100vh;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 800px;
	height: 60vh;
	background: #1a1a1a;
	border-radius: 12px 12px 0 0;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
	transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 1000;
	border: 1px solid #333;
}

.terminal.show {
	bottom: 0;
}

.terminal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	background: #2d2d2d;
	border-radius: 12px 12px 0 0;
	border-bottom: 1px solid #333;
}

.terminal-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #00ff00;
	font-weight: 600;
	font-size: 0.9rem;
}

.terminal-icon {
	font-size: 1rem;
}

.terminal-close {
	background: #ff5f56;
	border: none;
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.terminal-close:hover {
	background: #ff3b30;
}

.terminal-content {
	padding: 1rem 1.5rem;
	height: calc(100% - 60px);
	overflow-y: auto;
	font-family:
		'Fira Code', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono',
		Consolas, 'Courier New', monospace;
	font-size: 0.85rem;
	line-height: 1.5;
	color: #e0e0e0;
}

.terminal-line {
	margin-bottom: 0.25rem;
	white-space: pre-wrap;
	word-break: break-word;
}

.terminal-command {
	color: #00ff00;
	font-weight: 600;
}

.terminal-info {
	color: #87ceeb;
}

.terminal-success {
	color: #00ff00;
	font-weight: 500;
}

.terminal-error {
	color: #ff6b6b;
	font-weight: 500;
}

.terminal-json {
	color: #ffd700;
	font-size: 0.8rem;
	margin-left: 1rem;
	background: rgba(255, 215, 0, 0.1);
	padding: 0.5rem;
	border-radius: 4px;
	border-left: 3px solid #ffd700;
}

.terminal-timestamp {
	color: #888;
	font-size: 0.75rem;
}

.terminal-separator {
	color: #444;
	margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	body {
		padding: 1rem;
	}

	.container {
		padding: 2rem 1.5rem;
	}

	h1 {
		font-size: 1.875rem;
	}

	.subtitle {
		font-size: 1rem;
	}

	.features {
		gap: 0.5rem;
	}

	.feature-tag {
		font-size: 0.75rem;
		padding: 0.35rem 0.6rem;
	}

	.cta-container {
		gap: 0.75rem;
	}

	.cta-button,
	.cta-button--secondary {
		min-width: 180px;
		font-size: 0.9rem;
		padding: 0.75rem 1.5rem;
	}

	.health-links {
		gap: 0.5rem;
	}

	.health-link,
	.health-button {
		font-size: 0.8rem;
		padding: 0.45rem 0.85rem;
	}

	.terminal {
		width: 95%;
		height: 70vh;
	}

	.terminal-header {
		padding: 0.75rem 1rem;
	}

	.terminal-content {
		padding: 0.75rem 1rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.625rem;
	}

	.subtitle {
		font-size: 0.9rem;
	}

	.cta-button,
	.cta-button--secondary {
		padding: 0.75rem 1.25rem;
		font-size: 0.85rem;
		min-width: 160px;
	}

	.logo-container {
		gap: 0.5rem;
	}

	.logo {
		width: 50px;
	}

	.health-checks h3 {
		font-size: 0.9rem;
	}

	.health-link,
	.health-button {
		font-size: 0.75rem;
		padding: 0.4rem 0.75rem;
	}

	.health-icon {
		font-size: 0.9rem;
	}

	.terminal {
		width: 98%;
		height: 75vh;
	}

	.terminal-content {
		font-size: 0.75rem;
	}
}
