:root {
	--bg: #000000;
	--panel-glow: 0 0 0 1px rgba(255,215,128,.18), 0 20px 60px rgba(0,0,0,.6), inset 0 0 0 1px rgba(0,0,0,.35);
	--text: #fff;
	--radius: 14px;
	--max: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; margin: 0; }

body {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Header with small icons and centered logo */
.header {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	justify-items: center;
	padding: 10px 14px 0;
}
.header-side {
	display: grid;
	gap: 10px;
	justify-items: center;
}
.header-side img {
	width: 36px;
	height: 36px;
	display: block;
}

/* Logo */
.brand {
	display: block;
	width: 110px;
}
.brand img { display: block; width: 100%; height: auto; }

/* Layout */
.wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: 12px 16px 60px;
	display: grid;
	place-items: center;
	gap: 22px;
}

/* Panel (no img3) */
.panel {
	width: min(92vw, 560px);
	background: linear-gradient(180deg, #1b140d, #0e0b07);
	border-radius: var(--radius);
	box-shadow: var(--panel-glow);
	padding: 22px 18px 22px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.panel-title {
	margin: 4px 0 14px;
	font-weight: 800;
	letter-spacing: .02em;
	color: #f7e19a;
	text-shadow: 0 1px 0 #000;
}

/* Inputs */
.fields { display: grid; gap: 12px; margin: 0 4px 14px; }
.field { display: block; }
.field input {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(0,0,0,.35);
	color: var(--text);
	outline: none;
}
.field input::placeholder { color: rgba(255,255,255,.6); }

/* Image buttons */
.img-btn {
	display: block;
	width: 360px;
	max-width: 92vw;
	margin: 8px auto 0;
}
.img-btn img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 999px;
	box-shadow: 0 12px 36px rgba(0,0,0,.35);
}

/* Smaller primary image button inside panel */
.img-btn--primary {
	width: 320px;
	max-width: 82%;
	margin-top: 10px;
}

/* CTA stack */
.cta-list { display: grid; place-items: center; gap: 12px; }

/* Visibility helpers */
.mobile-only { display: none; }

/* Desktop */
@media (min-width: 768px) {
	.wrap { padding-top: 40px; }
	.panel { width: min(520px, 92vw); }
}

/* Mobile */
@media (max-width: 767.98px) {
	/* Slightly smaller logo and header icons */
	.brand { width: 86px; margin-top: 6px; }
	.header-side img { width: 34px; height: 34px; }

	.mobile-only { display: block; }

	/* Mobile background */
	body {
		background: #000 url('bg1.jpg') center top / cover no-repeat;
	}

	/* Keep buttons readable on textured backgrounds */
	.panel { background: rgba(27,20,13,0.92); }
}