/**
 * Frontend Styles for iCore Partner Network & 10th Anniversary Showcase
 */

:root {
	--icore-primary: #0f172a;
	--icore-primary-light: #1e293b;
	--icore-accent: #2563eb;
	--icore-accent-hover: #1d4ed8;
	--icore-gold: #f59e0b;
	--icore-gold-light: #fbbf24;
	--icore-gold-dark: #b45309;
	--icore-gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
	--icore-success: #10b981;
	--icore-danger: #ef4444;
	--icore-text-dark: #0f172a;
	--icore-text-muted: #64748b;
	--icore-bg-light: #f8fafc;
	--icore-card-bg: #ffffff;
	--icore-border: #e2e8f0;
	--icore-radius: 12px;
	--icore-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
	--icore-shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.15), 0 10px 15px -5px rgba(15, 23, 42, 0.05);
}

/* ============================================================
   1. 10TH ANNIVERSARY TOP CELEBRATION BAR
   ============================================================ */
.icore-anniv-bar {
	background: linear-gradient(90deg, #09152b 0%, #172554 25%, #78350f 50%, #172554 75%, #09152b 100%);
	background-size: 200% auto;
	animation: icoreGradientShift 12s ease infinite;
	color: #ffffff;
	padding: 8px 16px;
	position: relative;
	z-index: 99999;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 13.5px;
	border-bottom: 1px solid rgba(245, 158, 11, 0.4);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

@keyframes icoreGradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.icore-anniv-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.icore-anniv-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	text-align: center;
}

.icore-anniv-icon {
	font-size: 16px;
	animation: icorePulse 2s infinite;
}

@keyframes icorePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.2); }
}

.icore-anniv-badge {
	background: var(--icore-gold-gradient);
	color: #ffffff;
	font-weight: 800;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.icore-anniv-text {
	font-weight: 500;
	color: #f1f5f9;
}

.icore-anniv-cta {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 3px 12px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none !important;
	transition: all 0.2s ease;
	display: inline-block;
}

.icore-anniv-cta:hover {
	background: var(--icore-gold-gradient);
	border-color: var(--icore-gold);
	transform: translateY(-1px);
}

.icore-anniv-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
	padding: 0 5px;
	transition: color 0.2s;
}

.icore-anniv-close:hover {
	color: #ffffff;
}

/* ============================================================
   2. 10TH ANNIVERSARY LUXURY FLOATING SEAL
   ============================================================ */
.icore-seal-wrapper {
	position: fixed;
	bottom: 25px;
	left: 25px;
	z-index: 9999;
	cursor: pointer;
	font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icore-seal-wrapper:hover {
	transform: scale(1.08);
}

.icore-seal-inner {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: radial-gradient(circle, #1e3a8a 0%, #0f172a 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(15, 23, 42, 0.35), 0 0 15px rgba(245, 158, 11, 0.4);
	border: 2px solid #f59e0b;
}

.icore-seal-gold-ring {
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border-radius: 50%;
	border: 2px dashed rgba(245, 158, 11, 0.6);
	animation: icoreRotateRing 25s linear infinite;
}

@keyframes icoreRotateRing {
	100% { transform: rotate(360deg); }
}

.icore-seal-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
}

.icore-seal-num {
	font-size: 20px;
	font-weight: 800;
	color: #fbbf24;
	text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

.icore-seal-unit {
	font-size: 8px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 1px;
}

.icore-seal-sub {
	font-size: 7px;
	color: #94a3b8;
	margin-top: 2px;
}

/* Floating Seal Tooltip */
.icore-seal-tooltip {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 250px;
	background: #0f172a;
	color: #ffffff;
	padding: 14px 16px;
	border-radius: 12px;
	box-shadow: var(--icore-shadow-lg);
	border: 1px solid rgba(245, 158, 11, 0.3);
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: all 0.25s ease;
}

.icore-seal-wrapper:hover .icore-seal-tooltip {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.icore-seal-tooltip .tooltip-heading {
	font-size: 13px;
	font-weight: 700;
	color: #fbbf24;
	margin-bottom: 5px;
}

.icore-seal-tooltip p {
	font-size: 11.5px;
	color: #cbd5e1;
	line-height: 1.4;
	margin: 0 0 10px 0;
}

.icore-seal-tooltip .tooltip-link {
	color: #60a5fa !important;
	font-size: 11.5px;
	font-weight: 600;
	text-decoration: none;
}

.icore-seal-tooltip .tooltip-link:hover {
	text-decoration: underline;
}

/* ============================================================
   3. HOMEPAGE PARTNER TEASER SECTION
   ============================================================ */
.icore-partner-teaser-section {
	padding: 70px 0;
	background: linear-gradient(135deg, #091221 0%, #0f172a 100%);
	color: #ffffff;
	position: relative;
	overflow: hidden;
	font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.icore-partner-teaser-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.partner-teaser-inner {
	position: relative;
	z-index: 2;
}

.partner-pre-title {
	color: #fbbf24;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.partner-main-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.25;
	color: #ffffff;
	margin-bottom: 16px;
}

.partner-lead-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #94a3b8;
	margin-bottom: 24px;
}

.partner-highlights-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
}

.highlight-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #e2e8f0;
	font-weight: 500;
}

.highlight-pill .pill-icon {
	width: 22px;
	height: 22px;
	background: rgba(16, 185, 129, 0.2);
	color: #10b981;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

.partner-cta-row {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.partner-cta-btn {
	background: var(--icore-gold-gradient);
	color: #ffffff !important;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
	transition: all 0.25s ease;
}

.partner-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(245, 158, 11, 0.45);
}

.partner-free-note {
	font-size: 13px;
	color: #94a3b8;
}

.partner-card-visual {
	background: rgba(30, 41, 59, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 28px;
	box-shadow: var(--icore-shadow-lg);
}

.partner-stat-badge {
	display: flex;
	align-items: center;
	gap: 14px;
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: 12px;
	padding: 14px 18px;
	margin-bottom: 24px;
}

.partner-stat-badge .stat-star {
	font-size: 32px;
}

.partner-stat-badge strong {
	display: block;
	color: #fbbf24;
	font-size: 16px;
}

.partner-stat-badge small {
	color: #94a3b8;
	font-size: 12px;
}

.partner-perk-box {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.perk-item {
	display: flex;
	gap: 14px;
}

.perk-icon-circle {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(37, 99, 235, 0.2);
	color: #60a5fa;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.perk-item h4 {
	font-size: 15px;
	font-weight: 700;
	color: #f1f5f9;
	margin: 0 0 4px 0;
}

.perk-item p {
	font-size: 13px;
	color: #94a3b8;
	line-height: 1.4;
	margin: 0;
}

/* ============================================================
   4. DEDICATED AFFILIATE PORTAL (APP LAYOUT)
   ============================================================ */
.icore-portal-body {
	margin: 0;
	padding: 0;
	background: #f8fafc;
	color: var(--icore-text-dark);
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.5;
}

.icore-portal-nav {
	background: #0f172a;
	padding: 16px 24px;
	border-bottom: 1px solid #1e293b;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.portal-nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.portal-brand {
	text-decoration: none;
	display: flex;
	flex-direction: column;
}

.portal-brand-main {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
}

.portal-brand-main .highlight {
	color: #38bdf8;
}

.portal-brand-sub {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #fbbf24;
}

.portal-nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
}

.portal-nav-links .nav-item {
	color: #94a3b8;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 600;
	transition: color 0.2s;
}

.portal-nav-links .nav-item:hover {
	color: #ffffff;
}

.nav-user-greeting {
	color: #e2e8f0;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 6px;
	background: #1e293b;
	padding: 5px 12px;
	border-radius: 20px;
}

.dot-online {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10b981;
}

.button-logout {
	background: rgba(239, 68, 68, 0.15);
	color: #ef4444 !important;
	border: 1px solid rgba(239, 68, 68, 0.3);
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none;
}

.button-logout:hover {
	background: #ef4444;
	color: #ffffff !important;
}

.portal-main-wrap {
	min-height: calc(100vh - 160px);
	padding: 30px 0 60px 0;
}

.portal-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Alerts */
.portal-alert {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	border-radius: var(--icore-radius);
	margin-bottom: 25px;
	font-size: 14px;
	font-weight: 500;
}

.alert-success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.alert-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* Guest Hero */
.portal-hero {
	text-align: center;
	padding: 30px 0 40px 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 30px;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

.hero-badge .pulse {
	width: 8px;
	height: 8px;
	background: #2563eb;
	border-radius: 50%;
}

.portal-hero .hero-title {
	font-size: 38px;
	font-weight: 800;
	color: #0f172a;
	max-width: 800px;
	margin: 0 auto 16px auto;
	line-height: 1.25;
}

.portal-hero .hero-desc {
	font-size: 17px;
	color: #64748b;
	max-width: 720px;
	margin: 0 auto 35px auto;
	line-height: 1.6;
}

.hero-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	max-width: 950px;
	margin: 0 auto;
}

.hero-feature-item {
	background: #ffffff;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.hero-feature-item .feature-icon {
	font-size: 28px;
	display: block;
	margin-bottom: 8px;
}

.hero-feature-item .feature-title {
	font-size: 14.5px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 4px;
}

.hero-feature-item .feature-sub {
	font-size: 12px;
	color: #64748b;
}

/* Auth Card & Tabs */
.portal-auth-section {
	padding: 10px 0 40px 0;
}

.auth-card-wrap {
	max-width: 580px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: var(--icore-shadow-lg);
	overflow: hidden;
}

.auth-tabs-nav {
	display: flex;
	background: #f1f5f9;
	border-bottom: 1px solid #e2e8f0;
}

.auth-tab-btn {
	flex: 1;
	padding: 16px 20px;
	border: none;
	background: none;
	font-size: 14px;
	font-weight: 700;
	color: #64748b;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}

.auth-tab-btn.active {
	background: #ffffff;
	color: #2563eb;
	box-shadow: inset 0 -3px 0 #2563eb;
}

.auth-tab-pane {
	display: none;
	padding: 32px;
}

.auth-tab-pane.active {
	display: block;
}

.auth-pane-header {
	margin-bottom: 24px;
	text-align: center;
}

.auth-pane-header h3 {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 6px 0;
}

.auth-pane-header p {
	font-size: 13.5px;
	color: #64748b;
	margin: 0;
}

.icore-portal-form .form-group {
	margin-bottom: 18px;
}

.icore-portal-form .form-row-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.icore-portal-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 6px;
}

.icore-portal-form input[type="text"],
.icore-portal-form input[type="email"],
.icore-portal-form input[type="password"],
.icore-portal-form input[type="number"],
.icore-portal-form input[type="url"] {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	box-sizing: border-box;
	transition: all 0.2s;
	font-family: inherit;
}

.icore-portal-form input:focus {
	outline: none;
	border-color: #2563eb;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.field-hint {
	font-size: 11px;
	color: #64748b;
	display: block;
	margin-top: 4px;
}

.form-group-checkbox {
	margin-bottom: 20px;
	font-size: 13px;
	color: #64748b;
}

.portal-btn-primary {
	background: var(--icore-accent);
	color: #ffffff;
	border: none;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	width: 100%;
	transition: all 0.2s;
	font-family: inherit;
}

.portal-btn-primary:hover {
	background: var(--icore-accent-hover);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.portal-btn-secondary {
	background: #1e293b;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	font-size: 13.5px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s;
	font-family: inherit;
}

.portal-btn-secondary:hover {
	background: #0f172a;
}

/* Process Section */
.portal-process-section {
	padding: 50px 0;
	border-top: 1px solid #e2e8f0;
}

.section-title-wrap {
	text-align: center;
	margin-bottom: 40px;
}

.section-title-wrap h2 {
	font-size: 26px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 8px 0;
}

.section-title-wrap p {
	font-size: 15px;
	color: #64748b;
	margin: 0;
}

.process-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.process-step-card {
	background: #ffffff;
	padding: 30px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	position: relative;
}

.process-step-card .step-num {
	font-size: 32px;
	font-weight: 900;
	color: #e2e8f0;
	line-height: 1;
	margin-bottom: 14px;
}

.process-step-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 8px 0;
}

.process-step-card p {
	font-size: 13.5px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* ============================================================
   5. AUTHENTICATED DASHBOARD ELEMENTS
   ============================================================ */
.dash-welcome-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	border-radius: 16px;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 24px;
	box-shadow: var(--icore-shadow);
}

.dash-welcome-text h2 {
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 6px 0;
}

.dash-welcome-text p {
	font-size: 14px;
	color: #94a3b8;
	margin: 0;
}

.dash-welcome-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.aff-code-badge,
.aff-rate-badge {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 8px 14px;
	display: flex;
	flex-direction: column;
}

.aff-code-badge .badge-label,
.aff-rate-badge .badge-label {
	font-size: 9px;
	letter-spacing: 1px;
	color: #94a3b8;
	font-weight: 700;
}

.aff-code-badge .badge-val {
	font-size: 18px;
	font-weight: 800;
	color: #fbbf24;
}

.aff-rate-badge .badge-val {
	font-size: 18px;
	font-weight: 800;
	color: #38bdf8;
}

/* Stats Cards */
.dash-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 24px;
}

.stat-card {
	background: #ffffff;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	padding: 22px 24px;
	box-shadow: var(--icore-shadow);
}

.stat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.stat-title {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
}

.stat-icon {
	font-size: 20px;
}

.stat-num {
	font-size: 26px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 6px;
}

.stat-balance .stat-num {
	color: #10b981;
}

.stat-footnote {
	font-size: 11.5px;
	color: #94a3b8;
}

/* Action Grid (Link & Payout) */
.dash-action-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

@media (max-width: 900px) {
	.dash-action-grid {
		grid-template-columns: 1fr;
	}
}

.dash-card {
	background: #ffffff;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	box-shadow: var(--icore-shadow);
	overflow: hidden;
	margin-bottom: 24px;
}

.dash-card-header {
	padding: 18px 24px;
	border-bottom: 1px solid #f1f5f9;
}

.dash-card-header h3 {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.dash-card-body {
	padding: 24px;
}

.dash-text {
	font-size: 13.5px;
	color: #64748b;
	line-height: 1.5;
	margin: 0 0 16px 0;
}

.copy-link-wrap {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.link-input {
	flex: 1;
	padding: 12px 14px;
	font-size: 13px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	font-family: monospace;
	font-weight: 600;
	color: #2563eb;
}

.copy-btn {
	background: #0f172a;
	color: #ffffff;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13.5px;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
	white-space: nowrap;
}

.copy-btn:hover {
	background: #1e293b;
}

.copy-btn.copied {
	background: #10b981;
}

.custom-builder-wrap {
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	padding: 16px;
}

.custom-builder-wrap .small-desc {
	font-size: 12px;
	color: #64748b;
	margin: 4px 0 10px 0;
}

.builder-inputs {
	display: flex;
	gap: 8px;
}

.builder-inputs input {
	flex: 1;
	padding: 10px 12px;
	font-size: 13px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
}

.button-secondary {
	background: #3b82f6;
	color: #ffffff;
	border: none;
	padding: 10px 16px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}

/* Payout Card */
.payout-details-box {
	background: #f8fafc;
	border-radius: 8px;
	padding: 14px 18px;
	margin-bottom: 18px;
}

.payout-info-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	padding: 6px 0;
	border-bottom: 1px solid #e2e8f0;
}

.payout-info-row:last-child {
	border-bottom: none;
}

.payout-threshold-notice {
	font-size: 13px;
	color: #64748b;
	background: #fef3c7;
	border: 1px solid #fde68a;
	padding: 14px;
	border-radius: 8px;
}

.progress-bar-wrap {
	width: 100%;
	height: 8px;
	background: #e2e8f0;
	border-radius: 10px;
	margin-top: 10px;
	overflow: hidden;
}

.progress-bar-fill {
	height: 100%;
	background: #f59e0b;
	border-radius: 10px;
	transition: width 0.4s ease;
}

/* Tables */
.table-card .dash-card-body {
	padding: 0;
}

.table-responsive {
	overflow-x: auto;
}

.portal-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 13px;
}

.portal-table th {
	background: #f8fafc;
	color: #475569;
	font-weight: 700;
	padding: 12px 18px;
	border-bottom: 1px solid #e2e8f0;
}

.portal-table td {
	padding: 14px 18px;
	border-bottom: 1px solid #f1f5f9;
	color: #1e293b;
}

.portal-table tr:last-child td {
	border-bottom: none;
}

.status-pill {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	text-transform: capitalize;
}

.status-approved,
.status-completed {
	background: #dcfce7;
	color: #15803d;
}

.status-pending {
	background: #fef3c7;
	color: #b45309;
}

.status-rejected {
	background: #fee2e2;
	color: #b91c1c;
}

.text-green {
	color: #10b981;
}

.empty-table-text {
	padding: 30px;
	color: #94a3b8;
	font-size: 13.5px;
	text-align: center;
	margin: 0;
}

/* Footer */
.icore-portal-footer {
	background: #0f172a;
	color: #94a3b8;
	padding: 24px 0;
	border-top: 1px solid #1e293b;
	font-size: 13px;
}

.icore-portal-footer .portal-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.icore-portal-footer a {
	color: #cbd5e1;
	text-decoration: none;
	margin-left: 14px;
}

.icore-portal-footer a:hover {
	color: #ffffff;
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
	.portal-hero .hero-title {
		font-size: 28px;
	}
	.auth-tab-pane {
		padding: 20px;
	}
	.icore-portal-form .form-row-two {
		grid-template-columns: 1fr;
	}
	.copy-link-wrap {
		flex-direction: column;
	}
	.dash-welcome-card {
		padding: 20px;
	}
}

/* ============================================================
   6. FOOTER PARTNER STRIP
   ============================================================ */
.icore-footer-partner-strip {
	background: #091221;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 14px 0;
	font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
	font-size: 13.5px;
	color: #94a3b8;
}

.footer-partner-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	text-align: center;
}

.partner-heading {
	color: #ffffff;
	font-weight: 700;
}

.footer-partner-content .partner-link {
	color: #38bdf8 !important;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-partner-content .partner-link:hover {
	color: #fbbf24 !important;
	text-decoration: underline;
}

.footer-partner-content .sep {
	color: #475569;
}

.anniv-milestone {
	color: #fbbf24;
	font-weight: 600;
}
