:root {
	--primary: #2563eb;
	--bg: #f8fafc;
	--surface: #ffffff;
	--text-main: #0f172a;
	--text-muted: #64748b;
	--border: #e2e8f0;
	--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg);
	color: var(--text-main);
	line-height: 1.5;
}

/* Navbar */
.navbar {
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: center;
}
.logo {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--text-main);
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Hero */
.hero-container {
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 4rem;
	padding-left: 1rem;
	padding-right: 1rem;
}
.content-wrapper {
	width: 100%;
	max-width: 560px;
	text-align: center;
}
.headline {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
	color: #1e293b;
}
.highlight {
	color: var(--primary);
}
.subtext {
	color: var(--text-muted);
	font-size: 1.125rem;
	margin-bottom: 2.5rem;
}

/* Search Box */
.search-box-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: 1.5rem;
}
.search-icon {
	position: absolute;
	left: 16px;
	top: 16px;
	color: #94a3b8;
}
input {
	width: 100%;
	padding: 16px 16px 16px 48px;
	font-size: 1.125rem;
	border: 2px solid var(--border);
	border-radius: 12px;
	background: var(--surface);
	transition: all 0.2s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: monospace;
}
input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Loader */
.loader {
	border: 3px solid #f3f3f3;
	border-top: 3px solid var(--primary);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	animation: spin 1s linear infinite;
	position: absolute;
	right: 16px;
	top: 16px;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Result Card */
.result-card {
	background: var(--surface);
	border-radius: 16px;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
	overflow: hidden;
	text-align: left;
	animation: slideUp 0.4s ease;
	margin-bottom: 2rem;
}
.card-header {
	background: #f1f5f9;
	padding: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: start;
	border-bottom: 1px solid var(--border);
}
.card-header h2 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #334155;
}
.card-header p {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-top: 2px;
}
.status-badge {
	background: #dcfce7;
	color: #166534;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 99px;
}
.card-body {
	padding: 1.5rem;
}
.data-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
.data-group label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--text-muted);
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.data-group strong {
	font-weight: 600;
	color: var(--text-main);
}
.mono-code {
	font-family: monospace;
	font-size: 1.1rem;
	color: var(--primary);
}
.code-copy-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}
.btn-copy {
	background: none;
	border: 1px solid var(--border);
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 0.75rem;
	cursor: pointer;
	color: var(--text-muted);
}
.btn-copy:hover {
	border-color: var(--primary);
	color: var(--primary);
}
.tags-list {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.tag {
	font-size: 0.7rem;
	padding: 2px 6px;
	border-radius: 4px;
	background: #f1f5f9;
	color: #94a3b8;
}
.tag.active {
	background: #dbeafe;
	color: #1e40af;
	font-weight: 600;
}
.hidden {
	display: none !important;
}
.toast-error {
	background: #fee2e2;
	color: #991b1b;
	padding: 12px;
	border-radius: 8px;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

/* SEO Pages Styles */
.page-container {
	max-width: 900px;
	margin: 40px auto;
	padding: 0 20px;
}
.content-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
}
.intro-text {
	font-size: 1.05rem;
	color: #475569;
	margin-bottom: 30px;
	line-height: 1.7;
}
.table-responsive {
	overflow-x: auto;
	margin-bottom: 40px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
}
table {
	width: 100%;
	border-collapse: collapse;
}
th {
	background: #f1f5f9;
	text-align: left;
	padding: 12px 16px;
	font-size: 0.75rem;
	text-transform: uppercase;
	color: #64748b;
	font-weight: 700;
	border-bottom: 1px solid #e2e8f0;
}
td {
	padding: 16px;
	border-bottom: 1px solid #e2e8f0;
	vertical-align: top;
	color: #334155;
	font-size: 0.95rem;
}
.code-pill {
	background: #eff6ff;
	color: #1d4ed8;
	padding: 4px 8px;
	border-radius: 6px;
	font-family: monospace;
	font-weight: 600;
	font-size: 0.9rem;
}
.faq-section {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e2e8f0;
}
.faq-section h2 {
	font-size: 1.5rem;
	color: #1e293b;
	margin-bottom: 20px;
}
.faq-item h3 {
	font-size: 1.1rem;
	color: #334155;
	margin-bottom: 8px;
	font-weight: 600;
}
.faq-item p {
	color: #64748b;
	font-size: 0.95rem;
	margin-bottom: 20px;
}
.simple-footer {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 20px;
	color: #94a3b8;
	font-size: 0.9rem;
}
.simple-footer a {
	color: #64748b;
	text-decoration: none;
	margin: 0 5px;
}
.quick-links {
	margin-top: 3rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}
.links-row {
	margin-top: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.links-row a {
	color: var(--primary);
	text-decoration: none;
	background: white;
	padding: 6px 12px;
	border: 1px solid var(--border);
	border-radius: 99px;
	transition: 0.2s;
}

/* --- New SEO Page Styles --- */

.breadcrumbs {
	margin-bottom: 10px;
}

.page-container {
	max-width: 900px;
	margin: 40px auto;
	padding: 0 20px;
}

.content-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
}

.intro-text {
	font-size: 1.05rem;
	color: #475569;
	margin-bottom: 30px;
	line-height: 1.7;
}

.table-responsive {
	overflow-x: auto;
	margin-bottom: 40px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
}

/* FAQ Section Styling */
.faq-section {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e2e8f0;
}

.faq-section h2 {
	font-size: 1.5rem;
	color: #1e293b;
	margin-bottom: 20px;
}

.faq-item {
	margin-bottom: 20px;
}

.faq-item h3 {
	font-size: 1.1rem;
	color: #334155;
	margin-bottom: 8px;
	font-weight: 600;
}

.faq-item p {
	color: #64748b;
	font-size: 0.95rem;
	margin: 0;
}

/* Styles for secondary */
.btn-secondary {
	display: inline-block;
	background: white;
	color: #334155;
	border: 1px solid #cbd5e1;
	padding: 10px 24px;
	border-radius: 99px;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

.btn-secondary:hover {
	border-color: #2563eb;
	color: #2563eb;
	background: #f8fafc;
	transform: translateY(-2px);
}

/* Simple Footer */
.simple-footer {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 20px;
	color: #94a3b8;
	font-size: 0.9rem;
}

.simple-footer a {
	color: #64748b;
	text-decoration: none;
	margin: 0 5px;
}

.simple-footer a:hover {
	color: #2563eb;
	text-decoration: underline;
}

/* --- DIRECTORY SECTION --- */
.directory-section {
	background-color: #ffffff;
	padding: 60px 20px;
	border-top: 1px solid #e2e8f0;
}

.directory-container {
	max-width: 1000px;
	margin: 0 auto;
}

.directory-header {
	text-align: center;
	margin-bottom: 40px;
}

.directory-header h2 {
	font-size: 1.8rem;
	color: #1e293b;
	margin-bottom: 8px;
	font-weight: 700;
}

.directory-header p {
	color: #64748b;
	margin-bottom: 24px;
}

/* Filter Input */
.bank-filter-wrapper {
	position: relative;
	max-width: 400px;
	margin: 0 auto;
}

.search-icon-small {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #94a3b8;
}

#bankFilter {
	width: 100%;
	padding: 12px 12px 12px 36px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 0.95rem;
	transition: all 0.2s;
}

#bankFilter:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	outline: none;
}

/* --- BANK GRID (The New Look) --- */
.bank-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.bank-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 16px;
	border-radius: 12px;
	text-decoration: none;
	color: #334155;
	transition: all 0.2s ease;
}

.bank-card:hover {
	background: #ffffff;
	border-color: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* The "Initial" Circle Icon */
.bank-icon {
	width: 36px;
	height: 36px;
	background: #dbeafe; /* Light Blue */
	color: #1d4ed8; /* Dark Blue text */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
}

.bank-name {
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Limit to 2 lines */
	-webkit-box-orient: vertical;
}

/* Clean Footer */
.simple-footer {
	padding: 40px 20px;
	text-align: center;
	background: #f1f5f9;
	color: #64748b;
	font-size: 0.9rem;
}

.footer-links {
	margin-bottom: 12px;
}

.footer-links a {
	color: #475569;
	text-decoration: none;
	margin: 0 10px;
	font-weight: 500;
}

.footer-links a:hover {
	color: #2563eb;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 480px) {
	.data-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}
