@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&display=swap");

:root {
	--primary: #1f2576;
	--accent: #ff855b;
	--text: #1b1d2f;
	--muted: #6b6f85;
	--page-bg: #f5f6ff;
	--card-bg: #ffffff;
	--shadow-lg: 0 30px 70px rgba(20, 26, 77, 0.15);
	--shadow-sm: 0 10px 30px rgba(28, 37, 118, 0.08);
}

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

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system,
		BlinkMacSystemFont, sans-serif;
	color: var(--text);
	background: linear-gradient(
			135deg,
			rgba(31, 37, 118, 0.06),
			rgba(255, 133, 91, 0.08)
		)
		var(--page-bg);
	min-height: 100vh;
	line-height: 1.6;
	overflow-x: hidden;
}

html {
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.25s ease;
}

/* Auditorium Layout */
.auditorium-body {
	position: relative;
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.bg-orb {
	position: fixed;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 133, 91, 0.7), transparent 70%);
	filter: blur(40px);
	opacity: 0.35;
	z-index: 0;
}

.orb-one {
	top: -60px;
	right: -80px;
}

.orb-two {
	bottom: -120px;
	left: -60px;
	background: radial-gradient(circle, rgba(31, 37, 118, 0.55), transparent 70%);
}

.wrapper.audit {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	z-index: 1;
	min-height: 0;
}

.replay-panel {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.replay-panel .eyebrow {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--muted);
}

.replay-title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 600;
	color: var(--primary);
	margin: 0;
}

.auditorium-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding: 2.5rem 1.5rem 1rem;
	width: 100%;
}

.auditorium-header,
.auditorium-main,
.site-footer .footer-content {
	max-width: 1400px;
	margin: 0 auto;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.brand-mark {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--primary), #30379c);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.brand-title {
	margin: 0;
	font-weight: 600;
	color: var(--primary);
}

.primary-nav {
	display: flex;
	gap: 1rem;
	font-weight: 500;
	flex-wrap: wrap;
	margin-left: 2rem;
	margin-right: auto;
	flex: 1 1 auto;
}

.primary-nav a {
	color: var(--muted);
}

.primary-nav a:hover {
	color: var(--primary);
}

.user-chip {
	padding: 0.65rem 1rem;
	border-radius: 999px;
	background: rgba(31, 37, 118, 0.08);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.chip-label {
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
}

.chip-value {
	font-weight: 600;
	color: var(--primary);
	letter-spacing: 0.1em;
	font-size: 0.75rem;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-left: auto;
}

.header-buttons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.auditorium-main {
	padding: 1rem 1.5rem 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.auditorium-hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 2rem;
	align-items: center;
	margin-bottom: 2.5rem;
}

.session-panel h1 {
	font-size: clamp(2.4rem, 4vw, 3.4rem);
	margin: 0.35rem 0 0.75rem;
	color: var(--primary);
}

.session-summary {
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.hero-chips {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin: 1.25rem 0 1rem;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	background: rgba(31, 37, 118, 0.08);
	font-size: 0.85rem;
	font-weight: 500;
}

.chip-live {
	background: rgba(255, 133, 91, 0.15);
	color: var(--accent);
}

.pulse-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
	0% {
		transform: scale(0.85);
		opacity: 0.7;
	}
	50% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(0.85);
		opacity: 0.7;
	}
}

.replay-card {
	background: #ffffff6e;
	border-radius: 28px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	padding: 1rem;
	border: 1px solid rgba(31, 37, 118, 0.08);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.card-caption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.5rem;
}

.caption-title {
	font-weight: 600;
	margin: 0;
	color: var(--primary);
}

.caption-meta {
	font-size: 0.85rem;
	color: var(--muted);
}

.quality-pill {
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: rgba(31, 37, 118, 0.08);
	font-weight: 600;
	color: var(--primary);
}

.replay-card iframe {
	border: none;
	border-radius: 22px;
	width: 100%;
	min-height: 540px;
}

.live-card {
	position: relative;
}

.card-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(255, 132, 91, 0.219);
	color: #1f2576;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	z-index: 1;
}

.session-panel {
	background: rgba(255, 255, 255, 0.068);
	border-radius: 28px;
	padding: 2.5rem;
	border: 1px solid rgba(31, 37, 118, 0.08);
	box-shadow: var(--shadow-sm);
}

.session-list {
	list-style: none;
	padding-left: 0;
	margin: 1rem 0 0;
	color: var(--text);
}

.session-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.session-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
}

.session-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}

.btn-link {
	color: var(--primary);
	font-weight: 600;
}

.btn-link:hover {
	text-decoration: underline;
}

.meta-card {
	background: var(--card-bg);
	border-radius: 24px;
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(31, 37, 118, 0.06);
}

.meta-label {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.78rem;
	color: var(--muted);
	margin-bottom: 0.4rem;
}

.meta-value {
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary);
}

.meta-note {
	margin: 0.5rem 0 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.meta-support {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

.meta-support .btn-small {
	align-self: flex-start;
}

@media (max-width: 768px) {
	/* Fix scroll issue on mobile */
	.auditorium-body {
		height: auto;
		max-height: none;
		overflow: visible;
	}

	.wrapper.audit {
		min-height: auto;
	}

	.wrapper.audit > .content {
		padding-top: 2.5rem;
	}

	.auditorium-header {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem 1rem 1rem;
	}

	.auditorium-main {
		padding: 1rem;
		flex: none;
	}

	.auditorium-hero {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.session-panel {
		padding: 2rem 1.5rem;
	}

	.session-panel h1 {
		font-size: 2rem;
	}

	.replay-card iframe {
		min-height: 320px;
	}

	.header-actions {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.header-buttons {
		width: 100%;
	}

	.header-buttons .btn-cta {
		width: 100%;
		justify-content: center;
	}

	.user-chip {
		width: 100%;
		justify-content: center;
	}

	.site-footer {
		position: relative;
		margin-top: 2rem;
	}

	.chat-toggle-button {
		bottom: 1rem;
		right: 1rem;
		width: 50px;
		height: 50px;
	}

	.chat-toggle-button i {
		font-size: 1.3rem;
	}
}

/* Footer */
.site-footer {
	background: rgba(31, 37, 118, 0.98);
	color: #ffffffab;
	padding: 1rem 0;
	box-shadow: 0 -10px 40px rgba(14, 17, 51, 0.4);
	margin-top: auto;
	width: 100%;
}

.site-footer .footer-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.footer-location {
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.02em;
}

.footer-location i {
	margin-right: 0.5rem;
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.footer a {
	color: #ffffffab;
	/* text-decoration: none; */
	transition: color 0.25s ease;
}

footer a:hover {
	color: var(--accent);
}

.footer-nav {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.btn-cta {
	border: none;
	background: var(--accent);
	color: #fff;
	border-radius: 999px;
	padding: 0.65rem 1.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 10px 30px rgba(255, 133, 91, 0.4);
}

.btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(255, 133, 91, 0.4);
}

.btn-ghost {
	background: transparent;
	border: 1px solid #ff9b765d;
	color: #ff9b76;
	box-shadow: none;
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* Chat Button */
.chat-toggle-button {
	position: fixed;
	bottom: 1.3rem;
	right: 1.2rem;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: none;
	background: linear-gradient(135deg, var(--accent), #ff9b76);
	color: #fff;
	box-shadow: 0 20px 40px rgba(31, 37, 118, 0.25);
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 10;
}

.chat-toggle-button:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 25px 45px rgba(31, 37, 118, 0.35);
}

.chat-toggle-button i {
	font-size: 1.5rem;
}

/* Auth Landing */
.auth-body {
	background: var(--page-bg);
	min-height: 100vh;
}

.auth-wrapper {
	display: flex;
	justify-content: center; /* Centrer horizontalement */
	align-items: center; /* Centrer verticalement */
	height: 100vh; /* Prendre toute la hauteur de l'écran */
	padding: 4rem 6vw;
	gap: 12rem;
}

.auth-hero {
	color: var(--text);
	max-width: 520px;
}

.auth-hero h1 {
	font-size: clamp(2.2rem, 4vw, 3rem);
	margin: 0.5rem 0 1rem;
	color: var(--primary);
}

.auth-card {
	background: var(--card-bg);
	border-radius: 28px;
	padding: 4.5rem;
	width: 35%;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(31, 37, 118, 0.08);
}

.auth-card h2 {
	margin-top: 0;
	color: var(--primary);
}

.auth-card .subtitle {
	color: var(--muted);
	margin-bottom: 1.5rem;
}

.auth-card a {
	color: var(--muted);
}

.field-group {
	margin-bottom: 1.25rem;
}

.auth-card .form-control {
	border-radius: 14px;
	border: 1px solid rgba(31, 37, 118, 0.15);
	padding: 0.75rem 1rem;
	font-size: 1rem;
}

.form-hint {
	color: var(--muted);
	font-size: 0.9rem;
	margin-top: -0.5rem;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

.alert-modern {
	background: rgba(255, 133, 91, 0.1);
	border-radius: 16px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	color: var(--accent);
	text-align: left;
}

.alert-modern ul {
	margin: 0;
	padding-left: 1rem;
}

.legal-link {
	justify-content: center;
	margin-top: 1rem;
	gap: 10px;
	display: flex;
}

/* .legal-link a {
	color: var(--muted);
	text-decoration: underline;
} */

.legal-link a:hover {
	color: var(--primary);
}

/* Export confirmation */
.export-body {
	background: radial-gradient(
			circle at top left,
			rgba(31, 37, 118, 0.2),
			transparent 55%
		),
		var(--page-bg);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.export-wrapper {
	max-width: 560px;
	width: 100%;
}

.export-card {
	background: var(--card-bg);
	border-radius: 28px;
	padding: 3rem 2.5rem;
	text-align: center;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(31, 37, 118, 0.08);
}

.export-card h4 {
	color: #18a957;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.export-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(24, 169, 87, 0.15);
	color: #18a957;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.btn-download {
	margin-top: 1.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Legal Pages */
.legal-body {
	background: var(--page-bg);
}

.legal-wrapper {
	max-width: 960px;
	margin: 0 auto;
	padding: 4rem 1.5rem 5rem;
}

.legal-card {
	background: var(--card-bg);
	border-radius: 28px;
	box-shadow: var(--shadow-sm);
	padding: 3rem;
	border: 1px solid rgba(31, 37, 118, 0.06);
}

.legal-body a {
	color: #ff9b76;
}

.legal-card h2 {
	margin-top: 0;
	font-size: clamp(2rem, 3vw, 2.6rem);
	color: var(--primary);
}

.legal-card h5 {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary);
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(255, 133, 91, 0.3);
}

.legal-card hr {
	border: none;
	border-top: 1px solid rgba(31, 37, 118, 0.1);
	margin: 2.5rem 0;
}

.details-grid {
	display: grid;
	grid-template-columns: minmax(160px, 1fr) 2fr;
	gap: 0.75rem 1.5rem;
	margin-bottom: 2rem;
}

.details-grid span {
	display: block;
	color: var(--muted);
	font-weight: 500;
	font-size: 0.95rem;
}

.details-grid strong,
.details-grid p {
	color: var(--text);
	margin: 0;
}

.legal-note {
	color: var(--muted);
	margin-top: 0.5rem;
}

.legal-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 2rem;
	gap: 1.5rem;
}

.legal-header h2 {
	margin: 0;
}

.btn-back {
	background: rgba(31, 37, 118, 0.08);
	color: var(--primary);
	border: none;
	border-radius: 999px;
	padding: 0.65rem 1.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-back:hover {
	background: rgba(31, 37, 118, 0.15);
	transform: translateX(-2px);
	color: var(--primary);
}

.legal-section {
	margin-bottom: 2.5rem;
}

.legal-intro {
	background: rgba(31, 37, 118, 0.04);
	border-left: 4px solid var(--accent);
	padding: 1.5rem;
	border-radius: 12px;
	margin-bottom: 2rem;
	font-size: 1.05rem;
	line-height: 1.7;
}

.highlight-box {
	background: rgba(255, 133, 91, 0.08);
	border-radius: 14px;
	padding: 1.25rem 1.5rem;
	margin: 1.5rem 0;
	border-left: 4px solid var(--accent);
}

.highlight-box strong {
	color: var(--primary);
}

.legal-subsection {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.legal-subsection > p:first-child {
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.75rem;
	font-size: 1.05rem;
}

.details-grid {
	background: rgba(31, 37, 118, 0.02);
	padding: 1.5rem;
	border-radius: 12px;
	margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
	/* Auth Landing Page */
	.auth-wrapper {
		flex-direction: column;
		padding: 2rem 1.5rem;
		gap: 2rem;
		height: auto;
		min-height: 100vh;
	}

	.auth-hero {
		max-width: 100%;
		text-align: center;
	}

	.auth-hero img {
		max-width: 300px;
		margin: 0 auto;
	}

	.auth-card {
		width: 100%;
		max-width: 500px;
		padding: 2.5rem 2rem;
	}

	/* Error & Download Pages */
	.error-wrapper,
	.download-wrapper {
		padding: 1.5rem;
	}

	.error-card,
	.download-card {
		padding: 2.5rem 2rem;
	}

	.error-number {
		font-size: 6rem;
	}

	.download-icon {
		width: 70px;
		height: 70px;
		font-size: 2rem;
	}
}

@media (max-width: 640px) {
	/* Legal Pages */
	.legal-card {
		padding: 2rem 1.5rem;
	}

	.legal-header {
		gap: 1rem;
	}

	.legal-header h2 {
		font-size: 1.8rem;
	}

	.details-grid {
		grid-template-columns: 1fr;
		padding: 1.25rem;
	}

	.highlight-box {
		padding: 1rem 1.25rem;
	}

	.legal-intro {
		padding: 1.25rem;
		font-size: 1rem;
	}

	.legal-section h5 {
		font-size: 1rem;
	}

	/* Footer */
	.site-footer .footer-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.footer-legal {
		order: 1;
	}

	.footer-nav {
		order: 2;
	}

	.footer-nav ul {
		flex-wrap: wrap;
	}

	/* Auth Landing Page - Mobile */
	.auth-card {
		padding: 2rem 1.5rem;
	}

	.legal-link {
		flex-direction: column;
		gap: 0.5rem;
	}

	.legal-link span {
		display: none;
	}

	/* Error & Download Pages - Mobile */
	.error-card,
	.download-card {
		padding: 2rem 1.5rem;
	}

	.error-number {
		font-size: 5rem;
	}

	.error-title,
	.download-title {
		font-size: 1.5rem;
	}

	.error-text,
	.download-text {
		font-size: 1rem;
	}

	.download-icon {
		width: 60px;
		height: 60px;
		font-size: 1.8rem;
	}

	.download-info {
		margin-top: 1.5rem;
		padding-top: 1.5rem;
	}

	.download-info p {
		font-size: 0.85rem;
	}

	/* Auditorium additional mobile */
	.brand-mark {
		width: 40px;
		height: 40px;
		font-size: 0.9rem;
	}

	.brand-title {
		font-size: 0.95rem;
	}

	.session-panel {
		padding: 1.5rem;
	}

	.hero-chips {
		flex-direction: column;
		align-items: flex-start;
	}

	.chip {
		font-size: 0.8rem;
		padding: 0.35rem 0.8rem;
	}

	.footer-nav span {
		font-size: 0.9rem;
	}
}

/* Error 404 Page */
.error-body {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
			135deg,
			rgba(31, 37, 118, 0.06),
			rgba(255, 133, 91, 0.08)
		)
		var(--page-bg);
}

.error-wrapper {
	max-width: 600px;
	width: 100%;
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.error-card {
	background: var(--card-bg);
	border-radius: 28px;
	padding: 3.5rem 3rem;
	text-align: center;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(31, 37, 118, 0.08);
}

.error-number {
	font-size: 8rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.error-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 1rem;
}

.error-text {
	color: var(--muted);
	margin-bottom: 2rem;
	font-size: 1.05rem;
}

.btn-error {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Download Excel Page */
.download-body {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
			135deg,
			rgba(31, 37, 118, 0.06),
			rgba(255, 133, 91, 0.08)
		)
		var(--page-bg);
}

.download-wrapper {
	max-width: 600px;
	width: 100%;
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.download-card {
	background: var(--card-bg);
	border-radius: 28px;
	padding: 3.5rem 3rem;
	text-align: center;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(31, 37, 118, 0.08);
}

.download-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(24, 169, 87, 0.12);
	color: #18a957;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.download-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #18a957;
	margin-bottom: 1rem;
}

.download-text {
	color: var(--muted);
	margin-bottom: 2rem;
	font-size: 1.05rem;
}

.btn-download {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #18a957;
	box-shadow: 0 10px 30px rgba(24, 169, 87, 0.3);
}

.btn-download:hover {
	background: #159448;
	box-shadow: 0 20px 40px rgba(24, 169, 87, 0.4);
}

.download-info {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(31, 37, 118, 0.1);
}

.download-info p {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0;
}

/* Animations */
[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition-delay: var(--animation-delay, 0ms);
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}
