/* Base */
:root {
	--bg: #000000;
	--white: #ffffff;
	--red: #ff0000;
	--green: #00ff29;
	--grid-line: rgba(30, 30, 120, 0.42);
	--grid-size: 56px;

	--offer-grad-1: #060639;
	--offer-grad-2: #000000;

	--container: 1200px;
	--gap-half: 1.25rem;
	--gap-stack: 2.5rem;
}

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

html,
body {
	height: 100%;
}

body {
	margin: 0;
	background-color: var(--bg);
	background-image:
		repeating-linear-gradient(
			to right,
			var(--grid-line) 0,
			var(--grid-line) 1px,
			transparent 1px,
			transparent var(--grid-size)
		),
		repeating-linear-gradient(
			to bottom,
			var(--grid-line) 0,
			var(--grid-line) 1px,
			transparent 1px,
			transparent var(--grid-size)
		);
	background-attachment: fixed;
	color: var(--white);
	font-family: "Barlow Condensed", ui-sans-serif, system-ui, -apple-system,
		Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Refresh/reload reveal delay (reduces perceived jitter) */
.js body {
	opacity: 0;
}

.js body.is-ready {
	opacity: 1;
	transition: opacity 200ms ease;
}

@media (prefers-reduced-motion: reduce) {
	.js body.is-ready {
		transition: none;
	}
}

.container {
	width: min(100% - 3rem, var(--container));
	margin-inline: auto;
}

.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 (just enough to match the Offers area context) */
.site-header {
	padding: 2.5rem 0 var(--gap-half);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 1.5rem;
}

.brand-logo {
	width: 84px;
	height: 84px;
	display: block;
	border: 4px solid var(--red);
	border-radius: 20%;
	padding: 0;
	background: transparent;
}

.hero-title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.6px;
	line-height: 1.05;
	text-transform: uppercase;
}

.hero-title-accent {
	color: var(--red);
}

/* Offers */
.offers {
	padding: var(--gap-half) 0 4rem;
}

.offers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.6rem;
	margin-top: 1.5rem;
}

@media (min-width: 900px) {
	.offers-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.offer-card {
	border-radius: 10%;
	display: flex;
	flex-direction: column;
	padding: 2.2rem 1.9rem;
	text-align: center;
	background: radial-gradient(circle at 0% 0%, var(--offer-grad-1), var(--offer-grad-2));
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
	will-change: transform;
}

.offer-card:hover,
.offer-card:focus-within {
	transform: translateY(-10px) scale(1.01);
	filter: brightness(1.04);
	box-shadow: 0 44px 120px rgba(0, 0, 0, 0.78);
}

@media (prefers-reduced-motion: reduce) {
	.offer-card {
		transition: none;
	}

	.offer-card:hover,
	.offer-card:focus-within {
		transform: none;
	}
}

.offer-title {
	margin: 0 0 0.7rem;
	font-size: 30px;
	font-weight: 700;
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.offer-price {
	margin: 0 0 1.6rem;
	font-size: 25px;
	font-weight: 700;
	color: var(--white);
}

.offer-points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	flex: 1;
}

.offer-points li {
	font-size: 20px;
	color: var(--white);
	letter-spacing: 0.3px;
}

.offer-cta {
	display: inline-block;
	margin-top: auto;
	padding-top: 2.4rem;
	font-size: 25px;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	text-transform: none;
}

.glow-red {
	text-shadow:
		0 0 6px rgba(255, 0, 0, 0.35),
		0 0 18px rgba(255, 0, 0, 0.35),
		0 0 32px rgba(255, 0, 0, 0.25),
		0 0 48px rgba(255, 0, 0, 0.18);
}

.glow-white {
	text-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}

.offer-cta:hover,
.offer-cta:focus-visible {
	text-decoration: none;
	text-shadow:
		0 0 10px rgba(255, 255, 255, 0.35),
		0 0 22px rgba(255, 255, 255, 0.35),
		0 0 40px rgba(255, 255, 255, 0.25);
}

@media (max-width: 520px) {
	.container {
		width: min(100% - 2rem, var(--container));
	}

	.header-inner {
		grid-template-columns: 1fr;
		justify-items: start;
	}
}

/* Fiverr */
.fiverr {
	padding: 1.75rem 0 4rem;
}

.fiverr-inner {
	display: grid;
	justify-items: center;
	text-align: center;
}

.fiverr-title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--white);
}

.fiverr-accent {
	color: var(--green);
}

.media-frame {
	margin-top: calc(var(--gap-stack) * 0.75);
	border: 6px solid var(--red);
	border-radius: 7.5%;
	overflow: hidden;
	width: min(630px, 100%);
	background: rgba(0, 0, 0, 0.25);
}

.media-link {
	display: block;
	text-decoration: none;
	cursor: pointer;
	transition: transform 180ms ease, filter 160ms ease, box-shadow 160ms ease;
	will-change: transform;
}

.media-link:hover {
	transform: scale(1.03);
	filter: brightness(1.06);
	box-shadow: 0 0 22px rgba(255, 0, 0, 0.18);
}

.media-link:focus-visible {
	transform: scale(1.03);
}

.media-link:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
	.media-link {
		transition: none;
	}

	.media-link:hover,
	.media-link:focus-visible {
		transform: none;
	}
}


.rating-stars {
	display: inline-block;
	color: #ffdf6e;
	margin-left: 0;
	margin-right: 0.18em;
	letter-spacing: 0.08em;
	text-shadow:
		0 0 6px rgba(255, 255, 255, 0.45),
		0 0 14px rgba(255, 223, 110, 0.55),
		0 0 26px rgba(255, 223, 110, 0.45),
		0 0 44px rgba(255, 223, 110, 0.3);
}

.media-img {
	display: block;
	width: 100%;
	height: auto;
}

/* YouTube */
.youtube {
	padding: 1.75rem 0 4rem;
}

.youtube-inner {
	display: grid;
	justify-items: center;
	text-align: center;
}

.youtube-title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--white);
}

.youtube-accent {
	color: var(--red);
}

/* FAQs */
.faqs {
	padding: 1.75rem 0 5rem;
}

.faqs-inner {
	display: grid;
	gap: 1rem;
	justify-items: center;
}

.faq-item {
	width: min(920px, 100%);
	border-radius: clamp(20px, 4vw, 36px);
	background: linear-gradient(90deg, var(--offer-grad-1), var(--offer-grad-2));
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
	overflow: hidden;
}

.faq-question {
	list-style: none;
	cursor: pointer;
	padding: 1.1rem 1.4rem;
	font-size: 25px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.3px;
	text-transform: none;
	position: relative;
}

/* Hide default marker */
.faq-question::-webkit-details-marker {
	display: none;
}

/* Custom white chevron */
.faq-question::after {
	content: "";
	position: absolute;
	right: 1.2rem;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 3px solid rgba(255, 255, 255, 0.95);
	border-bottom: 3px solid rgba(255, 255, 255, 0.95);
	transform: translateY(-55%) rotate(45deg);
	transition: transform 160ms ease;
}

.faq-item[open] .faq-question::after {
	transform: translateY(-45%) rotate(225deg);
}

.faq-answer {
	padding: 0 1.4rem 1.2rem;
}

.faq-answer p {
	margin: 0;
	font-size: 20px;
	font-weight: 400;
	color: var(--white);
	letter-spacing: 0.3px;
}

.faq-question:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
	.faq-question::after {
		transition: none;
	}
}

/* Footer */
.site-footer {
	padding: 2.5rem 0 3rem;
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 4rem;
	row-gap: 1.6rem;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.2px;
	color: var(--white);
}

.footer-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: inherit;
	font-weight: inherit;
	color: var(--white);
	text-decoration: none;
	letter-spacing: inherit;
	transition: text-shadow 160ms ease, opacity 160ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
	opacity: 0.98;
	text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.footer-link:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 6px;
}

.footer-contact {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	gap: 0.45rem;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
}

.footer-text {
	font-size: inherit;
	font-weight: inherit;
	line-height: 1;
	letter-spacing: inherit;
}

.footer-icon {
	width: 44px;
	height: 44px;
	display: block;
	object-fit: contain;
}

.footer-contact-discord {
	gap: 0.23625rem;
}

.footer-icon-email {
	width: 34px;
	height: 34px;
}
