/*
Theme Name: Video País
Theme URI: https://example.com/video-pais
Author: OpenAI
Description: Landing page minimalista con un botón centrado, traducción automática según el país del visitante y URL configurable.
Version: 1.3.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: video-pais
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--vp-bg-start: #111827;
	--vp-bg-end: #020617;
	--vp-button-bg: #ef4444;
	--vp-button-text: #ffffff;
	--vp-focus: #fbbf24;
}

* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	margin: 0;
}

body {
	background: linear-gradient(135deg, var(--vp-bg-start), var(--vp-bg-end));
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.site {
	min-height: 100vh;
}

.vp-hero {
	display: grid;
	min-height: 100vh;
	place-items: center;
	padding: 24px;
	text-align: center;
}

.vp-hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	width: 100%;
}

.vp-video-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(100%, 280px);
	min-height: 58px;
	padding: 16px 28px;
	border: 0;
	border-radius: 999px;
	background: var(--vp-button-bg);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
	color: var(--vp-button-text);
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-decoration: none;
	transform: translateY(0);
	transition: box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.vp-video-button:hover {
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
	filter: brightness(1.08);
	transform: translateY(-2px);
}

.vp-video-button:active {
	transform: translateY(0);
}

.vp-video-button:focus-visible {
	outline: 4px solid var(--vp-focus);
	outline-offset: 5px;
}


.vp-presence {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	font-weight: 600;
	backdrop-filter: blur(8px);
}

.vp-presence::before {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.15);
	content: "";
}

.vp-presence[hidden] {
	display: none;
}

.vp-content {
	width: min(100% - 40px, 900px);
	margin: 60px auto;
	padding: 32px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
}

.vp-content a {
	color: #ffffff;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
