:root {
	--cust-primary: #db3333;
	--cust-primary-dark: #b52828;
	--cust-accent: #1a237e;
	--cust-bg: #f4f6f9;
	--cust-card-shadow: 0 4px 18px rgba(26, 35, 126, 0.08);
}

body {
	background: var(--cust-bg);
	padding-top: 0 !important;
}

.cust-navbar {
	background: var(--cust-primary) !important;
	box-shadow: 0 2px 12px rgba(219, 51, 51, 0.25);
}

.cust-navbar .navbar-brand img {
	border-radius: 50%;
	background: #fff;
	padding: 2px;
}

.cust-navbar-logo {
	object-fit: contain;
}

.cust-navbar .nav-link {
	color: rgba(255, 255, 255, 0.92) !important;
	font-weight: 600;
	letter-spacing: 0.4px;
	border-radius: 6px;
	padding: 0.45rem 0.9rem !important;
	transition: background 0.2s;
}

.cust-navbar .nav-link:hover,
.cust-navbar .nav-link.active {
	background: rgba(255, 255, 255, 0.15);
	color: #fff !important;
}

.cust-page-wrap {
	padding: 24px 0 48px;
	min-height: calc(100vh - 120px);
}

.cust-page-title {
	color: var(--cust-accent);
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.cust-summary-card {
	border: none;
	border-radius: 12px;
	box-shadow: var(--cust-card-shadow);
	background: linear-gradient(135deg, #fff 0%, #fafbff 100%);
	border-left: 4px solid var(--cust-primary);
}

.cust-summary-card .summary-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--cust-primary);
}

.cust-panel {
	border: none;
	border-radius: 12px;
	box-shadow: var(--cust-card-shadow);
	overflow: hidden;
}

.cust-panel .card-header {
	background: var(--cust-primary);
	color: #fff;
	font-weight: 700;
	border: none;
	padding: 0.85rem 1.25rem;
}

.cust-panel .table thead th {
	background: #f8f9fc;
	color: var(--cust-accent);
	font-weight: 600;
	border-top: none;
	white-space: nowrap;
}

.cust-panel .table tbody tr:hover {
	background: #fff8f8;
}

.cust-btn-pay {
	background: var(--cust-primary);
	border-color: var(--cust-primary-dark);
	font-weight: 600;
}

.cust-btn-pay:hover {
	background: var(--cust-primary-dark);
	border-color: var(--cust-primary-dark);
}

.cust-btn-outline {
	border-color: var(--cust-primary);
	color: var(--cust-primary);
	font-weight: 600;
}

.cust-btn-outline:hover {
	background: var(--cust-primary);
	color: #fff;
}

.cust-action-bar {
	background: #fff;
	border-radius: 10px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.25rem;
	box-shadow: var(--cust-card-shadow);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.cust-badge-pending {
	background: #fff3e0;
	color: #e65100;
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	border-radius: 20px;
}

.center-spinner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.status-success { color: #2e7d32; font-weight: 600; }
.status-failed { color: #c62828; font-weight: 600; }
.status-pending { color: #f57c00; font-weight: 600; }

/* Account table — deposit row */
.cust-account-table .cust-account-main-row td,
.cust-account-table .cust-account-main-row th {
	vertical-align: middle;
}

.cust-account-deposit-row td {
	padding: 0 !important;
	border-top: none !important;
	background: #f8fafc;
}

.cust-deposit-module {
	padding: 1rem 1.25rem 1.1rem;
	border-top: 1px dashed #e0e6ed;
}

.cust-deposit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-bottom: 12px;
}

.cust-deposit-card {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	min-height: 92px;
	padding: 1rem 1.1rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(26, 35, 126, 0.06);
	text-align: left;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cust-deposit-card:hover,
.cust-deposit-card:focus {
	outline: none;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(26, 35, 126, 0.12);
}

.cust-deposit-card__icon-wrap {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.cust-deposit-card__content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.cust-deposit-card__label {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.3;
}

.cust-deposit-card__amount {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--cust-accent);
	line-height: 1.3;
}

.cust-deposit-card__cta {
	font-size: 0.78rem;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.cust-deposit-card__arrow {
	color: #94a3b8;
	font-size: 0.9rem;
	flex-shrink: 0;
	transition: transform 0.2s ease, color 0.2s ease;
}

.cust-deposit-card:hover .cust-deposit-card__arrow,
.cust-deposit-card:focus .cust-deposit-card__arrow {
	transform: translateX(3px);
}

.cust-deposit-card--saving {
	border-color: rgba(46, 125, 50, 0.25);
}

.cust-deposit-card--saving .cust-deposit-card__icon-wrap {
	background: rgba(46, 125, 50, 0.12);
	color: #2e7d32;
}

.cust-deposit-card--saving:hover,
.cust-deposit-card--saving:focus {
	border-color: #2e7d32;
}

.cust-deposit-card--saving:hover .cust-deposit-card__arrow,
.cust-deposit-card--saving:focus .cust-deposit-card__arrow {
	color: #2e7d32;
}

.cust-deposit-card--rd {
	border-color: rgba(2, 136, 209, 0.25);
}

.cust-deposit-card--rd .cust-deposit-card__icon-wrap {
	background: rgba(2, 136, 209, 0.12);
	color: #0277bd;
}

.cust-deposit-card--rd:hover,
.cust-deposit-card--rd:focus {
	border-color: #0277bd;
}

.cust-deposit-card--rd:hover .cust-deposit-card__arrow,
.cust-deposit-card--rd:focus .cust-deposit-card__arrow {
	color: #0277bd;
}

.cust-deposit-card--fd {
	border-color: rgba(245, 124, 0, 0.3);
}

.cust-deposit-card--fd .cust-deposit-card__icon-wrap {
	background: rgba(245, 124, 0, 0.14);
	color: #ef6c00;
}

.cust-deposit-card--fd:hover,
.cust-deposit-card--fd:focus {
	border-color: #ef6c00;
}

.cust-deposit-card--fd:hover .cust-deposit-card__arrow,
.cust-deposit-card--fd:focus .cust-deposit-card__arrow {
	color: #ef6c00;
}

.cust-deposit-card--committee {
	border-left: 4px solid #c62828;
}

.cust-deposit-card--committee .cust-deposit-card__icon-wrap {
	background: #ffebee;
	color: #c62828;
}

.cust-deposit-card--committee:hover,
.cust-deposit-card--committee:focus {
	border-color: #ef9a9a;
}

.cust-deposit-card--committee:hover .cust-deposit-card__arrow,
.cust-deposit-card--committee:focus .cust-deposit-card__arrow {
	color: #c62828;
}

.cust-committee-panel {
	margin: 0 1.25rem 1.1rem;
	padding: 1rem 1.1rem;
	border: 1px solid #ffcdd2;
	border-radius: 12px;
	background: linear-gradient(180deg, #fff8f8 0%, #ffffff 48%);
}

.cust-committee-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 0.85rem;
	flex-wrap: wrap;
}

.cust-committee-panel__title {
	color: #b71c1c;
	font-size: 1rem;
}

.cust-committee-panel__hint {
	display: inline-block;
	margin-left: 0.5rem;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	background: #ffe0b2;
	color: #e65100;
	font-size: 0.78rem;
	font-weight: 700;
}

.cust-committee-load-btn {
	border: 1px solid #ef9a9a;
	background: #fff;
	color: #c62828;
	font-weight: 600;
	border-radius: 8px;
	padding: 0.35rem 0.75rem;
}

.cust-committee-load-btn:hover:not(:disabled) {
	background: #ffebee;
	color: #b71c1c;
}

.cust-committee-empty {
	padding: 0.85rem 0.25rem;
	color: #64748b;
	font-size: 0.92rem;
}

.cust-committee-list {
	display: grid;
	gap: 12px;
}

.cust-committee-card {
	padding: 0.9rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(183, 28, 28, 0.05);
}

.cust-committee-card__main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 0.75rem;
}

.cust-committee-card__group {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.cust-committee-card__group strong {
	color: #1e293b;
	font-size: 0.95rem;
	line-height: 1.35;
}

.cust-committee-card__meta {
	color: #94a3b8;
	font-size: 0.78rem;
}

.cust-committee-month {
	flex-shrink: 0;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	background: #e3f2fd;
	color: #1565c0;
	font-size: 0.78rem;
	font-weight: 700;
}

.cust-committee-card__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 0.75rem;
}

.cust-committee-card__grid > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0.45rem 0.55rem;
	border-radius: 8px;
	background: #f8fafc;
}

.cust-committee-cell--credited {
	background: #e8f5e9 !important;
	border: 1px solid #a5d6a7;
}

.cust-committee-cell--not {
	background: #fafafa !important;
	border: 1px solid #eceff1;
}

.cust-committee-status {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.cust-committee-status--yes {
	color: #2e7d32;
}

.cust-committee-status--no {
	color: #90a4ae;
}

.cust-committee-why {
	font-size: 0.65rem;
	color: #90a4ae;
	line-height: 1.2;
}

.cust-committee-tag--off {
	background: #eceff1;
	color: #78909c;
}

.cust-committee-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #94a3b8;
	font-weight: 600;
}

.cust-committee-payamt {
	color: #e65100;
}

.cust-committee-paybox {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0.45rem 0.55rem;
	border-radius: 8px;
	background: #fff8e1;
	border: 1px solid #ffe082;
}

.cust-committee-formula {
	font-size: 0.72rem;
	line-height: 1.35;
	color: #546e7a;
	margin-top: 2px;
}

.cust-committee-formula b {
	font-weight: 700;
	color: #37474f;
}

.cust-committee-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.cust-committee-card__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	min-width: 0;
	flex: 1;
}

.cust-committee-tag {
	display: inline-block;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	background: #eceff1;
	color: #455a64;
	font-size: 0.72rem;
	font-weight: 700;
}

.cust-committee-tag--cash {
	background: #e8f5e9;
	color: #2e7d32;
}

.cust-committee-tag--coupon {
	background: #e3f2fd;
	color: #1565c0;
}

.cust-committee-tag--second {
	background: #fff3e0;
	color: #ef6c00;
}

.cust-committee-tag--disabled {
	background: #eceff1;
	color: #607d8b;
}

.cust-btn-pay:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
}

@media (max-width: 767.98px) {
	.cust-committee-card__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.cust-deposit-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 4px;
	border-top: 1px solid #e8edf3;
}

.cust-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.4rem 0.85rem;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #d0d7e2;
	color: var(--cust-accent);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s;
}

.cust-link-btn:hover {
	background: var(--cust-primary);
	border-color: var(--cust-primary);
	color: #fff;
}

.cust-panel .pagination .page-link {
	color: var(--cust-primary);
	cursor: pointer;
}

.cust-panel .pagination .page-item.active .page-link {
	background: var(--cust-primary);
	border-color: var(--cust-primary);
}

.cust-action-bar .gap-2 > * {
	margin-right: 8px;
	margin-bottom: 4px;
}

/* Invite & Earn */
.cust-referral-card {
	border: none;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--cust-card-shadow);
	background: #fff;
}

.cust-referral-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, var(--cust-accent) 0%, #283593 55%, var(--cust-primary) 100%);
	color: #fff;
}

.cust-referral-header-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	flex-shrink: 0;
}

.cust-referral-title {
	font-weight: 800;
	font-size: 1.25rem;
	margin: 0;
	color: #fff;
}

.cust-referral-subtitle {
	font-size: 0.9rem;
	opacity: 0.9;
}

.cust-referral-body {
	padding: 1.5rem;
}

.cust-referral-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #64748b;
	margin-bottom: 0.5rem;
	display: block;
}

.cust-referral-code-box {
	display: flex;
	align-items: stretch;
	border: 2px dashed #d0d7e2;
	border-radius: 12px;
	overflow: hidden;
	background: #f8fafc;
}

.cust-referral-code {
	flex: 1;
	padding: 0.85rem 1rem;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--cust-primary);
	text-align: center;
	font-family: 'Courier New', monospace;
}

.cust-referral-copy-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 0.6rem 1rem;
	background: var(--cust-primary);
	color: #fff;
	border: none;
	font-size: 0.75rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
	min-width: 72px;
}

.cust-referral-copy-btn:hover {
	background: var(--cust-primary-dark);
}

.cust-referral-stat {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.1rem;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e8ecf2;
	height: 100%;
}

.cust-referral-stat-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.cust-referral-stat-icon.referred {
	background: #e8f5e9;
	color: #2e7d32;
}

.cust-referral-stat-icon.redeemed {
	background: #fff3e0;
	color: #e65100;
}

.cust-referral-stat-label {
	font-size: 0.78rem;
	color: #64748b;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.cust-referral-stat-value {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--cust-accent);
	line-height: 1.2;
}

.cust-referral-rewards {
	margin-top: 1.25rem;
	padding: 1rem 1.1rem;
	background: linear-gradient(135deg, #fff8f8 0%, #f8f9ff 100%);
	border-radius: 10px;
	border: 1px solid #fce4e4;
}

.cust-referral-reward-item {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: #455a64;
	line-height: 1.5;
}

.cust-referral-reward-item + .cust-referral-reward-item {
	margin-top: 0.5rem;
}

.cust-referral-reward-item i {
	color: var(--cust-primary);
	margin-top: 3px;
	flex-shrink: 0;
}

.cust-referral-share {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid #e8ecf2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.cust-referral-share-label {
	font-size: 0.8rem;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cust-referral-share-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cust-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	transition: transform 0.15s, box-shadow 0.15s;
}

.cust-share-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cust-share-btn.whatsapp {
	background: #25d366;
	color: #fff;
}

.cust-share-btn.telegram {
	background: #0088cc;
	color: #fff;
}

.cust-share-btn.link {
	background: #fff;
	color: var(--cust-accent);
	border: 1px solid #d0d7e2;
}

.cust-share-btn.link:hover {
	background: var(--cust-accent);
	color: #fff;
	border-color: var(--cust-accent);
}

/* Member profile */
.cust-profile-card {
	border: none;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--cust-card-shadow);
	background: #fff;
}

.cust-profile-top {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, var(--cust-primary) 0%, var(--cust-primary-dark) 55%, var(--cust-accent) 100%);
	color: #fff;
	flex-wrap: wrap;
}

.cust-profile-avatar-wrap {
	flex-shrink: 0;
	position: relative;
}

.cust-profile-photo-edit {
	position: absolute;
	right: -4px;
	bottom: -4px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: var(--cust-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 0.75rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	cursor: pointer;
}

.cust-profile-photo-edit:hover:not(:disabled) {
	background: var(--cust-primary-dark);
}

.cust-profile-photo-edit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.cust-profile-avatar,
.cust-profile-avatar-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cust-profile-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: 1px;
}

.cust-profile-avatar-img {
	object-fit: cover;
	background: #fff;
}

.cust-profile-name {
	font-weight: 800;
	font-size: 1.4rem;
	margin: 0;
	color: #fff;
}

.cust-profile-badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.65rem;
	border-radius: 20px;
}

.cust-profile-badge.active {
	background: rgba(46, 125, 50, 0.9);
	color: #fff;
}

.cust-profile-badge.inactive {
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
}

.cust-profile-accounts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.cust-profile-accounts-label {
	font-size: 0.78rem;
	opacity: 0.85;
	margin-right: 4px;
}

.cust-profile-account-chip {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 6px;
	padding: 0.15rem 0.55rem;
	font-size: 0.82rem;
	font-weight: 700;
	font-family: 'Courier New', monospace;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.cust-profile-account-chip:hover {
	background: rgba(255, 255, 255, 0.35);
}

.cust-profile-account-chip.selected {
	background: #fff;
	color: var(--cust-primary);
	border-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cust-profile-details {
	padding: 1.25rem 1.5rem 0.5rem;
}

.cust-profile-field {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.cust-profile-field > i {
	color: var(--cust-primary);
	width: 18px;
	text-align: center;
	margin-top: 3px;
	flex-shrink: 0;
}

.cust-profile-field-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #8896a8;
	margin-bottom: 0.1rem;
}

.cust-profile-field-value {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: #37474f;
	line-height: 1.4;
}

/* Saving deposit modal */
.cust-deposit-modal .modal-dialog {
	max-width: 440px;
}

.cust-deposit-modal-content {
	border: none;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(26, 35, 126, 0.2);
}

.cust-deposit-modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, var(--cust-primary) 0%, var(--cust-primary-dark) 100%);
	color: #fff;
}

.cust-deposit-modal-header .modal-title {
	font-weight: 700;
	font-size: 1.15rem;
}

.cust-deposit-modal-sub {
	font-size: 0.85rem;
	opacity: 0.9;
}

.cust-deposit-modal-body {
	padding: 1.5rem;
}

.cust-deposit-label {
	font-weight: 600;
	color: #3d4f63;
	font-size: 0.875rem;
}

.cust-deposit-plan-hint {
	font-size: 0.88rem;
	color: #0277bd;
	background: rgba(2, 119, 189, 0.08);
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
}

.cust-deposit-amount-input .input-group-text {
	background: #f8fafc;
	border-color: #d0d7e2;
	font-weight: 700;
	color: var(--cust-accent);
}

.cust-deposit-amount-input .form-control {
	border-color: #d0d7e2;
	font-weight: 700;
	font-size: 1.25rem;
}

.cust-deposit-amount-input .form-control:focus {
	border-color: var(--cust-primary);
	box-shadow: 0 0 0 3px rgba(219, 51, 51, 0.12);
}

.cust-deposit-quick-amts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cust-quick-amt {
	background: #f8fafc;
	border: 1px solid #d0d7e2;
	color: var(--cust-accent);
	font-weight: 600;
	border-radius: 8px;
}

.cust-quick-amt:hover:not(:disabled) {
	background: #fff5f5;
	border-color: var(--cust-primary);
	color: var(--cust-primary);
}

.cust-deposit-total {
	font-size: 0.95rem;
	color: #1f2937;
}

.cust-deposit-note {
	font-size: 0.8rem;
	color: #64748b;
	background: #f8fafc;
	padding: 0.65rem 0.85rem;
	border-radius: 8px;
	border: 1px solid #e8ecf2;
}

.cust-deposit-modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid #e8ecf2;
}

/* Payment return / status page */
.cust-pay-status-body {
	background: var(--cust-bg) !important;
}

.cust-pay-status-page {
	padding: 2.5rem 0 3.5rem;
	min-height: calc(100vh - 120px);
	display: flex;
	align-items: center;
}

.cust-pay-status-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--cust-card-shadow);
	padding: 2rem 1.75rem 1.75rem;
	text-align: center;
	border-top: 5px solid #cbd5e1;
}

.cust-pay-status-card--success {
	border-top-color: #2e7d32;
}

.cust-pay-status-card--pending {
	border-top-color: #f57c00;
}

.cust-pay-status-card--failed {
	border-top-color: var(--cust-primary);
}

.cust-pay-status-icon-wrap {
	margin-bottom: 1rem;
}

.cust-pay-status-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	font-size: 2.25rem;
}

.cust-pay-status-icon--success {
	background: rgba(46, 125, 50, 0.12);
	color: #2e7d32;
}

.cust-pay-status-icon--pending {
	background: rgba(245, 124, 0, 0.14);
	color: #ef6c00;
}

.cust-pay-status-icon--failed {
	background: rgba(219, 51, 51, 0.12);
	color: var(--cust-primary);
}

.cust-pay-status-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--cust-accent);
	margin-bottom: 0.5rem;
}

.cust-pay-status-message {
	color: #64748b;
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
	line-height: 1.5;
}

.cust-pay-status-message--error {
	color: var(--cust-primary);
}

.cust-pay-status-details {
	background: #f8fafc;
	border: 1px solid #e8edf3;
	border-radius: 12px;
	padding: 0.25rem 1rem;
	margin-bottom: 1.5rem;
	text-align: left;
}

.cust-pay-status-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 0.75rem 0;
	border-bottom: 1px solid #e8edf3;
}

.cust-pay-status-row:last-child {
	border-bottom: none;
}

.cust-pay-status-label {
	font-size: 0.88rem;
	color: #64748b;
	font-weight: 600;
}

.cust-pay-status-value {
	font-size: 0.95rem;
	color: #1e293b;
	word-break: break-all;
	text-align: right;
}

.cust-pay-status-amount {
	font-size: 1.2rem;
	color: var(--cust-accent);
}

.cust-pay-status-footer {
	padding-top: 0.5rem;
	border-top: 1px dashed #e2e8f0;
}

.cust-pay-status-redirect {
	font-size: 0.9rem;
	color: #64748b;
	margin-bottom: 0;
}

.cust-pay-status-redirect strong {
	color: var(--cust-accent);
	font-size: 1.05rem;
}

.cust-pay-status-home-btn {
	padding: 0.55rem 1.5rem;
	font-weight: 600;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.cust-action-bar { flex-direction: column; align-items: stretch; }
	.cust-summary-card .summary-value { font-size: 1.2rem; }
	.cust-deposit-grid { grid-template-columns: 1fr; }
	.cust-deposit-card { min-height: 84px; }
	.cust-deposit-links { justify-content: stretch; }
	.cust-link-btn { justify-content: center; flex: 1; }
	.cust-referral-share { flex-direction: column; align-items: stretch; }
	.cust-referral-share-btns { flex-direction: column; }
	.cust-share-btn { justify-content: center; }
	.cust-referral-code { font-size: 1.1rem; }
	.cust-profile-top { flex-direction: column; text-align: center; }
	.cust-profile-accounts { justify-content: center; }
	.cust-pay-status-page { padding: 1.5rem 0 2.5rem; }
	.cust-pay-status-card { padding: 1.5rem 1.25rem; }
	.cust-pay-status-row { flex-direction: column; align-items: flex-start; }
	.cust-pay-status-value { text-align: left; }
}

/* Member registration */
.cust-reg-page {
	background: linear-gradient(160deg, #f4f6f9 0%, #eef1f8 45%, #fff5f5 100%);
	min-height: calc(100vh - 80px);
	padding: 2rem 0 3rem;
}

.cust-reg-hero {
	text-align: center;
	margin-bottom: 2rem;
}

.cust-reg-hero-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	box-shadow: 0 8px 24px rgba(219, 51, 51, 0.35);
}

.cust-reg-hero-title {
	color: var(--cust-accent);
	font-weight: 800;
	font-size: 1.85rem;
	margin-bottom: 0.35rem;
}

.cust-reg-hero-sub {
	color: #5c6b7a;
	font-size: 1.05rem;
	margin: 0;
}

.cust-reg-card {
	border: none;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(26, 35, 126, 0.1);
	overflow: hidden;
	background: #fff;
}

.cust-reg-card-header {
	background: linear-gradient(135deg, var(--cust-primary) 0%, var(--cust-primary-dark) 100%);
	color: #fff;
	padding: 1.25rem 1.5rem;
	text-align: center;
}

.cust-reg-card-header h2 {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.cust-reg-card-header p {
	margin: 0.35rem 0 0;
	opacity: 0.9;
	font-size: 0.9rem;
}

.cust-reg-steps {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 1.75rem;
	padding: 0 1rem;
}

.cust-reg-step {
	flex: 1;
	max-width: 200px;
	text-align: center;
	position: relative;
}

.cust-reg-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 18px;
	left: calc(50% + 22px);
	right: calc(-50% + 22px);
	height: 3px;
	background: #dde2eb;
	border-radius: 2px;
	z-index: 0;
}

.cust-reg-step.done:not(:last-child)::after,
.cust-reg-step.active:not(:last-child)::after {
	background: var(--cust-primary);
	opacity: 0.4;
}

.cust-reg-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #e8ecf2;
	color: #8896a8;
	font-weight: 700;
	font-size: 0.95rem;
	position: relative;
	z-index: 1;
	transition: all 0.25s ease;
}

.cust-reg-step.active .cust-reg-step-num,
.cust-reg-step.done .cust-reg-step-num {
	background: var(--cust-primary);
	color: #fff;
	box-shadow: 0 4px 12px rgba(219, 51, 51, 0.35);
}

.cust-reg-step-label {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #8896a8;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.cust-reg-step.active .cust-reg-step-label,
.cust-reg-step.done .cust-reg-step-label {
	color: var(--cust-accent);
}

.cust-reg-section {
	background: #fafbfd;
	border: 1px solid #e8ecf2;
	border-radius: 12px;
	padding: 1.25rem 1.25rem 0.5rem;
	margin-bottom: 1.25rem;
}

.cust-reg-section-title {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--cust-accent);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 1rem;
	padding-bottom: 0.65rem;
	border-bottom: 2px solid #e8ecf2;
}

.cust-reg-section-title i {
	color: var(--cust-primary);
	width: 1.25rem;
	text-align: center;
}

.cust-reg-card .form-group label {
	font-weight: 600;
	color: #3d4f63;
	font-size: 0.875rem;
	margin-bottom: 0.35rem;
}

.cust-reg-card .form-control {
	border-radius: 8px;
	border-color: #d0d7e2;
	padding: 0.55rem 0.85rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.cust-reg-card .form-control:focus {
	border-color: var(--cust-primary);
	box-shadow: 0 0 0 3px rgba(219, 51, 51, 0.12);
}

.cust-reg-card .btn-success {
	background: var(--cust-primary);
	border-color: var(--cust-primary-dark);
	font-weight: 600;
	border-radius: 8px;
	padding: 0.5rem 1.25rem;
}

.cust-reg-card .btn-success:hover:not(:disabled) {
	background: var(--cust-primary-dark);
	border-color: #9a2222;
}

.cust-reg-card .btn-success:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.cust-reg-card .btn-warning {
	border-radius: 8px;
	font-weight: 600;
}

.cust-reg-otp-timer {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.85rem;
	background: #fff8e6;
	border-radius: 8px;
	color: #b8860b;
	font-weight: 600;
	font-size: 0.9rem;
}

.cust-reg-verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #2e7d32;
	font-weight: 600;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.cust-reg-footer {
	background: #f8f9fc;
	border-top: 1px solid #e8ecf2;
	padding: 1.25rem 1.5rem;
	text-align: center;
}

.cust-reg-footer .btn-register {
	min-width: 180px;
	padding: 0.65rem 2rem;
	font-size: 1.05rem;
	border-radius: 10px;
}

.cust-reg-login-link {
	margin-top: 1rem;
	font-size: 0.95rem;
	color: #5c6b7a;
}

.cust-reg-login-link a {
	color: var(--cust-primary);
	font-weight: 600;
	text-decoration: none;
}

.cust-reg-login-link a:hover {
	text-decoration: underline;
}

@media (max-width: 576px) {
	.cust-reg-steps { flex-direction: column; align-items: center; gap: 1rem; }
	.cust-reg-step:not(:last-child)::after { display: none; }
	.cust-reg-hero-title { font-size: 1.5rem; }
}
