/* ============================================
   SkyblockAddons — Shared Stylesheet
   ============================================ */

:root {
	--bg: #0a0a14;
	--bg-deep: #06060e;
	--bg-card: #12122a;
	--bg-card-hover: #1a1a3a;
	--gold: #F59E0B;
	--gold-light: #FBBF24;
	--gold-dark: #D97706;
	--gold-glow: rgba(245, 158, 11, 0.4);
	--gold-subtle: rgba(245, 158, 11, 0.1);
	--purple: #8B5CF6;
	--purple-light: #A78BFA;
	--purple-glow: rgba(139, 92, 246, 0.3);
	--purple-subtle: rgba(139, 92, 246, 0.08);
	--text: #f0f0f8;
	--text-dim: #9CA3AF;
	--text-muted: #6B7280;
	--line: rgba(139, 92, 246, 0.18);
	--line-strong: rgba(245, 158, 11, 0.35);
	--font-display: "Orbitron", sans-serif;
	--font-body: "Rajdhani", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--gold-dark) var(--bg);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
	background: linear-gradient(var(--gold), var(--gold-dark));
	border-radius: 4px;
}

body {
	font-family: var(--font-body);
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
	line-height: 1.6;
}

canvas#particles {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 0;
	pointer-events: none;
}

.bg-glow {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 50% at 20% 0%, rgba(139, 92, 246, 0.12), transparent 60%),
		radial-gradient(ellipse 60% 40% at 80% 10%, rgba(245, 158, 11, 0.08), transparent 50%),
		radial-gradient(ellipse 50% 50% at 50% 100%, rgba(139, 92, 246, 0.06), transparent 60%);
}

.grid-overlay {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.025) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.content-wrap { position: relative; z-index: 1; }

.container {
	width: min(1200px, 92vw);
	margin: 0 auto;
}

/* ─── NAV ─── */
.navbar {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(10, 10, 20, 0.88);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--line);
	transition: background 0.3s ease;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	padding: 0 4%;
	max-width: 1400px;
	margin: 0 auto;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--text);
}

.nav-brand img {
	width: 38px; height: 38px;
	border-radius: 10px;
	border: 1px solid var(--line-strong);
	box-shadow: 0 0 12px var(--gold-glow);
}

.nav-brand-text {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.nav-brand-text .accent { color: var(--gold); }

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	position: relative;
	color: var(--text-dim);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -4px; left: 0;
	width: 0; height: 2px;
	background: var(--gold);
	box-shadow: 0 0 8px var(--gold-glow);
	transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 10px;
	border: 1px solid var(--gold);
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	color: #0a0a14;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 20px var(--gold-glow);
}

.nav-cta svg {
	width: 16px; height: 16px;
	fill: currentColor;
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px var(--gold-glow);
}

/* ─── BUTTONS ─── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 12px;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
	border: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	color: #0a0a14;
	box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 40px var(--gold-glow);
}

.btn-secondary {
	background: transparent;
	color: var(--purple-light);
	border: 1px solid var(--purple);
	box-shadow: 0 4px 16px var(--purple-glow);
}

.btn-secondary:hover {
	background: var(--purple-subtle);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px var(--purple-glow);
}

.btn svg {
	width: 18px; height: 18px;
	fill: currentColor;
}

/* ─── PAGE HEADER ─── */
.page-header {
	padding: 152px 20px 72px;
	text-align: center;
}

.page-header-label {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.page-header h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: 900;
	letter-spacing: 3px;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 16px;
}

.page-header h1 .gold {
	background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.page-header p {
	font-size: 1.05rem;
	color: var(--text-dim);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 500;
}

/* ─── SECTIONS ─── */
.section {
	padding: 80px 0;
	position: relative;
}

.section-alt {
	background: linear-gradient(180deg, var(--bg-deep), var(--bg));
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-label {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1.15;
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 1.05rem;
	color: var(--text-dim);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 500;
}

/* ─── FEATURE CARDS ─── */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.feature-card {
	padding: 32px 28px;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, var(--bg-card), rgba(18, 18, 42, 0.6));
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.feature-card:hover {
	transform: translateY(-6px);
	border-color: var(--line-strong);
	box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px var(--gold-subtle);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--gold-subtle);
	border: 1px solid var(--line-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	transition: box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon { box-shadow: 0 0 20px var(--gold-glow); }

.feature-icon svg {
	width: 24px; height: 24px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.feature-card h3 {
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 10px;
}

.feature-card ul {
	padding-left: 18px;
	display: grid;
	gap: 5px;
}

.feature-card li, .feature-card p {
	font-size: 0.93rem;
	color: var(--text-dim);
	line-height: 1.6;
	font-weight: 500;
}

/* ─── DOWNLOAD CARDS ─── */
.download-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.download-card {
	padding: 28px 24px;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: var(--bg-card);
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.download-card:hover {
	transform: translateY(-4px);
	border-color: var(--gold);
}

.download-card.featured {
	border-color: var(--gold);
	background: linear-gradient(145deg, rgba(245, 158, 11, 0.08), var(--bg-card));
	box-shadow: 0 0 30px var(--gold-subtle);
}

.download-version {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--gold-light);
	letter-spacing: 1px;
	margin-bottom: 4px;
}

.download-mc {
	font-size: 0.88rem;
	color: var(--text-dim);
	font-weight: 600;
	margin-bottom: 4px;
}

.download-loader {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 6px;
	background: var(--purple-subtle);
	border: 1px solid rgba(139, 92, 246, 0.25);
	color: var(--purple-light);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.download-card .btn {
	width: 100%;
	padding: 12px;
	font-size: 0.75rem;
}

/* ─── INSTALL STEPS ─── */
.install-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.install-step {
	padding: 24px 20px;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: var(--bg-card);
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.install-step:hover {
	transform: translateY(-4px);
	border-color: var(--purple);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 10px;
	font-family: var(--font-display);
	font-size: 0.88rem;
	font-weight: 900;
	color: #0a0a14;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	margin-bottom: 14px;
}

.install-step h3 {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 8px;
}

.install-step p {
	font-size: 0.9rem;
	color: var(--text-dim);
	line-height: 1.6;
	font-weight: 500;
}

/* ─── FAQ ─── */
.faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: grid;
	gap: 12px;
}

.faq-item {
	border-radius: 14px;
	border: 1px solid var(--line);
	background: var(--bg-card);
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.faq-item:hover { border-color: rgba(139, 92, 246, 0.3); }

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-align: left;
}

.faq-question svg {
	width: 20px; height: 20px;
	stroke: var(--text-muted);
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
	transition: transform 0.3s ease, stroke 0.3s ease;
}

.faq-item.open .faq-question svg {
	transform: rotate(180deg);
	stroke: var(--gold);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 260px; }

.faq-answer p {
	padding: 0 24px 20px;
	font-size: 0.93rem;
	color: var(--text-dim);
	line-height: 1.7;
	font-weight: 500;
}

/* ─── TEXT BLOCKS (terms, privacy, simple text pages) ─── */
.content-stack {
	max-width: 760px;
	margin: 0 auto;
	display: grid;
	gap: 20px;
}

.text-block {
	padding: 32px;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: var(--bg-card);
}

.text-block h2 {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 12px;
}

.text-block p {
	font-size: 0.95rem;
	color: var(--text-dim);
	line-height: 1.7;
	font-weight: 500;
}

.text-block p + p { margin-top: 10px; }

.text-block ul {
	padding-left: 20px;
	display: grid;
	gap: 6px;
	margin-top: 8px;
}

.text-block li {
	font-size: 0.95rem;
	color: var(--text-dim);
	line-height: 1.65;
	font-weight: 500;
}

.text-block a {
	color: var(--purple-light);
	text-decoration: none;
	transition: color 0.2s ease;
}

.text-block a:hover { color: var(--gold-light); }

/* ─── CREDIT CARDS ─── */
.credits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.credit-card {
	padding: 28px 24px;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: var(--bg-card);
	transition: transform 0.3s ease, border-color 0.3s ease;
	position: relative;
	overflow: hidden;
}

.credit-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--purple), transparent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.credit-card:hover {
	transform: translateY(-4px);
	border-color: rgba(139, 92, 246, 0.35);
}

.credit-card:hover::before { transform: scaleX(1); }

.credit-card h3 {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 10px;
}

.credit-card p {
	font-size: 0.93rem;
	color: var(--text-dim);
	line-height: 1.65;
	font-weight: 500;
}

/* ─── ARCHIVE LIST ─── */
.archive-list {
	max-width: 760px;
	margin: 0 auto;
	display: grid;
	gap: 12px;
}

.archive-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: var(--bg-card);
	flex-wrap: wrap;
	transition: border-color 0.3s ease;
}

.archive-item:hover { border-color: var(--line-strong); }

.archive-version {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--gold-light);
}

.archive-meta {
	font-size: 0.9rem;
	color: var(--text-dim);
	font-weight: 500;
}

.archive-badge {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 6px;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.archive-badge.fabric {
	background: var(--purple-subtle);
	border: 1px solid rgba(139, 92, 246, 0.25);
	color: var(--purple-light);
}

.archive-badge.unavailable {
	background: rgba(107, 114, 128, 0.08);
	border: 1px solid rgba(107, 114, 128, 0.2);
	color: var(--text-muted);
}

/* ─── FOOTER ─── */
.footer {
	border-top: 1px solid var(--line);
	padding: 48px 0 32px;
	background: var(--bg-deep);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.footer-brand { max-width: 300px; }

.footer-brand-name {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 8px;
}

.footer-brand-name .accent { color: var(--gold); }

.footer-brand p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
	font-weight: 500;
}

.footer-links { display: flex; gap: 48px; }

.footer-col h4 {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}

.footer-col ul {
	list-style: none;
	display: grid;
	gap: 8px;
}

.footer-col a {
	color: var(--text-dim);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom p {
	font-size: 0.82rem;
	color: var(--text-muted);
	font-weight: 500;
}

.footer-bottom a {
	color: var(--purple-light);
	text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold-light); }

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
	position: fixed;
	top: 0; left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--purple), var(--gold));
	z-index: 200;
	transition: width 0.1s linear;
}

/* ─── REVEAL ─── */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.5,0,0,1), transform 0.7s cubic-bezier(0.5,0,0,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── BACK TO TOP ─── */
.back-to-top {
	position: fixed;
	bottom: 28px; right: 28px;
	width: 44px; height: 44px;
	border-radius: 12px;
	border: 1px solid var(--line-strong);
	background: rgba(10, 10, 20, 0.9);
	backdrop-filter: blur(12px);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 50;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	pointer-events: none;
}

.back-to-top.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.back-to-top:hover { box-shadow: 0 0 20px var(--gold-glow); }

.back-to-top svg {
	width: 20px; height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.download-cards { grid-template-columns: repeat(2, 1fr); }
	.install-steps { grid-template-columns: repeat(2, 1fr); }
	.credits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.nav-links { display: none; }

	.nav-inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 10px;
		min-height: unset;
		padding: 14px 4%;
	}

	.page-header { padding: 130px 16px 56px; }

	.features-grid { grid-template-columns: 1fr; }
	.download-cards { grid-template-columns: 1fr; }
	.install-steps { grid-template-columns: 1fr; }
	.credits-grid { grid-template-columns: 1fr; }

	.footer-inner { flex-direction: column; }
	.footer-links { gap: 32px; }
}

@media (max-width: 480px) {
	.btn { width: 100%; max-width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.reveal { opacity: 1; transform: none; }
}

/* ============================================
   UI REFRESH 2026 — subtle modernization
   (spacing, typography, buttons, hover, focus)
   ============================================ */

html {
	scroll-padding-top: 92px; /* keep in-page anchors clear of the fixed navbar */
	-webkit-text-size-adjust: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	letter-spacing: 0.15px;
}

::selection {
	background: var(--gold);
	color: #0a0a14;
}

/* Accessible keyboard focus ring across interactive elements */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible,
.faq-question:focus-visible {
	outline: 2px solid var(--gold-light);
	outline-offset: 3px;
	border-radius: 8px;
}

/* Buttons — richer gradient depth + tactile press feedback */
.btn-primary {
	background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
}

.btn-primary:hover {
	box-shadow: 0 10px 42px var(--gold-glow);
}

.btn:active,
.nav-cta:active { transform: translateY(-1px); }

.nav-cta:hover { filter: brightness(1.04); }

/* Softer, more contemporary card surfaces */
.feature-card,
.download-card,
.credit-card,
.install-step,
.faq-item,
.text-block,
.archive-item {
	border-radius: 18px;
}

/* Slightly crisper card lift on hover */
.download-card:hover,
.install-step:hover,
.credit-card:hover {
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

/* Refined nav-link underline weight */
.nav-links a::after { height: 2.5px; border-radius: 2px; }

/* Marginally brighter secondary text for readability */
.section-subtitle,
.page-header p { color: #AEB4C0; }
