/*
Theme Name: Bounty Game
Theme URI: https://bountygameappdownload.com/
Author: Local
Description: Bounty Game — isolated WordPress theme. Edit only files in this theme folder.
Version: 1.5.8
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bounty-game
Tags: custom-menu, one-column
*/

/* Brand — deep red, gold, white (logo) */
:root {
	--bounty-red-deep: #0d0305;
	--bounty-red-mid: #5c1018;
	--bounty-red-bright: #8b1522;
	--bounty-gold: #c9a227;
	--bounty-gold-light: #e8c547;
	--bounty-gold-dim: rgba(201, 162, 39, 0.45);
	--bounty-white: #f8f6f2;
	--bounty-white-muted: rgba(248, 246, 242, 0.82);
	--bounty-font-body: "DM Sans", system-ui, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	--bounty-font-display: "Outfit", "DM Sans", system-ui, sans-serif;
	--bounty-radius-sm: 8px;
	--bounty-radius-md: 16px;
	--bounty-radius-lg: 22px;
	--bounty-radius-xl: 28px;
	--bounty-radius-card: 18px;
	--bounty-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--bounty-surface: rgba(22, 8, 12, 0.72);
	--bounty-surface-elevated: rgba(32, 12, 18, 0.85);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body.bounty-game-body {
	margin: 0;
	font-family: var(--bounty-font-body);
	font-size: 1.02rem;
	line-height: 1.62;
	letter-spacing: 0.01em;
	font-feature-settings: "kern" 1, "liga" 1;
	color: var(--bounty-white-muted);
	background-color: var(--bounty-red-deep);
	background-image:
		radial-gradient(ellipse 85% 55% at 100% -5%, rgba(139, 21, 34, 0.28) 0%, transparent 42%),
		radial-gradient(ellipse 70% 45% at 0% 105%, rgba(45, 18, 52, 0.18) 0%, transparent 45%),
		radial-gradient(ellipse 100% 70% at 50% 0%, rgba(139, 21, 34, 0.4) 0%, transparent 52%),
		linear-gradient(180deg, #1a070c 0%, var(--bounty-red-deep) 38%, #060203 100%);
	background-attachment: fixed;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body.bounty-game-body ::selection {
	background: rgba(201, 162, 39, 0.38);
	color: #fffef8;
}

/* Skip link + screen reader */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.bounty-skip-link:focus {
	clip: auto !important;
	height: auto;
	width: auto;
	left: 8px;
	top: 8px;
	z-index: 100001;
	padding: 0.5rem 1rem;
	background: var(--bounty-red-mid);
	color: var(--bounty-white);
	border: 1px solid var(--bounty-gold);
}

/* Header + nav gradient */
.bounty-header {
	position: sticky;
	top: 0;
	z-index: 100000;
	flex-shrink: 0;
}

.bounty-header__bar {
	background: linear-gradient(
		180deg,
		rgba(110, 24, 34, 0.94) 0%,
		rgba(58, 14, 22, 0.92) 42%,
		rgba(22, 4, 8, 0.95) 100%
	);
	border-bottom: 1px solid rgba(201, 162, 39, 0.28);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(232, 197, 71, 0.14);
	backdrop-filter: blur(14px) saturate(1.15);
	-webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.bounty-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.75rem 1.15rem;
}

.bounty-header__brand-wrap .custom-logo-link,
.bounty-header__brand {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.bounty-header__brand-wrap .custom-logo-link img,
.bounty-header__logo {
	height: clamp(40px, 8vw, 52px);
	width: auto;
	max-width: min(220px, 55vw);
	object-fit: contain;
	display: block;
}

/* Mobile menu button */
.bounty-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	padding: 0.5rem 0.65rem;
	background: rgba(0, 0, 0, 0.32);
	border: 1px solid rgba(201, 162, 39, 0.35);
	border-radius: var(--bounty-radius-sm);
	cursor: pointer;
	color: var(--bounty-white);
	transition: border-color 0.2s var(--bounty-ease-out), box-shadow 0.2s var(--bounty-ease-out);
}

.bounty-nav__toggle:hover,
.bounty-nav__toggle:focus-visible {
	border-color: var(--bounty-gold-light);
	box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.15);
	outline: none;
}

.bounty-nav__toggle-box {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
}

.bounty-nav__toggle-line {
	display: block;
	height: 2px;
	background: linear-gradient(90deg, var(--bounty-gold-light), var(--bounty-gold));
	border-radius: 1px;
}

/* Nav list */
.bounty-nav {
	width: 100%;
	order: 3;
	display: none;
	padding-top: 0.25rem;
	padding-bottom: 0.5rem;
}

.bounty-nav.is-open {
	display: block;
}

.bounty-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.bounty-nav__link {
	display: block;
	padding: 0.55rem 0.85rem;
	color: var(--bounty-white);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.93rem;
	letter-spacing: 0.03em;
	font-family: var(--bounty-font-display);
	border-radius: var(--bounty-radius-sm);
	border: 1px solid transparent;
	transition:
		background 0.22s var(--bounty-ease-out),
		border-color 0.22s var(--bounty-ease-out),
		color 0.22s var(--bounty-ease-out),
		box-shadow 0.22s var(--bounty-ease-out);
}

.bounty-nav__link:hover,
.bounty-nav__link:focus-visible {
	color: #fffef8;
	background: rgba(201, 162, 39, 0.16);
	border-color: rgba(232, 197, 71, 0.42);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	outline: none;
}

@media (min-width: 769px) {
	.bounty-nav__toggle {
		display: none;
	}

	.bounty-nav {
		display: block !important;
		width: auto;
		order: unset;
		padding: 0;
	}

	.bounty-nav__list {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		gap: 0.25rem 0.35rem;
	}

	.bounty-nav__link {
		padding: 0.5rem 0.85rem;
	}
}

.bounty-nav__item--current .bounty-nav__link {
	color: #fffef8;
	border-color: rgba(232, 197, 71, 0.55);
	background: linear-gradient(
		155deg,
		rgba(232, 197, 71, 0.32) 0%,
		rgba(139, 21, 34, 0.55) 55%,
		rgba(20, 5, 8, 0.65) 100%
	);
	box-shadow:
		0 0 0 1px rgba(232, 197, 71, 0.4),
		0 6px 22px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
	font-weight: 700;
}

.bounty-nav__item--current .bounty-nav__link:hover,
.bounty-nav__item--current .bounty-nav__link:focus-visible {
	color: #fffef8;
	border-color: var(--bounty-gold-light);
}

/* Contact form */
.bounty-contact-form {
	margin-top: 1rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(201, 162, 39, 0.28);
	border-radius: var(--bounty-radius-md);
	background: var(--bounty-surface);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	max-width: 36rem;
}

.bounty-contact-form__note {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	color: rgba(248, 246, 242, 0.65);
}

.bounty-contact-form__label {
	display: block;
	margin: 0.5rem 0 0.25rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--bounty-gold-light);
}

.bounty-contact-form__input,
.bounty-contact-form__textarea {
	width: 100%;
	padding: 0.5rem 0.65rem;
	border-radius: 6px;
	border: 1px solid rgba(201, 162, 39, 0.35);
	background: rgba(20, 5, 8, 0.6);
	color: var(--bounty-white);
	font: inherit;
}

.bounty-contact-form__textarea {
	resize: vertical;
	min-height: 6rem;
}

.bounty-contact-form__btn {
	margin-top: 1rem;
	padding: 0.55rem 1.1rem;
	border-radius: 8px;
	border: 1px solid var(--bounty-gold-dim);
	background: linear-gradient(180deg, rgba(201, 162, 39, 0.25) 0%, rgba(90, 15, 24, 0.9) 100%);
	color: var(--bounty-white);
	font-weight: 600;
	cursor: pointer;
}

.bounty-contact-form__btn:hover,
.bounty-contact-form__btn:focus-visible {
	border-color: var(--bounty-gold);
	outline: none;
}

/* Main content */
.bounty-main {
	flex: 1 0 auto;
	width: 100%;
}

.bounty-site {
	max-width: 920px;
	margin: 0 auto;
	padding: 2rem 1.2rem 3rem;
}

@media (min-width: 560px) {
	.bounty-site {
		margin-top: 0.65rem;
		margin-bottom: 1.5rem;
		padding: 2.35rem 1.65rem 3.35rem;
		border-radius: var(--bounty-radius-xl);
		background: linear-gradient(
			168deg,
			rgba(38, 14, 20, 0.82) 0%,
			rgba(14, 5, 8, 0.9) 48%,
			rgba(22, 8, 12, 0.88) 100%
		);
		border: 1px solid rgba(201, 162, 39, 0.2);
		box-shadow:
			0 28px 90px rgba(0, 0, 0, 0.48),
			0 0 0 1px rgba(0, 0, 0, 0.28),
			inset 0 1px 0 rgba(255, 255, 255, 0.06);
		backdrop-filter: blur(18px) saturate(1.08);
		-webkit-backdrop-filter: blur(18px) saturate(1.08);
	}
}

.bounty-site__title {
	font-family: var(--bounty-font-display);
	font-size: clamp(1.7rem, 4vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0 0 0.75rem;
	color: var(--bounty-white);
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.4),
		0 0 40px rgba(232, 197, 71, 0.08);
}

.bounty-site__lead {
	margin: 0 0 1.5rem;
	color: var(--bounty-white-muted);
}

.bounty-site a {
	color: var(--bounty-gold-light);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-color: rgba(232, 197, 71, 0.35);
	text-decoration-thickness: 1px;
	transition: color 0.2s var(--bounty-ease-out), text-decoration-color 0.2s var(--bounty-ease-out);
}

.bounty-site a:hover,
.bounty-site a:focus-visible {
	color: #fff8dc;
	text-decoration-color: rgba(232, 197, 71, 0.65);
}

.bounty-site a:focus-visible {
	outline: 2px solid rgba(232, 197, 71, 0.55);
	outline-offset: 3px;
	border-radius: 2px;
}

.bounty-site .wp-block-group,
.bounty-site p,
.bounty-site li {
	color: var(--bounty-white-muted);
}

/* Home guide */
.bounty-site--home {
	max-width: 960px;
}

.bounty-home {
	padding-bottom: 1rem;
}

.bounty-home__hero {
	margin-bottom: 2.5rem;
	padding: 0 0 2rem;
	position: relative;
	border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.bounty-home__hero::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: min(12rem, 55%);
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--bounty-gold-light), transparent);
	opacity: 0.85;
	pointer-events: none;
}

.bounty-home__hero-inner {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 720px) {
	.bounty-home__hero-inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
		gap: 2rem;
	}
}

.bounty-home__hero-figure {
	margin: 0;
	line-height: 0;
}

.bounty-home__hero-img {
	width: 100%;
	max-width: 640px;
	margin-inline: auto;
	height: auto;
	display: block;
	border-radius: var(--bounty-radius-md);
	border: 1px solid rgba(201, 162, 39, 0.35);
	box-shadow:
		0 12px 48px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(0, 0, 0, 0.25),
		0 0 48px rgba(139, 21, 34, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 720px) {
	.bounty-home__hero-img {
		max-width: none;
		margin-inline: 0;
	}
}

.bounty-home__hero-copy {
	min-width: 0;
}

.bounty-home__h1 {
	font-family: var(--bounty-font-display);
	font-size: clamp(1.55rem, 4.2vw, 2.15rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
	color: var(--bounty-white);
	text-shadow:
		0 2px 4px rgba(0, 0, 0, 0.45),
		0 0 36px rgba(232, 197, 71, 0.1);
}

.bounty-home__intro {
	margin: 0;
	font-size: 1.05rem;
	color: var(--bounty-white-muted);
	line-height: 1.65;
}

.bounty-home__section {
	margin-bottom: 2.5rem;
}

.bounty-home__section:last-child {
	margin-bottom: 0;
}

/* Standout section — copy on top, image below (single column; no side-by-side gap) */
.bounty-home__standout-inner {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	align-items: stretch;
}

.bounty-home__standout-copy {
	min-width: 0;
}

.bounty-home__standout-figure {
	margin: 0;
	line-height: 0;
	display: flex;
	justify-content: center;
	width: 100%;
}

.bounty-home__standout-img {
	width: 100%;
	max-width: min(720px, 100%);
	height: auto;
	display: block;
	margin-inline: auto;
	border-radius: var(--bounty-radius-md);
	border: 1px solid rgba(201, 162, 39, 0.32);
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.48),
		0 0 0 1px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bounty-home__standout-copy p:last-child {
	margin-bottom: 0;
}

/* Game categories — image left, copy right on wide screens */
.bounty-home__categories-inner {
	display: grid;
	gap: 1.5rem;
	align-items: start;
}

.bounty-home__categories-figure {
	margin: 0;
	line-height: 0;
}

.bounty-home__categories-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--bounty-radius-md);
	border: 1px solid rgba(201, 162, 39, 0.32);
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.48),
		0 0 0 1px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bounty-home__categories-copy {
	min-width: 0;
}

.bounty-home__categories-copy .bounty-home__cats {
	margin-bottom: 0;
}

@media (min-width: 720px) {
	.bounty-home__categories-inner {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
		gap: 2rem;
	}
}

/* Download / Login guides — phone mockup + steps (mobile: image first; desktop: steps | phone) */
.bounty-home__download-inner,
.bounty-home__login-inner {
	display: grid;
	gap: 1.5rem;
	align-items: start;
}

.bounty-home__download-figure,
.bounty-home__login-figure {
	margin: 0;
	line-height: 0;
	text-align: center;
}

.bounty-home__download-img,
.bounty-home__login-img {
	width: 100%;
	max-width: 300px;
	height: auto;
	display: inline-block;
	vertical-align: top;
	border-radius: var(--bounty-radius-md);
	border: 1px solid rgba(201, 162, 39, 0.32);
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.48),
		0 0 0 1px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bounty-home__download-copy,
.bounty-home__login-copy {
	min-width: 0;
}

.bounty-home__download-copy > .bounty-home__h3:first-child,
.bounty-home__login-copy > .bounty-home__h3:first-child {
	margin-top: 0;
}

.bounty-home__download-copy .bounty-home__steps,
.bounty-home__login-copy .bounty-home__steps {
	margin-bottom: 0;
}

.bounty-home__download-copy p:last-child,
.bounty-home__login-copy p:last-child {
	margin-bottom: 0;
}

@media (min-width: 720px) {
	.bounty-home__download-inner,
	.bounty-home__login-inner {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
		gap: 2rem;
		align-items: start;
	}

	.bounty-home__download-copy,
	.bounty-home__login-copy {
		grid-column: 1;
		grid-row: 1;
	}

	.bounty-home__download-figure,
	.bounty-home__login-figure {
		grid-column: 2;
		grid-row: 1;
		text-align: center;
	}

	.bounty-home__download-img,
	.bounty-home__login-img {
		max-width: 100%;
	}
}

/* Account-style cards — copy on top, screenshot below (stacked; no side gap) */
.bounty-home__section--account > .bounty-home__h2 + p {
	margin-bottom: 1.75rem;
}

.bounty-home__account-step {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: stretch;
	margin-bottom: 1.75rem;
	padding: 1.35rem 1.15rem;
	background: linear-gradient(
		165deg,
		rgba(28, 10, 14, 0.75) 0%,
		rgba(8, 3, 5, 0.82) 100%
	);
	border: 1px solid rgba(201, 162, 39, 0.26);
	border-radius: var(--bounty-radius-card);
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bounty-home__account-step:last-of-type {
	margin-bottom: 2rem;
}

@media (min-width: 720px) {
	.bounty-home__account-step {
		padding: 1.5rem 1.35rem;
		gap: 1.65rem;
	}
}

.bounty-home__account-step-figure {
	margin: 0;
	line-height: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}

.bounty-home__account-step-img {
	width: 100%;
	max-width: min(300px, 100%);
	height: auto;
	display: block;
	margin-inline: auto;
	object-fit: contain;
	border-radius: var(--bounty-radius-md);
	border: 1px solid rgba(201, 162, 39, 0.3);
	box-shadow:
		0 10px 36px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bounty-home__account-step-copy {
	min-width: 0;
	padding-inline: 0.15rem;
}

.bounty-home__account-step-copy > .bounty-home__h3:first-child {
	margin-top: 0;
}

.bounty-home__account-step-copy p:last-child {
	margin-bottom: 0;
}

/* Cash deposit list — visual steps reuse account-step cards */
.bounty-home__steps--deposit .bounty-home__account-step {
	margin-bottom: 0;
}

.bounty-home__steps--deposit > li {
	margin-bottom: 1.35rem;
}

.bounty-home__steps--deposit > li:last-child {
	margin-bottom: 0;
}

.bounty-home__steps--withdraw .bounty-home__account-step {
	margin-bottom: 0;
}

.bounty-home__steps--withdraw > li {
	margin-bottom: 1.35rem;
}

.bounty-home__steps--withdraw > li:last-child {
	margin-bottom: 0;
}

.bounty-home__h2 {
	font-family: var(--bounty-font-display);
	font-size: clamp(1.28rem, 3vw, 1.62rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
	padding-bottom: 0.65rem;
	color: #fffef8;
	border-bottom: none;
	position: relative;
}

.bounty-home__h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 3.25rem;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--bounty-gold-light), var(--bounty-gold));
	box-shadow: 0 0 18px rgba(232, 197, 71, 0.35);
}

.bounty-home__h3 {
	font-family: var(--bounty-font-display);
	font-size: 1.09rem;
	font-weight: 600;
	margin: 1.35rem 0 0.6rem;
	color: var(--bounty-gold-light);
	letter-spacing: -0.01em;
}

.bounty-home p {
	margin: 0 0 1rem;
}

.bounty-home__cats,
.bounty-home__bullets,
.bounty-home__steps {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
}

.bounty-home__cats li,
.bounty-home__bullets li,
.bounty-home__steps li {
	margin-bottom: 0.5rem;
}

.bounty-home__steps li::marker {
	color: var(--bounty-gold);
	font-weight: 600;
}

.bounty-home__procon {
	display: grid;
	gap: 1.5rem;
	margin: 1rem 0 1.25rem;
}

@media (min-width: 640px) {
	.bounty-home__procon {
		grid-template-columns: 1fr 1fr;
	}
}

.bounty-home__procon-col {
	background: var(--bounty-surface-elevated);
	border: 1px solid rgba(201, 162, 39, 0.24);
	border-radius: var(--bounty-radius-md);
	padding: 1.1rem 1.2rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bounty-home__procon-col .bounty-home__h3 {
	margin-top: 0;
}

/* FAQ accordion (<details>) */
.bounty-faq__hint {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: rgba(248, 246, 242, 0.65);
}

.bounty-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.bounty-faq__item {
	border: 1px solid rgba(201, 162, 39, 0.28);
	border-radius: var(--bounty-radius-md);
	background: var(--bounty-surface);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition: border-color 0.2s var(--bounty-ease-out), box-shadow 0.2s var(--bounty-ease-out);
}

.bounty-faq__item:hover {
	border-color: rgba(232, 197, 71, 0.35);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.bounty-faq__item[open] {
	border-color: rgba(232, 197, 71, 0.42);
}

.bounty-faq__q {
	list-style: none;
	cursor: pointer;
	padding: 0.85rem 2.5rem 0.85rem 1rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--bounty-gold-light);
	position: relative;
	user-select: none;
}

.bounty-faq__q::-webkit-details-marker {
	display: none;
}

.bounty-faq__q::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--bounty-gold);
	border-bottom: 2px solid var(--bounty-gold);
	transform: translateY(-60%) rotate(45deg);
	transition: transform 0.2s ease;
}

.bounty-faq__item[open] .bounty-faq__q::after {
	transform: translateY(-25%) rotate(-135deg);
}

.bounty-faq__q:hover,
.bounty-faq__q:focus-visible {
	background: rgba(201, 162, 39, 0.08);
	outline: none;
}

.bounty-faq__a {
	padding: 0 1rem 1rem;
	border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.bounty-faq__a p {
	margin: 0.85rem 0 0;
}

.bounty-home strong {
	color: var(--bounty-white);
	font-weight: 600;
}

.bounty-post-teaser {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.bounty-post-teaser:last-of-type {
	border-bottom: none;
}

.bounty-post-teaser .bounty-home__h3 {
	margin-top: 0;
}

.bounty-post-teaser .bounty-home__h3 a {
	text-decoration: none;
	color: var(--bounty-gold-light);
}

.bounty-post-teaser .bounty-home__h3 a:hover,
.bounty-post-teaser .bounty-home__h3 a:focus-visible {
	color: #fff4cc;
}

/* Footer */
.bounty-footer {
	flex-shrink: 0;
	margin-top: auto;
	background: linear-gradient(
		180deg,
		rgba(18, 6, 10, 0.98) 0%,
		rgba(6, 2, 4, 1) 100%
	);
	border-top: 1px solid rgba(201, 162, 39, 0.25);
	box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.bounty-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.75rem 1.15rem 2rem;
	text-align: center;
}

.bounty-footer__list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.35rem;
}

.bounty-footer__item {
	display: inline-flex;
	align-items: center;
}

.bounty-footer__item:not(:last-child)::after {
	content: "·";
	margin-left: 0.35rem;
	color: var(--bounty-gold-dim);
	font-weight: bold;
}

.bounty-footer__link {
	color: var(--bounty-white-muted);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	font-family: var(--bounty-font-display);
	letter-spacing: 0.02em;
	padding: 0.35rem 0.55rem;
	border-radius: var(--bounty-radius-sm);
	transition: color 0.2s var(--bounty-ease-out), background 0.2s var(--bounty-ease-out);
}

.bounty-footer__link:hover,
.bounty-footer__link:focus-visible {
	color: var(--bounty-gold-light);
	background: rgba(201, 162, 39, 0.1);
	outline: none;
}

.bounty-footer__link:focus-visible {
	box-shadow: 0 0 0 2px rgba(232, 197, 71, 0.35);
}

.bounty-footer__copy {
	margin: 0;
	font-size: 0.8rem;
	color: rgba(248, 246, 242, 0.55);
}
