:root {
	color-scheme: light;
	--ink: #1c1a17;
	--muted: #6a625c;
	--paper: #f6f2ea;
	--sun: #f0b429;
	--clay: #d6795c;
	--ocean: #23404f;
	--white: #ffffff;
	--shadow: 0 24px 60px rgba(35, 64, 79, 0.18);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Roboto", "Segoe UI", sans-serif;
	color: var(--ink);
	background: var(--paper);
	min-height: 100vh;
	display: block;
}

.topbar {
	width: 100%;
	background: #000000;
	color: var(--white);
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.topbar-title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--white);
}

.topbar-link {
	color: var(--white);
	font-size: 0.85rem;
	text-decoration: none;
	opacity: 0.85;
}

.topbar-link:hover {
	opacity: 1;
	text-decoration: underline;
}

.page {
	width: min(980px, 100%);
	display: grid;
	gap: 32px;
	margin: 40px auto 64px;
	padding: 0 20px;
}

hr {
	border: none;
	border-top: 1px solid #000000;
	margin: 0;
}

.ad-container {
	display: flex;
	justify-content: center;
	padding: 16px 20px;
    text-align:center;
}

.adsbygoogle {
	display: block !important;
	margin: 0 auto !important;
}

.hero {
	display: grid;
	gap: 12px;
}

.section-title {
	font-size: 1.6rem;
	margin: 0 0 12px;
	color: var(--ink);
}

.hero-title {
	font-family: "Roboto", "Segoe UI", sans-serif;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	margin: 0;
}

.lede {
	color: var(--muted);
	font-size: 1.1rem;
	max-width: 60ch;
	margin: 0;
}

.panel {
	background: var(--white);
	border-radius: 24px;
	padding: 28px;
	box-shadow: var(--shadow);
	display: grid;
	gap: 20px;
}

.field {
	display: grid;
	gap: 10px;
	font-weight: 500;
}

.field-label {
	font-size: 0.95rem;
	color: var(--ocean);
}

textarea {
	width: 100%;
	min-height: 220px;
	resize: vertical;
	border-radius: 18px;
	border: 1px solid rgba(35, 64, 79, 0.18);
	padding: 18px 20px;
	font-size: 1rem;
	line-height: 1.6;
	background: #fffaf2;
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea:focus {
	outline: none;
	border-color: var(--clay);
	box-shadow: 0 0 0 3px rgba(214, 121, 92, 0.2);
}

.actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
}

.action {
	border: none;
	background: var(--ocean);
	color: var(--white);
	padding: 12px 16px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.action:hover {
	transform: translateY(-1px);
	background: #1c3240;
}

.action:active {
	transform: translateY(1px);
}

.meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--muted);
	font-size: 0.95rem;
}

.counts {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.ghost {
	border: 1px dashed rgba(35, 64, 79, 0.3);
	background: transparent;
	color: var(--ocean);
	padding: 8px 16px;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	transition: border 0.2s ease, color 0.2s ease;
}

.ghost:hover {
	border-color: var(--clay);
	color: var(--clay);
}

@media (max-width: 720px) {
	body {
		padding: 32px 16px;
	}

	.panel {
		padding: 20px;
	}

	.meta {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}
}
