:root {
	--font-sans: "Outfit", system-ui, -apple-system, sans-serif;
	--font-serif: "Playfair Display", Georgia, serif;
	--font-mono: "Space Mono", monospace;

	--bg-main: #0c0f17;
	--bg-surface: #141923;
	--bg-card: #1b2230;
	--bg-card-hover: #222b3d;
	--bg-input: #10141d;

	--text-primary: #f8fafc;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;

	--gold: #f59e0b;
	--gold-glow: rgba(245, 158, 11, 0.25);
	--red-andean: #e11d48;
	--green-amazon: #10b981;
	--blue-costa: #0ea5e9;
	--amber-galapagos: #f59e0b;

	--accent: #f59e0b;
	--accent-hover: #d97706;
	--border-color: rgba(255, 255, 255, 0.09);
	--border-focus: rgba(245, 158, 11, 0.5);

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-full: 9999px;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
	--shadow-glow: 0 0 20px rgba(245, 158, 11, 0.2);

	--transition-fast: 0.15s ease;
	--transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
	font-family: var(--font-sans);
	background-color: var(--bg-main);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	background-image: 
		radial-gradient(circle at 15% 15%, rgba(225, 29, 72, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
		radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.07) 0%, transparent 50%);
	background-attachment: fixed;
}

/* Base Utility Classes */
button {
	font-family: inherit;
	border: none;
	background: none;
	cursor: pointer;
	color: inherit;
}

input, select, textarea {
	font-family: inherit;
	color: var(--text-primary);
}

a {
	color: var(--gold);
	text-decoration: none;
}

/* Layout Shell */
.app-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 1.25rem 1rem 4rem;
}

/* Header & Hero */
.app-header {
	margin-bottom: 2rem;
	position: relative;
}

.top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--border-color);
	flex-wrap: wrap;
}

.brand-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.3);
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.national-motto {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-style: italic;
}

.hero-banner {
	padding: 2.5rem 1.5rem;
	margin-top: 1.5rem;
	background: linear-gradient(135deg, rgba(27, 34, 48, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
	border: 1px solid rgba(245, 158, 11, 0.25);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.hero-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffd700 0%, #0033a0 50%, #d80027 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.hero-title {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 0.75rem;
	background: linear-gradient(135deg, #ffffff 40%, #fed7aa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	color: #cbd5e1;
	margin-bottom: 1.5rem;
	font-weight: 300;
	line-height: 1.5;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.stat-pill {
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	text-align: center;
	transition: var(--transition-fast);
}

.stat-pill:hover {
	border-color: rgba(245, 158, 11, 0.4);
	transform: translateY(-2px);
}

.stat-num {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--gold);
	font-family: var(--font-mono);
}

.stat-label {
	font-size: 0.75rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* Navigation Tabs */
.nav-scroller {
	margin: 1.75rem 0 2rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.nav-tabs {
	display: flex;
	gap: 0.5rem;
	min-width: max-content;
}

.tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.7rem 1.15rem;
	border-radius: var(--radius-full);
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 0.92rem;
	font-weight: 500;
	transition: var(--transition-normal);
	white-space: nowrap;
}

.tab-btn:hover {
	background: var(--bg-card);
	color: var(--text-primary);
	border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
	background: linear-gradient(135deg, var(--gold) 0%, #ea580c 100%);
	color: #0c0f17;
	border-color: transparent;
	font-weight: 700;
	box-shadow: var(--shadow-glow);
}

/* Global Search & Filter Bar */
.filter-bar {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	background: var(--bg-surface);
	padding: 0.85rem 1.15rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
}

.search-input-wrap {
	flex: 1;
	min-width: min(240px, 100%);
	position: relative;
}

.search-input {
	width: 100%;
	padding: 0.65rem 1rem 0.65rem 2.4rem;
	background: var(--bg-input);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 0.92rem;
	transition: var(--transition-fast);
}

.search-input:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.search-icon {
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	pointer-events: none;
}

.region-filter-pills {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.pill-btn {
	padding: 0.45rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.82rem;
	font-weight: 500;
	border: 1px solid var(--border-color);
	background: var(--bg-input);
	color: var(--text-secondary);
	transition: var(--transition-fast);
}

.pill-btn:hover {
	color: var(--text-primary);
	border-color: rgba(255, 255, 255, 0.25);
}

.pill-btn.active {
	background: var(--accent);
	color: #0f172a;
	border-color: var(--accent);
	font-weight: 700;
}

.pill-btn.costa.active {
	background: var(--blue-costa);
	color: #ffffff;
}

.pill-btn.sierra.active {
	background: var(--red-andean);
	color: #ffffff;
}

.pill-btn.amazonia.active {
	background: var(--green-amazon);
	color: #ffffff;
}

.pill-btn.insular.active {
	background: var(--gold);
	color: #0c0f17;
}

/* SECTION TITLES */
.section-header {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.section-title {
	font-family: var(--font-serif);
	font-size: 1.75rem;
	color: var(--text-primary);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.section-desc {
	color: var(--text-secondary);
	font-size: 0.95rem;
	max-width: 650px;
}

/* Interactive Map & Regions Section */
.map-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 860px) {
	.map-layout {
		grid-template-columns: 1.2fr 1fr;
		align-items: start;
	}
}

.map-card-container {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-md);
	position: relative;
}

.ecuador-svg-wrapper {
	width: 100%;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.svg-map-path {
	cursor: pointer;
	transition: all 0.25s ease;
}

.svg-map-path:hover {
	filter: brightness(1.25);
	stroke: #ffffff !important;
	stroke-width: 2.5px;
}

.region-detail-panel {
	background: var(--bg-surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
	padding: 1.75rem;
	box-shadow: var(--shadow-md);
}

.region-badge-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.region-icon-box {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
}

.region-title-group h3 {
	font-family: var(--font-serif);
	font-size: 1.4rem;
	font-weight: 700;
}

.region-title-group p {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.region-facts-list {
	display: grid;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.region-fact-item {
	background: rgba(0, 0, 0, 0.25);
	padding: 0.75rem 1rem;
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.fact-title {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 0.2rem;
}

.fact-val {
	font-size: 0.9rem;
	color: #e2e8f0;
}

.provinces-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.4rem;
}

.prov-tag {
	background: rgba(255, 255, 255, 0.07);
	padding: 0.2rem 0.55rem;
	border-radius: var(--radius-sm);
	font-size: 0.78rem;
	color: var(--text-secondary);
}

/* CARDS GRID SYSTEM (390px safe) */
.cultural-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr));
	gap: 1.25rem;
}

.cultural-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 1.4rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: var(--transition-normal);
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}

.cultural-card:hover {
	transform: translateY(-4px);
	border-color: rgba(245, 158, 11, 0.4);
	box-shadow: var(--shadow-md);
	background: var(--bg-card-hover);
}

.card-top-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.card-icon-tag {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.card-badge {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-full);
	border: 1px solid transparent;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.badge-costa {
	background: rgba(14, 165, 233, 0.15);
	color: #38bdf8;
	border-color: rgba(14, 165, 233, 0.3);
}

.badge-sierra {
	background: rgba(225, 29, 72, 0.15);
	color: #fb7185;
	border-color: rgba(225, 29, 72, 0.3);
}

.badge-amazonia {
	background: rgba(16, 185, 129, 0.15);
	color: #34d399;
	border-color: rgba(16, 185, 129, 0.3);
}

.badge-insular {
	background: rgba(245, 158, 11, 0.15);
	color: #fbbf24;
	border-color: rgba(245, 158, 11, 0.3);
}

.card-title {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
	line-height: 1.25;
}

.card-subtitle {
	font-size: 0.82rem;
	color: var(--gold);
	font-weight: 600;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.card-desc {
	font-size: 0.88rem;
	color: var(--text-secondary);
	margin-bottom: 1.2rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-bottom: 1.25rem;
}

.key-tag {
	background: rgba(255, 255, 255, 0.05);
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	color: #94a3b8;
}

.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.9rem;
	border-top: 1px solid var(--border-color);
	margin-top: auto;
}

.btn-card-action {
	padding: 0.5rem 1rem;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.3);
	color: var(--gold);
	border-radius: var(--radius-md);
	font-size: 0.84rem;
	font-weight: 600;
	transition: var(--transition-fast);
}

.btn-card-action:hover {
	background: var(--gold);
	color: #0f172a;
}

.btn-fav {
	font-size: 1.25rem;
	padding: 0.3rem;
	color: var(--text-muted);
	transition: var(--transition-fast);
}

.btn-fav.active {
	color: #e11d48;
}

/* Modal View */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	z-index: 1000;
	animation: fadeIn 0.2s ease-out;
}

.modal-content {
	background: var(--bg-surface);
	border: 1px solid rgba(245, 158, 11, 0.35);
	border-radius: var(--radius-lg);
	max-width: 720px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
	position: relative;
	padding: 2rem 1.5rem;
}

.modal-close-btn {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: var(--text-secondary);
	transition: var(--transition-fast);
}

.modal-close-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.modal-header-section {
	margin-bottom: 1.5rem;
}

.modal-title {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0.5rem 0 0.2rem;
}

.modal-grid-details {
	display: grid;
	gap: 1.25rem;
}

.detail-block {
	background: rgba(0, 0, 0, 0.3);
	padding: 1.1rem 1.25rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-color);
}

.detail-block-title {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.detail-block-text {
	font-size: 0.92rem;
	color: #e2e8f0;
	line-height: 1.6;
}

/* Audio & Virtual Instruments Interactive Station */
.music-studio-container {
	background: linear-gradient(145deg, #131824 0%, #1a2233 100%);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: var(--radius-lg);
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow-md);
	margin-bottom: 2rem;
}

.instruments-rack {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.instrument-card {
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: var(--transition-normal);
}

.instrument-card:hover {
	border-color: var(--gold);
	background: rgba(245, 158, 11, 0.05);
}

.instrument-icon {
	font-size: 2.75rem;
	margin-bottom: 0.75rem;
}

.instrument-name {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.instrument-type {
	font-size: 0.78rem;
	color: var(--gold);
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.instrument-keys {
	display: flex;
	gap: 0.4rem;
	margin-top: 1rem;
	width: 100%;
	justify-content: center;
}

.note-key-btn {
	flex: 1;
	padding: 0.65rem 0.25rem;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-family: var(--font-mono);
	font-weight: 700;
	color: #cbd5e1;
	transition: all 0.1s ease;
}

.note-key-btn:active, .note-key-btn.playing {
	background: var(--gold);
	color: #0f172a;
	transform: scale(0.94);
	box-shadow: 0 0 12px var(--gold);
}

/* Language Glossary & Translator */
.word-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr));
	gap: 1rem;
}

.word-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.15rem;
	transition: var(--transition-fast);
}

.word-card:hover {
	border-color: rgba(245, 158, 11, 0.4);
	background: var(--bg-card);
}

.word-lang-badge {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.4rem;
}

.word-indigenous {
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
	font-family: var(--font-serif);
}

.word-phonetic {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-family: var(--font-mono);
	margin-bottom: 0.6rem;
}

.word-spanish {
	font-size: 0.92rem;
	color: #cbd5e1;
	font-weight: 500;
	margin-bottom: 0.75rem;
}

.word-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.6rem;
	border-top: 1px solid var(--border-color);
}

.btn-speak {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	font-size: 0.78rem;
	color: var(--gold);
	transition: var(--transition-fast);
}

.btn-speak:hover {
	background: var(--gold);
	color: #0c0f17;
}

/* Trivia & Passport Section */
.quiz-box {
	background: var(--bg-surface);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: var(--radius-lg);
	padding: 2rem 1.5rem;
	max-width: 780px;
	margin: 0 auto;
	box-shadow: var(--shadow-md);
}

.quiz-progress-bar {
	height: 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-full);
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.quiz-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #f59e0b, #ef4444);
	transition: width 0.3s ease;
}

.quiz-question-title {
	font-family: var(--font-serif);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.35;
}

.quiz-options-list {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.quiz-option-btn {
	width: 100%;
	text-align: left;
	padding: 0.9rem 1.15rem;
	background: var(--bg-input);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 0.92rem;
	color: var(--text-primary);
	transition: var(--transition-fast);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.quiz-option-btn:hover:not(:disabled) {
	background: var(--bg-card);
	border-color: rgba(245, 158, 11, 0.5);
}

.quiz-option-btn.selected-correct {
	background: rgba(16, 185, 129, 0.2);
	border-color: #10b981;
	color: #6ee7b7;
	font-weight: 700;
}

.quiz-option-btn.selected-incorrect {
	background: rgba(239, 68, 68, 0.2);
	border-color: #ef4444;
	color: #fca5a5;
}

.quiz-explanation-box {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1rem 1.25rem;
	margin-bottom: 1.25rem;
	font-size: 0.9rem;
	color: #e2e8f0;
}

.passport-certificate {
	background: linear-gradient(135deg, #1e1b18 0%, #291e14 100%);
	border: 3px double #d97706;
	border-radius: var(--radius-lg);
	padding: 2.5rem 1.75rem;
	text-align: center;
	box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
	position: relative;
	overflow: hidden;
}

.stamp-seal {
	display: inline-block;
	border: 3px dashed #f59e0b;
	color: #f59e0b;
	padding: 0.5rem 1.25rem;
	border-radius: var(--radius-md);
	font-weight: 800;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transform: rotate(-3deg);
	margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.97);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Responsive Overrides */
@media (max-width: 640px) {
	.app-container {
		padding: 1rem 0.75rem 3rem;
	}

	.hero-banner {
		padding: 1.75rem 1rem;
	}

	.modal-content {
		padding: 1.5rem 1rem;
	}
}
