/* ===== Playverto — design tokens ===== */
:root {
	--vx-coral: #ff6b6b;
	--vx-turquoise: #2ec4c6;
	--vx-yellow: #ffd166;
	--vx-violet: #7b5ea7;
	--vx-ink: #1c1730;
	--vx-cream: #fff8ef;
	--vx-white: #ffffff;
	--vx-font-display: 'Titan One', cursive;
	--vx-font-body: 'Nunito', sans-serif;
	--vx-radius: 18px;
	--vx-shadow: 0 12px 30px rgba(28,23,48,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--vx-font-body);
	color: var(--vx-ink);
	background: var(--vx-cream);
	line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--vx-font-display); line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--vx-violet); }
a { color: var(--vx-violet); text-decoration: none; }
p { margin: 0 0 1em; }

.vx-eyebrow {
	display: inline-block;
	background: var(--vx-yellow);
	color: var(--vx-ink);
	font-weight: 800;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

/* ===== Buttons ===== */
.vx-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 999px;
	font-weight: 800;
	font-family: var(--vx-font-body);
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vx-btn:hover { transform: translateY(-2px); }
.vx-btn-primary { background: var(--vx-coral); color: var(--vx-white); box-shadow: var(--vx-shadow); }
.vx-btn-ghost { background: transparent; border-color: var(--vx-violet); color: var(--vx-violet); }
.vx-btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* ===== Header ===== */
.vx-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,248,239,0.92);
	backdrop-filter: blur(8px);
	border-bottom: 3px solid var(--vx-turquoise);
}
.vx-header-inner {
	max-width: 1200px; margin: 0 auto; padding: 14px 24px;
	display: flex; align-items: center; gap: 24px;
}
.vx-logo { font-family: var(--vx-font-display); font-size: 1.6rem; color: var(--vx-coral); }
.vx-nav { flex: 1; }
.vx-nav-list { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.vx-nav-list a { color: var(--vx-ink); font-weight: 700; }
.vx-nav-list a:hover { color: var(--vx-coral); }
.vx-burger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 820px) {
	.vx-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--vx-cream); display: none; }
	.vx-nav.is-open { display: block; }
	.vx-nav-list { flex-direction: column; padding: 16px 24px; }
	.vx-header-cta { display: none; }
	.vx-burger { display: block; }
}

/* ===== Hero ===== */
.vx-hero {
	position: relative; min-height: 88vh; display: flex; align-items: center;
	background-size: cover; background-position: center;
	color: var(--vx-white); overflow: hidden;
}
.vx-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(120deg, rgba(28,23,48,0.75), rgba(123,94,167,0.45));
}
.vx-hero-content { position: relative; max-width: 780px; margin: 0 auto; padding: 40px 24px; text-align: center; }
.vx-hero-sub { font-size: 1.15rem; opacity: 0.95; }
.vx-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 28px 0; }
.vx-hero-stats { display: flex; gap: 32px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.vx-hero-stats strong { display: block; font-family: var(--vx-font-display); font-size: 1.8rem; color: var(--vx-yellow); }
.vx-hero-stats span { font-size: 0.85rem; opacity: 0.85; }

/* ===== Divider — floating rock silhouette ===== */
.vx-divider {
	height: 60px;
	background-color: var(--vx-cream);
	background-image:
		polygon(0 100%, 8% 20%, 16% 100%),
		none;
	position: relative;
}
.vx-divider-rocks::before {
	content: "";
	position: absolute; inset: 0;
	background: var(--vx-turquoise);
	clip-path: polygon(0% 100%, 4% 30%, 9% 70%, 14% 10%, 20% 60%, 26% 90%, 32% 25%, 38% 65%, 44% 5%, 50% 55%, 56% 85%, 62% 20%, 68% 70%, 74% 15%, 80% 60%, 86% 95%, 92% 30%, 98% 75%, 100% 100%);
	opacity: 0.35;
}
.vx-divider-flip::before { transform: scaleY(-1); background: var(--vx-coral); }

/* ===== Intro split ===== */
.vx-intro-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding: 70px 24px; max-width: 1200px; margin: 0 auto; }
.vx-intro-image { min-height: 360px; border-radius: var(--vx-radius); background-size: cover; background-position: center; box-shadow: var(--vx-shadow); }
.vx-checklist { list-style: none; padding: 0; margin: 20px 0 0; }
.vx-checklist li { padding-left: 32px; position: relative; margin-bottom: 10px; font-weight: 700; }
.vx-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--vx-turquoise); font-weight: 900; }
@media (max-width: 820px) { .vx-intro-split { grid-template-columns: 1fr; } }

/* ===== Widget sections ===== */
.vx-section { padding: 70px 24px; }
.vx-widget-section {
	position: relative; background-size: cover; background-position: center;
	color: var(--vx-white); text-align: center;
}
.vx-widget-overlay { position: absolute; inset: 0; background: rgba(28,23,48,0.72); }
.vx-widget-inner { position: relative; max-width: 900px; margin: 0 auto; }
.vx-widget-light { background: var(--vx-white); color: var(--vx-ink); }
.vx-widget-desc { max-width: 640px; margin: 0 auto 30px; }

/* Skyshard Map widget */
.vx-map { position: relative; max-width: 640px; margin: 0 auto; aspect-ratio: 4/3; background: rgba(255,255,255,0.08); border-radius: var(--vx-radius); border: 2px dashed rgba(255,255,255,0.3); }
.vx-map-node {
	position: absolute; width: 48px; height: 48px; border-radius: 50%;
	background: var(--vx-coral); border: 3px solid var(--vx-white); font-size: 1.4rem;
	cursor: pointer; box-shadow: 0 0 0 0 rgba(255,107,107,0.6);
	animation: vx-pulse 2.2s infinite;
}
@keyframes vx-pulse {
	0% { box-shadow: 0 0 0 0 rgba(255,107,107,0.55); }
	70% { box-shadow: 0 0 0 14px rgba(255,107,107,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); }
}
.vx-map-info { margin-top: 24px; background: rgba(255,255,255,0.12); border-radius: 12px; padding: 16px 20px; min-height: 60px; }

/* Fusion Lab widget */
.vx-fusion-controls { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.vx-fusion-controls select { padding: 10px 14px; border-radius: 10px; border: 2px solid var(--vx-violet); font-family: var(--vx-font-body); font-weight: 700; }
.vx-vial { width: 60px; height: 160px; margin: 0 auto 20px; border: 4px solid var(--vx-violet); border-radius: 0 0 30px 30px; position: relative; overflow: hidden; background: rgba(123,94,167,0.08); }
.vx-vial-fill { position: absolute; bottom: 0; left: 0; right: 0; height: 10%; background: linear-gradient(180deg, var(--vx-turquoise), var(--vx-coral)); transition: height 0.6s ease; }
.vx-fusion-result { font-weight: 800; }

/* Arena Clash widget */
.vx-arena { display: flex; align-items: center; gap: 24px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.vx-arena-fighter { width: 220px; }
.vx-fighter-name { display: block; font-weight: 800; margin-bottom: 6px; }
.vx-hp-bar { height: 16px; background: rgba(255,255,255,0.2); border-radius: 999px; overflow: hidden; }
.vx-hp-fill { height: 100%; background: linear-gradient(90deg, var(--vx-turquoise), var(--vx-yellow)); transition: width 0.5s ease; }
.vx-arena-vs { font-family: var(--vx-font-display); font-size: 1.4rem; color: var(--vx-yellow); }
.vx-arena-log { max-width: 500px; margin: 0 auto 20px; text-align: left; background: rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 18px; max-height: 160px; overflow-y: auto; font-size: 0.9rem; }
.vx-arena-log p { margin: 0 0 6px; }

/* Community Pulse widget */
.vx-pulse-feed { max-width: 600px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.vx-pulse-item { background: linear-gradient(90deg, rgba(46,196,198,0.12), rgba(255,209,102,0.12)); border-left: 4px solid var(--vx-turquoise); border-radius: 8px; padding: 10px 16px; font-size: 0.92rem; animation: vx-fade-in 0.4s ease; }
@keyframes vx-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== CTA final ===== */
.vx-cta-final { text-align: center; background: linear-gradient(120deg, var(--vx-violet), var(--vx-coral)); color: var(--vx-white); }
.vx-cta-final h2 { color: var(--vx-white); }

/* ===== Page hero (inner pages) ===== */
.vx-page-hero { position: relative; min-height: 40vh; display: flex; align-items: center; background-size: cover; background-position: center; color: var(--vx-white); }
.vx-page-hero-overlay { position: absolute; inset: 0; background: rgba(28,23,48,0.62); }
.vx-page-hero-content { position: relative; max-width: 900px; margin: 0 auto; padding: 24px; text-align: center; }
.vx-page-hero-plain { background: var(--vx-violet); }

/* ===== Content ===== */
.vx-content-narrow { max-width: 780px; margin: 0 auto; }
.vx-legal h2 { margin-top: 1.6em; }
.vx-cookie-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.vx-cookie-table th, .vx-cookie-table td { border: 1px solid #ddd; padding: 10px 12px; text-align: left; font-size: 0.92rem; }
.vx-cookie-table th { background: var(--vx-turquoise); color: var(--vx-white); }

/* ===== Capture Cards (reviews) ===== */
.vx-capture-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.vx-capture-card { background: var(--vx-white); border-radius: var(--vx-radius); box-shadow: var(--vx-shadow); overflow: hidden; }
.vx-capture-card-strip { height: 140px; background-size: cover; background-position: center; background-color: var(--vx-violet); }
.vx-capture-card-sample .vx-capture-card-strip { position: relative; }
.vx-capture-card-sample .vx-capture-card-strip::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,107,107,0.55) 0 20px, rgba(255,209,102,0.55) 20px 40px); mix-blend-mode: multiply; }
.vx-capture-card-body { padding: 22px; }
.vx-capture-stars { color: var(--vx-yellow); font-size: 1.1rem; }
.vx-capture-quote { font-style: italic; margin: 10px 0; }
.vx-capture-name { font-weight: 800; color: var(--vx-violet); }

/* ===== Forms ===== */
.vx-form { display: flex; flex-direction: column; gap: 16px; }
.vx-form label { font-weight: 700; display: flex; flex-direction: column; gap: 6px; }
.vx-form input, .vx-form textarea, .vx-form select { padding: 10px 14px; border: 2px solid var(--vx-violet); border-radius: 10px; font-family: var(--vx-font-body); }
.vx-checkbox-label { flex-direction: row !important; align-items: flex-start; gap: 10px !important; font-weight: 400; }
.vx-notice { background: rgba(46,196,198,0.15); border-left: 4px solid var(--vx-turquoise); padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }
.vx-notice-error { background: rgba(255,107,107,0.15); border-left-color: var(--vx-coral); }

/* ===== Contact ===== */
.vx-contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 820px) { .vx-contact-grid { grid-template-columns: 1fr; } }

/* ===== Journaal timeline ===== */
.vx-journaal-timeline { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.vx-journaal-entry { display: flex; gap: 20px; border-left: 3px solid var(--vx-turquoise); padding-left: 20px; }
.vx-journaal-date { text-align: center; min-width: 60px; }
.vx-journaal-day { display: block; font-family: var(--vx-font-display); font-size: 1.6rem; color: var(--vx-coral); }
.vx-journaal-month { text-transform: uppercase; font-size: 0.8rem; font-weight: 800; }

/* ===== Footer ===== */
.vx-footer { background: var(--vx-ink); color: rgba(255,255,255,0.85); padding: 60px 24px 0; margin-top: 60px; }
.vx-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.vx-logo-footer { color: var(--vx-yellow); }
.vx-footer h4 { color: var(--vx-turquoise); margin-bottom: 12px; }
.vx-footer-list, .vx-footer-legal { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.vx-footer a { color: rgba(255,255,255,0.85); }
.vx-footer address { font-style: normal; }
.vx-footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); text-align: center; padding: 18px; font-size: 0.85rem; }
@media (max-width: 820px) { .vx-footer-inner { grid-template-columns: 1fr 1fr; } }

/* ===== Cookie banner ===== */
.vx-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--vx-ink); color: var(--vx-white); }
.vx-cookie-inner { max-width: 1000px; margin: 0 auto; padding: 18px 24px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.vx-cookie-inner a { color: var(--vx-yellow); }
.vx-cookie-actions { display: flex; gap: 12px; }

/* ===== 404 ===== */
.vx-404 { text-align: center; max-width: 600px; margin: 0 auto; padding: 100px 24px; }
