/* Smartphone Video Frame — 20b897f5 */

/* Grid layout */
.svf-20b897f5-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	justify-items: center;
}

.svf-20b897f5-grid-item {
	display: flex;
	justify-content: center;
	width: 100%;
}

/* Phone frame */
.svf-20b897f5-phone {
	position: relative;
	width: 100%;
	max-width: 320px;
	background-color: #1a1a2e;
	border: 3px solid #2d2d44;
	border-radius: 44px;
	padding: 12px;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.35),
		0 0 0 1px rgba(255, 255, 255, 0.05) inset,
		0 2px 6px rgba(0, 0, 0, 0.2);
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.svf-20b897f5-phone:hover {
	transform: scale(1.02);
	box-shadow:
		0 30px 70px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset,
		0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Notch area */
.svf-20b897f5-notch {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 0;
	position: relative;
	z-index: 3;
}

/* Dynamic Island */
.svf-20b897f5-island {
	display: block;
	width: 90px;
	height: 28px;
	background: #000;
	border-radius: 20px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* Punch Hole */
.svf-20b897f5-notch--punch-hole {
	justify-content: center;
}

.svf-20b897f5-punch-hole {
	display: block;
	width: 14px;
	height: 14px;
	background: #000;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(30, 30, 50, 0.8);
}

/* Screen */
.svf-20b897f5-screen {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	border-radius: 32px;
	overflow: hidden;
	background: #000;
}

/* Video */
.svf-20b897f5-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Placeholder */
.svf-20b897f5-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: rgba(255, 255, 255, 0.4);
	font-size: 14px;
	font-family: sans-serif;
}

/* Play Icon Overlay */
.svf-20b897f5-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	background-color: rgba(0, 0, 0, 0.45);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	pointer-events: none;
	z-index: 2;
	transition: opacity 0.3s ease, transform 0.3s ease;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.svf-20b897f5-play-icon svg {
	width: 45%;
	height: 45%;
	margin-left: 3px;
}

.svf-20b897f5-phone:hover .svf-20b897f5-play-icon {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.6);
}

/* Bottom bar (home indicator) */
.svf-20b897f5-bottom-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0 6px;
}

.svf-20b897f5-bottom-bar::after {
	content: '';
	display: block;
	width: 100px;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
}

/* Side buttons (decorative) */
.svf-20b897f5-phone::before,
.svf-20b897f5-phone::after {
	content: '';
	position: absolute;
	right: -6px;
	background: #2d2d44;
	border-radius: 0 3px 3px 0;
	width: 3px;
}

.svf-20b897f5-phone::before {
	top: 22%;
	height: 50px;
}

.svf-20b897f5-phone::after {
	top: 38%;
	height: 35px;
}
