:root {
	--forest-dark: #141f14;
	--forest: #283a28;
	--moss: #4f6b34;
	--wood: #b78a55;
	--accent: #f2e4c6;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: radial-gradient(circle at top, #2e4a31 0, #141f14 50%, #0a0f0a 100%);
	color: #f5f5f5;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.navbar {
	background: rgba(10, 15, 10, 0.92);
	backdrop-filter: blur(8px);
}

.navbar-brand span {
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.logo-circle {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 20%, #f4e3c2, #b4844a 55%, #593721 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.5rem;
	overflow: hidden;
}

.logo-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero {
	position: relative;
	flex: 1 0 auto;
	display: flex;
	align-items: center;
	padding: 4rem 1rem 3rem;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(120, 180, 120, 0.35), transparent 55%),
		radial-gradient(circle at bottom right, rgba(67, 104, 67, 0.5), transparent 55%);
	mix-blend-mode: screen;
	opacity: 0.9;
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
}

.hero-card {
	background: rgba(11, 17, 11, 0.94);
	border-radius: 1.5rem;
	border: 1px solid rgba(173, 201, 153, 0.25);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.75),
		0 0 0 1px rgba(255, 255, 255, 0.02);
	padding: 2.25rem 2.5rem;
}

@media (max-width: 576px) {
	.hero-card {
		padding: 1.75rem 1.5rem;
	}
}

.tagline {
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-size: 0.78rem;
	color: #c7d5c0;
	margin-bottom: 0.75rem;
}

h1 {
	font-weight: 700;
	font-size: clamp(2.0rem, 3vw + 1rem, 2.8rem);
	line-height: 1.15;
	margin-bottom: 1rem;
}

h1 span.emphasis {
	color: var(--accent);
}

.hero-lead {
	font-size: 1.05rem;
	color: #e3efe0;
	max-width: 40rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: rgba(61, 97, 61, 0.7);
	padding: 0.35rem 0.95rem;
	font-size: 0.83rem;
	color: #d7f1c7;
	margin-top: 0.25rem;
}

.pill span.dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #8fe388;
	margin-right: 0.4rem;
}

.btn-primary {
	background: linear-gradient(135deg, #6f9b3c, #a5c84f);
	border: none;
	color: #141f14;
	font-weight: 600;
	box-shadow: 0 12px 30px rgba(34, 54, 26, 0.7);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #7aad43, #c6dd67);
	color: #141f14;
	box-shadow: 0 16px 40px rgba(31, 48, 24, 0.85);
}

.btn-outline-light {
	border-color: rgba(232, 239, 227, 0.8);
	color: #e8efe3;
}

.btn-outline-light:hover {
	background: rgba(232, 239, 227, 0.12);
	color: #ffffff;
}

.hero-list {
	margin-top: 1.25rem;
	padding-left: 1rem;
	font-size: 0.98rem;
}

.hero-list li {
	margin-bottom: 0.4rem;
}

.hero-side {
	position: relative;
}

.hero-token {
	position: relative;
	width: min(260px, 80vw);
	margin: 0 auto;
}

.hero-token-circle {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 20%, #f4e3c2, #b4844a 52%, #5b3a22 100%);
	box-shadow:
		0 22px 45px rgba(0, 0, 0, 0.9),
		0 0 0 10px rgba(12, 24, 12, 0.95),
		0 0 0 24px rgba(86, 118, 68, 0.8);
	overflow: hidden;
}

.hero-token-circle img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-badge {
	position: absolute;
	bottom: -0.4rem;
	right: -0.1rem;
	background: rgba(10, 16, 10, 0.96);
	border-radius: 1rem;
	padding: 0.5rem 0.8rem;
	border: 1px solid rgba(173, 201, 153, 0.6);
	font-size: 0.74rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.hero-badge span.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #8fe388;
}

.section {
	margin-top: 2.5rem;
}

.section h2 {
	font-size: 1.35rem;
	margin-bottom: 0.75rem;
	color: #f7f9f6;
}

.section p,
.section li {
	color: #dde7da;
}

.section-card {
	background: rgba(9, 14, 9, 0.92);
	border-radius: 1.2rem;
	padding: 1.4rem 1.5rem;
	border: 1px solid rgba(120, 149, 112, 0.4);
	height: 100%;
}

/* About / profile */

.profile-avatar-wrapper {
	text-align: center;
}

.profile-avatar {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid rgba(173, 201, 153, 0.85);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
	margin-bottom: 1rem;
}

.profile-name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.15rem;
}

.profile-alias {
	font-size: 0.95rem;
	color: #c3d5c2;
	margin-bottom: 0.75rem;
}

.profile-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	font-size: 0.8rem;
}

.profile-tag {
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	border: 1px solid rgba(173, 201, 153, 0.5);
	color: #dde7da;
}

/* Video grid */

.video-grid {
	margin-top: 1.25rem;
}

.video-card {
	display: block;
	background: rgba(6, 10, 6, 0.95);
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid rgba(120, 149, 112, 0.4);
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.video-card:hover {
	transform: translateY(-3px);
	border-color: rgba(190, 220, 160, 0.8);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.85);
}

.video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-body {
	padding: 0.75rem 0.9rem 0.85rem;
}

.video-episode {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #c7d5c0;
}

.video-title {
	font-size: 0.95rem;
	font-weight: 600;
	margin-top: 0.2rem;
	color: #f6fbf4;
}

footer {
	background: #050805;
	border-top: 1px solid rgba(144, 171, 132, 0.4);
	color: #b8c7b4;
	font-size: 0.85rem;
	padding: 0.9rem 0;
}

footer a {
	color: #e3f1dd;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}
/* Shoutbox */

.shoutbox-card {
	background: rgba(5, 8, 5, 0.97);
	border-radius: 1.1rem;
	border: 1px solid rgba(120, 149, 112, 0.6);
	padding: 1.2rem 1.3rem;
}

.shoutbox-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.6rem;
}

.shoutbox-title {
	font-family: "Courier New", Consolas, monospace;
	font-size: 0.95rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c8e0c5;
}

.shoutbox-console {
	background: #050805;
	border-radius: 0.6rem;
	border: 1px solid #304030;
	padding: 0.6rem 0.7rem;
	font-family: "Courier New", Consolas, monospace;
	font-size: 0.83rem;
	color: #d0f0d0;
	max-height: 230px;
	overflow-y: auto;
}

.shout-line {
	white-space: pre-wrap;
	word-break: break-word;
}

.shout-line .t {
	color: #7ea67e;
}

.shout-line .n {
	color: #a7c4ff;
}

.shout-line .m {
	color: #f0f0f0;
}

.shoutbox-form {
	margin-top: 0.8rem;
	font-family: "Courier New", Consolas, monospace;
}

.shoutbox-form .form-control {
	font-family: "Courier New", Consolas, monospace;
	font-size: 0.85rem;
	background: #020402;
	border-color: #304030;
	color: #e5f5e5;
}

.shoutbox-form .form-control:focus {
	background: #050805;
	color: #ffffff;
	border-color: #5c845c;
	box-shadow: 0 0 0 0.1rem rgba(92, 132, 92, 0.7);
}

.shoutbox-hint {
	font-size: 0.75rem;
	color: #9bb09b;
	margin-top: 0.25rem;
}

.btn-console {
	font-family: "Courier New", Consolas, monospace;
	font-size: 0.82rem;
	padding: 0.25rem 0.75rem;
}
::placeholder {
	font-weight: bold;
	opacity: 0.25;
	color: #9bb09b !important;
}
.video-thumb-shorts{
	max-height: 450px;
	overflow: hidden;
}
.video-thumb-shorts img {
	position: relative;
	top: -120px;
}
/* Poll styles */
.poll-options .form-check {
	margin-bottom: 0.35rem;
}

.poll-message {
	font-size: 0.8rem;
	color: #cfe7c8;
}

.poll-message.error {
	color: #ff9f9f;
}

.poll-message.success {
	color: #c2f5c2;
}

/* Stats layout */
.poll-stat-line {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 2.2fr) auto;
	gap: 0.5rem;
	align-items: center;
	font-size: 0.88rem;
	margin-bottom: 0.35rem;
}

.poll-stat-line .label {
	color: #e4efe0;
}

.poll-stat-line .bar-wrapper {
	background: #050805;
	border-radius: 999px;
	overflow: hidden;
	border: 1px solid rgba(120, 149, 112, 0.6);
	height: 10px;
}

.poll-stat-line .bar {
	height: 100%;
	background: linear-gradient(90deg, #6f9b3c, #a5c84f);
	width: 0%;
	transition: width 0.3s ease-out;
}

.poll-stat-line .value {
	font-family: "Courier New", Consolas, monospace;
	color: #cde4c7;
}

.poll-total {
	font-size: 0.9rem;
	color: #c7d5c0;
}
