/* VCE Outstagram Simulated Smartphone Viewport Styling
 * Fluid & Proportional Scaling Engine powered by CSS Container Queries (container-type: size; cqw/cqh).
 * All font sizes, margins, paddings, icons, and UI components scale in exact mathematical proportion to the container.
 */

.vce-phone-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
	padding: 0;
	margin: 0;
	background: transparent !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	box-sizing: border-box;
	overflow: hidden;
}

.vce-phone-container * {
	box-sizing: border-box;
}

/* Smartphone Viewport Frame - Container Query Parent */
.vce-phone-frame {
	height: 100vh;
	max-height: 100vh;
	width: min(100vw, calc(100vh * (9 / 19.5)));
	margin: 0 auto;
	container-type: size;
	container-name: phone;
	background: #0a0a0c;
	border-radius: 4.8cqw;
	padding: 1.6cqw;
	box-shadow: 0 2.5cqh 6.5cqh rgba(0, 0, 0, 0.65), 0 0 0 0.3cqw #121216;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

@media (max-width: 480px) {
	.vce-phone-frame {
		width: 100vw;
		height: 100vh;
		border-radius: 0;
		padding: 0;
		box-shadow: none;
	}
	.vce-phone-screen {
		border-radius: 0 !important;
	}
	.vce-phone-notch {
		display: none;
	}
}

/* Top Notch & Camera / Speaker */
.vce-phone-notch {
	width: 32cqw;
	height: 2.3cqh;
	background: #000;
	position: absolute;
	top: 1.6cqw;
	left: 50%;
	transform: translateX(-50%);
	border-bottom-left-radius: 2.5cqw;
	border-bottom-right-radius: 2.5cqw;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.8cqw;
}

.vce-camera {
	width: 2.2cqw;
	height: 2.2cqw;
	background: #18181c;
	border-radius: 50%;
	border: 0.3cqw solid #26262e;
}

.vce-speaker {
	width: 9.5cqw;
	height: 0.6cqh;
	background: #26262e;
	border-radius: 0.3cqw;
}

/* Inner Phone Screen Canvas */
.vce-phone-screen {
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #18181c 0%, #121216 100%);
	border-radius: 4cqw;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	color: #f0f0f5;
}

/* Status Bar */
.vce-status-bar {
	height: 4.2cqh;
	padding: 0 4.5cqw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 3.4cqw;
	font-weight: 600;
	letter-spacing: 0.1cqw;
	z-index: 90;
	color: #f0f0f5;
	background: rgba(18, 18, 22, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.05);
}

.vce-status-icons {
	display: flex;
	gap: 1.8cqw;
}

/* Middle Screen Body */
.vce-screen-body {
	flex: 1;
	position: relative;
	overflow: hidden;
}

/* Home Screen Grid */
.vce-home-grid {
	width: 100%;
	height: 100%;
	padding: 3.2cqh 4.5cqw;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: max-content;
	gap: 2.8cqh 3cqw;
	align-content: start;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.vce-app-icon-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	user-select: none;
	transition: transform 0.15s ease;
}

.vce-app-icon-wrapper:hover { transform: scale(1.08); }
.vce-app-icon-wrapper:active { transform: scale(0.95); }

.vce-app-icon {
	width: 16cqw;
	height: 16cqw;
	border-radius: 4.2cqw;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1cqh 2.5cqh rgba(0, 0, 0, 0.4);
	overflow: hidden;
	border: 0.2cqw solid rgba(255, 255, 255, 0.1);
}

.vce-app-icon-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vce-app-icon-initial {
	color: #ffffff;
	font-size: 6.8cqw;
	font-weight: 700;
	text-shadow: 0 0.5cqw 1cqw rgba(0, 0, 0, 0.3);
}

.vce-app-label {
	font-size: 3.1cqw;
	margin-top: 1.5cqw;
	color: #f0f0f5;
	text-shadow: 0 0.3cqw 0.8cqw rgba(0, 0, 0, 0.8);
	text-align: center;
	word-break: break-word;
}

/* Active App Viewport */
.vce-app-viewport {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #18181c;
	z-index: 50;
	display: flex;
	flex-direction: column;
	animation: vceAppOpen 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vceAppOpen {
	from { opacity: 0; transform: scale(0.88); }
	to { opacity: 1; transform: scale(1); }
}

.vce-app-loader {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #18181c;
	z-index: 60;
}

.vce-spinner {
	width: 8cqw;
	height: 8cqw;
	border: 0.8cqw solid rgba(255, 255, 255, 0.12);
	border-top-color: #6c5ce7;
	border-radius: 50%;
	animation: vceSpin 0.8s linear infinite;
}

@keyframes vceSpin {
	to { transform: rotate(360deg); }
}

.vce-app-content-container {
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* --- GUEST USER AUTHENTICATION WALL PROMPT --- */
.vce-auth-screen {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #18181c 0%, #0a0a0c 100%);
}

.vce-auth-prompt {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6cqw;
	text-align: center;
	background: rgba(38, 38, 46, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	margin: 4cqw;
	border-radius: 5.5cqw;
	border: 0.2cqw solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 2cqh 4cqh rgba(0, 0, 0, 0.35);
}

.vce-auth-icon {
	font-size: 11cqw;
	margin-bottom: 3cqw;
	background: rgba(108, 92, 231, 0.15);
	width: 20cqw;
	height: 20cqw;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.3cqw solid rgba(108, 92, 231, 0.3);
}

.vce-auth-title {
	font-size: 4.8cqw;
	font-weight: 700;
	color: #f0f0f5;
	margin: 0 0 2cqw 0;
}

.vce-auth-msg {
	font-size: 3.5cqw;
	color: #a0a0b0;
	line-height: 1.5;
	margin: 0 0 5cqw 0;
}

.vce-auth-btn {
	display: inline-block;
	background: linear-gradient(135deg, #6c5ce7, #4834d4);
	color: #ffffff !important;
	padding: 2.5cqw 6cqw;
	border-radius: 6cqw;
	font-weight: 700;
	font-size: 3.8cqw;
	text-decoration: none !important;
	box-shadow: 0 1cqh 2.5cqh rgba(108, 92, 231, 0.4);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vce-auth-btn:hover {
	transform: translateY(-0.5cqh);
	box-shadow: 0 1.5cqh 3.5cqh rgba(108, 92, 231, 0.55);
}

/* --- OUTSTAGRAM APP STYLES --- */
.app-outstagram-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	background: #121216;
	position: relative;
}

.app-header-bar {
	padding: 1.5cqh 4cqw;
	background: #18181c;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 4.2cqw;
	font-weight: 700;
	color: #f0f0f5;
}

.vce-stories-bar {
	display: flex;
	gap: 3.2cqw;
	padding: 1.4cqh 3.2cqw;
	overflow-x: auto;
	background: #18181c;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.08);
	scrollbar-width: none;
}

.vce-stories-bar::-webkit-scrollbar { display: none; }

.vce-story-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	min-width: 15cqw;
}

.vce-story-ring {
	width: 15cqw;
	height: 15cqw;
	border-radius: 50%;
	padding: 0.6cqw;
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	display: flex;
	align-items: center;
	justify-content: center;
}

.vce-story-avatar {
	width: 13.5cqw;
	height: 13.5cqw;
	border-radius: 50%;
	object-fit: cover;
	border: 0.5cqw solid #18181c;
}

.vce-story-handle {
	font-size: 2.8cqw;
	color: #a0a0b0;
	margin-top: 1cqw;
	text-align: center;
	max-width: 15cqw;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Snap Feed Cards */
.vce-snap-feed {
	flex: 1;
	overflow-y: scroll;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
}

.vce-snap-card {
	scroll-snap-align: start;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #18181c;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.08);
	padding: 1.5cqh 3.2cqw;
}

.vce-card-header {
	display: flex;
	align-items: center;
	gap: 2.8cqw;
	padding-bottom: 1cqh;
	cursor: pointer;
}

.vce-card-avatar {
	width: 9.5cqw;
	height: 9.5cqw;
	border-radius: 50%;
	object-fit: cover;
}

.vce-card-author-name {
	font-size: 3.6cqw;
	font-weight: 700;
	color: #f0f0f5;
}

.vce-card-author-handle {
	font-size: 3cqw;
	color: #a0a0b0;
}

.vce-card-media {
	flex: 1;
	max-height: 38cqh;
	width: 100%;
	border-radius: 3.2cqw;
	overflow: hidden;
	background: #0a0a0c;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.2cqw solid rgba(255, 255, 255, 0.06);
}

.vce-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vce-card-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1cqh 1cqw;
}

.vce-like-btn {
	background: none;
	border: none;
	color: #f0f0f5;
	font-size: 4.8cqw;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 1.2cqw;
	padding: 0;
}

.vce-like-btn.liked { color: #ff4757; }
.vce-like-btn.vce-heart-pulse {
	animation: vceHeartPulse 0.3s ease;
}

@keyframes vceHeartPulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.35); }
	100% { transform: scale(1); }
}

.vce-chat-btn {
	background: none;
	border: none;
	color: #6c5ce7;
	font-size: 3.5cqw;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}

.vce-card-caption {
	font-size: 3.3cqw;
	color: #a0a0b0;
	line-height: 1.4;
}

.vce-read-more-btn {
	color: #6c5ce7;
	cursor: pointer;
	font-weight: 600;
	margin-left: 1cqw;
}

/* --- OUTSTAGRAM NPC PROFILE VIEW --- */
.vce-npc-profile-overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 18, 22, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 180;
	display: flex;
	flex-direction: column;
}

.vce-profile-header-bar {
	padding: 1.5cqh 4cqw;
	background: #1e1e24;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	gap: 3.2cqw;
}

.vce-profile-back-btn {
	background: none;
	border: none;
	color: #6c5ce7;
	font-size: 5cqw;
	cursor: pointer;
}

.vce-profile-handle-title {
	font-weight: 700;
	font-size: 3.8cqw;
	color: #f0f0f5;
}

.vce-profile-body {
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.vce-profile-top-section {
	padding: 4.5cqw;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.08);
}

.vce-profile-header-main {
	display: flex;
	align-items: center;
	gap: 4.5cqw;
	margin-bottom: 3.2cqw;
}

.vce-profile-avatar-box {
	position: relative;
	width: 17cqw;
	height: 17cqw;
}

.vce-profile-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 0.5cqw solid #6c5ce7;
}

.vce-profile-stats-bar {
	flex: 1;
	display: flex;
	justify-content: space-around;
	text-align: center;
}

.vce-stat-item {
	display: flex;
	flex-direction: column;
}

.vce-stat-num {
	font-weight: 700;
	font-size: 3.8cqw;
	color: #f0f0f5;
}

.vce-stat-label {
	font-size: 2.9cqw;
	color: #a0a0b0;
}

.vce-profile-bio-box {
	margin-bottom: 3.8cqw;
}

.vce-profile-name {
	font-weight: 700;
	font-size: 3.8cqw;
	color: #f0f0f5;
	display: block;
}

.vce-profile-bio-text {
	font-size: 3.2cqw;
	color: #a0a0b0;
	margin-top: 1cqw;
	line-height: 1.4;
}

.vce-profile-actions {
	display: flex;
	gap: 2.8cqw;
}

.vce-profile-msg-btn, .vce-profile-follow-btn {
	flex: 1;
	padding: 2.2cqw;
	border-radius: 2.2cqw;
	border: none;
	font-size: 3.3cqw;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
}

.vce-profile-msg-btn {
	background: #6c5ce7;
	color: #ffffff;
}

.vce-profile-follow-btn {
	background: #26262e;
	color: #f0f0f5;
	border: 0.3cqw solid rgba(255, 255, 255, 0.12);
}

.vce-profile-follow-btn.following {
	background: rgba(108, 92, 231, 0.2);
	color: #6c5ce7;
}

/* 3-Column Square Posts Grid */
.vce-npc-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.6cqw;
	background: #18181c;
	padding: 0.6cqw;
}

.vce-npc-post-thumb {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.vce-npc-post-thumb:hover { opacity: 0.8; }

/* Fullscreen Story Viewer Overlay */
.vce-story-viewer-overlay {
	position: absolute;
	inset: 0;
	background: #0a0a0c;
	z-index: 200;
	display: flex;
	flex-direction: column;
}

.vce-story-close-btn {
	position: absolute;
	top: 2cqh;
	right: 4cqw;
	background: rgba(38, 38, 46, 0.7);
	color: #fff;
	border: none;
	font-size: 6.5cqw;
	width: 8.5cqw;
	height: 8.5cqw;
	border-radius: 50%;
	cursor: pointer;
	z-index: 210;
}

.vce-story-progress-bar {
	height: 0.5cqh;
	background: rgba(255, 255, 255, 0.2);
	margin: 1.5cqh 4cqw;
	border-radius: 0.5cqw;
	overflow: hidden;
}

.vce-story-progress-fill {
	height: 100%;
	width: 0%;
	background: #6c5ce7;
	transition: width 0.1s linear;
}

.vce-story-media-box {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vce-story-media-box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.vce-story-nav-prev, .vce-story-nav-next {
	position: absolute;
	top: 8cqh;
	bottom: 0;
	width: 45%;
	z-index: 205;
	cursor: pointer;
}

.vce-story-nav-prev { left: 0; }
.vce-story-nav-next { right: 0; }

/* --- MESSENGER & CONTACTS APP STYLES --- */
.app-messages-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #18181c;
}

.vce-contacts-search-box {
	padding: 1.5cqh 3.2cqw;
	background: #1e1e24;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.08);
}

.vce-contacts-search-box input {
	width: 100%;
	background: #121216;
	border: 0.2cqw solid rgba(255, 255, 255, 0.08);
	border-radius: 5cqw;
	padding: 1cqh 3.8cqw;
	color: #f0f0f5;
	font-size: 3.5cqw;
	outline: none;
}

.vce-contacts-search-box input:focus { border-color: #6c5ce7; }

.vce-contacts-list {
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.vce-contact-card {
	display: flex;
	align-items: center;
	padding: 1.6cqh 3.8cqw;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.05);
	gap: 3.2cqw;
	cursor: pointer;
	transition: background 0.15s ease;
}

.vce-contact-card:hover { background: #26262e; }

.vce-contact-avatar-box {
	position: relative;
	width: 11.5cqw;
	height: 11.5cqw;
}

.vce-contact-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.vce-online-dot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 3cqw;
	height: 3cqw;
	background: #10b981;
	border: 0.5cqw solid #18181c;
	border-radius: 50%;
}

.vce-contact-info {
	flex: 1;
	overflow: hidden;
}

.vce-contact-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vce-contact-name {
	font-weight: 700;
	font-size: 3.8cqw;
	color: #f0f0f5;
}

.vce-contact-time {
	font-size: 2.9cqw;
	color: #a0a0b0;
}

.vce-contact-snippet {
	font-size: 3.2cqw;
	color: #a0a0b0;
	margin-top: 0.5cqw;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Chat Header Info & Glassmorphism Overlay */
.vce-chat-overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 18, 22, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 150;
	display: flex;
	flex-direction: column;
}

.vce-chat-header {
	padding: 1.5cqh 3.8cqw;
	background: #1e1e24;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	gap: 2.8cqw;
}

.vce-chat-back-btn {
	background: none;
	border: none;
	color: #6c5ce7;
	font-size: 5cqw;
	cursor: pointer;
}

.vce-chat-header-avatar {
	width: 8.5cqw;
	height: 8.5cqw;
	border-radius: 50%;
	object-fit: cover;
	cursor: pointer;
}

.vce-chat-header-name {
	font-weight: 700;
	font-size: 3.8cqw;
	color: #f0f0f5;
	cursor: pointer;
}

.vce-chat-header-status {
	font-size: 2.9cqw;
	color: #10b981;
	font-weight: 500;
}

.vce-chat-header-status.typing {
	color: #6c5ce7;
	font-style: italic;
}

.vce-chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 3.8cqw;
	display: flex;
	flex-direction: column;
	gap: 2.8cqw;
}

.vce-msg-bubble {
	max-width: 80%;
	padding: 2.5cqw 3.8cqw;
	border-radius: 4cqw;
	font-size: 3.5cqw;
	line-height: 1.4;
	word-break: break-word;
}

.vce-msg-bubble.npc {
	align-self: flex-start;
	background: #26262e;
	color: #f0f0f5;
	border-bottom-left-radius: 1cqw;
	border: 0.2cqw solid rgba(255, 255, 255, 0.08);
}

.vce-msg-bubble.user {
	align-self: flex-end;
	background: linear-gradient(135deg, #6c5ce7, #4834d4);
	color: #ffffff;
	border-bottom-right-radius: 1cqw;
}

.vce-emoji-picker-popup {
	background: #26262e;
	border-top: 0.2cqw solid rgba(255, 255, 255, 0.08);
	padding: 1.5cqh 3.8cqw;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2.8cqw;
	text-align: center;
}

.vce-emoji-item {
	font-size: 5.8cqw;
	cursor: pointer;
	user-select: none;
	border-radius: 2cqw;
	padding: 1cqw;
	transition: background 0.15s ease, transform 0.1s ease;
}

.vce-emoji-item:hover {
	background: rgba(108, 92, 231, 0.25);
	transform: scale(1.2);
}

.vce-chat-input-bar {
	padding: 1.5cqh 2.8cqw;
	background: #1e1e24;
	border-top: 0.2cqw solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	gap: 2.2cqw;
}

.vce-chat-input-bar input {
	flex: 1;
	background: #121216;
	border: 0.2cqw solid rgba(255, 255, 255, 0.08);
	border-radius: 5cqw;
	padding: 1.2cqh 3.8cqw;
	color: #f0f0f5;
	font-size: 3.5cqw;
	outline: none;
}

.vce-chat-input-bar input:focus { border-color: #6c5ce7; }

.vce-emoji-btn {
	background: none;
	border: none;
	font-size: 5.5cqw;
	cursor: pointer;
	padding: 0;
}

.vce-chat-input-bar button[type="submit"] {
	background: #6c5ce7;
	color: #ffffff;
	border: none;
	border-radius: 4.5cqw;
	padding: 1.2cqh 4.2cqw;
	font-weight: 700;
	font-size: 3.5cqw;
	cursor: pointer;
}

/* Photos & Settings UI */
.app-photos-gallery, .app-settings {
	display: flex;
	flex-direction: column;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5cqw;
	padding: 3.2cqw;
}

.gallery-thumb {
	height: 15cqh;
	border-radius: 2.8cqw;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	font-size: 3.5cqw;
	text-shadow: 0 0.3cqw 0.8cqw rgba(0, 0, 0, 0.4);
}

.setting-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2cqh 4cqw;
	border-bottom: 0.2cqw solid rgba(255, 255, 255, 0.06);
	font-size: 3.6cqw;
	color: #f0f0f5;
}

.setting-val { color: #a0a0b0; }

.setting-lang-item { background: rgba(108, 92, 231, 0.12); }

.vce-phone-lang-select {
	background: #26262e;
	color: #6c5ce7;
	border: 0.2cqw solid rgba(255, 255, 255, 0.12);
	border-radius: 1.8cqw;
	padding: 1cqw 2cqw;
	font-size: 3.4cqw;
	font-weight: 600;
	outline: none;
	cursor: pointer;
}

/* Recent Apps Viewport */
.vce-recent-viewport {
	position: absolute;
	inset: 0;
	background: rgba(18, 18, 22, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 55;
	padding: 5cqw;
	display: flex;
	flex-direction: column;
}

.vce-recent-header {
	font-size: 4.2cqw;
	font-weight: 700;
	margin-bottom: 4cqw;
	color: #6c5ce7;
}

.vce-recent-card {
	background: #26262e;
	border-radius: 3.2cqw;
	padding: 3.8cqw;
	margin-bottom: 3.2cqw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 0.2cqw solid rgba(255, 255, 255, 0.08);
	cursor: pointer;
}

.vce-recent-card:hover { border-color: #6c5ce7; }

/* Persistent Android Navigation Bar */
.vce-android-nav {
	height: 6.2cqh;
	background: #0a0a0c;
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 100;
	border-top: 0.2cqw solid rgba(255, 255, 255, 0.06);
}

.vce-nav-btn {
	background: none;
	border: none;
	color: #a0a0b0;
	padding: 1.2cqh 6.5cqw;
	cursor: pointer;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2cqw;
	transition: background 0.15s ease, color 0.15s ease;
}

.vce-nav-btn svg {
	width: 5cqw;
	height: 5cqw;
}

.vce-nav-btn:hover {
	color: #f0f0f5;
	background: rgba(255, 255, 255, 0.08);
}

.vce-nav-btn:active { transform: scale(0.9); }
