/**********************************/
/***** Betplatino design utils *****/
/**********************************/

.bp-container {
	width: 100%;
	max-width: var(--crmpam-page-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--crmpam-padding-medium);
	padding-right: var(--crmpam-padding-medium);
}

.bp-rounded-container {
	border-radius: var(--crmpam-border-radius-large);
	overflow: hidden;
}

.bp-glow-border {
	border: 1px solid var(--crmpam-border-glow);
	box-shadow: 0 0 12px var(--crmpam-glow);
}

.bp-section-spacing {
	margin-bottom: var(--bp-section-gap);
}

.bp-card-surface {
	background: var(--crmpam-bg-card);
	border: 1px solid var(--crmpam-border-glow);
	border-radius: var(--crmpam-border-radius-small);
}

.bp-btn-auth {
	background: var(--crmpam-btn-color-primary) !important;
	color: var(--crmpam-brand-700) !important;
	font-weight: 700 !important;
	font-size: var(--crmpam-text-medium) !important;
	text-transform: none !important;
	border-radius: var(--crmpam-border-radius-small) !important;
	transition: all 0.2s ease !important;
	padding: 0px 16px !important;
	height: 36px !important;
}

.bp-btn-auth:hover {
	background: var(--crmpam-btn-color-primary-hover) !important;
	box-shadow: var(--crmpam-glow-soft);
}

.bp-btn-auth-outline {
	background: transparent !important;
	color: #fff !important;
	border: 1px solid var(--crmpam-border-glow) !important;
	font-weight: 600 !important;
	text-transform: none !important;
	border-radius: var(--crmpam-border-radius-small) !important;
}

.bp-btn-auth-glow {
	box-shadow: var(--crmpam-glow-soft);
}

.bp-btn-deposit {
	background: var(--crmpam-btn-color-primary) !important;
	color: var(--crmpam-brand-700) !important;
	font-weight: 700 !important;
	text-transform: none !important;
	border-radius: var(--crmpam-border-radius-small) !important;
	padding: 8px 20px !important;
	box-shadow: var(--crmpam-glow-soft);
}

.bp-menu-active {
	color: var(--crmpam-menu-active) !important;
}

.bp-menu-active::after {
	background-color: var(--crmpam-menu-active) !important;
}

.bp-chip {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: var(--crmpam-border-radius-small);
	border: 1px solid transparent;
	color: var(--crmpam-color-secondary);
	font-weight: 600;
	font-size: var(--crmpam-text-small);
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
	cursor: pointer;
	background: transparent;
}

.bp-chip:hover {
	border-color: var(--crmpam-border-glow);
	color: var(--crmpam-menu-active);
}

.bp-chip.active {
	border-color: var(--crmpam-menu-active);
	color: var(--crmpam-menu-active);
	box-shadow: 0 0 10px var(--crmpam-glow);
}

.bp-chips-row {
	display: flex;
	width: 100%;
	gap: 8px;
}

@media (min-width: 1024px) {
	.bp-chips-row {
		justify-content: space-between;
	}

	.bp-chips-row .bp-chip {
		flex: 1;
	}
}

@media (max-width: 1023px) {
	.bp-chips-row {
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.bp-chips-row::-webkit-scrollbar {
		display: none;
	}
}

.bp-carousel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--crmpam-margin-medium);
}

.bp-carousel-header h2 {
	font-size: 18px;
	font-weight: 700;
	color: var(--crmpam-color-secondary);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bp-show-all {
	color: var(--crmpam-btn-color-primary);
	font-weight: 700;
	font-size: 12px;
	text-decoration: none;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: opacity 0.2s ease;
}

.bp-show-all::after {
	content: "›";
	font-size: 16px;
	line-height: 1;
}

.bp-show-all:hover {
	opacity: 0.85;
	text-decoration: none;
}

.bp-quick-access-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 12px;
	padding: 40px 0 16px;
}

.bp-quick-access-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: var(--crmpam-color-secondary);
	position: relative;
	padding-top: 28px;
}

.bp-quick-access-base {
	position: relative;
	width: 90%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 50px 8px 20px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: linear-gradient(180deg, #16211e 0%, #0a100e 100%);
	text-align: center;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.bp-quick-access-base::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(230, 231, 232, 0.12) 0%, transparent 70%);
	opacity: 0.9;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.bp-quick-access-item:hover .bp-quick-access-base {
	border-color: var(--crmpam-border-glow);
	box-shadow: var(--crmpam-glow-soft);
}

.bp-quick-access-item:hover .bp-quick-access-base::after {
	opacity: 1;
}

.bp-quick-access-icon-wrap {
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	line-height: 0;
	filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.55));
	transition: transform 0.2s ease;
	z-index: 1;
	pointer-events: none;
}

.bp-quick-access-item:hover .bp-quick-access-icon-wrap {
	transform: translateX(-50%) translateY(-2px) scale(1.05);
}

.bp-quick-access-icon {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.bp-quick-access-label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	position: relative;
	z-index: 1;
}

.bp-horizontal-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 1023px) {
	.bp-horizontal-cards-grid {
		display: none;
	}
}

.bp-horizontal-card {
	display: block;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 25 / 12;
	border: 1px solid var(--crmpam-border-glow);
	transition: box-shadow 0.2s ease;
}

.bp-horizontal-card:hover {
	box-shadow: var(--crmpam-glow-soft);
}

.bp-horizontal-card-inner {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.bp-horizontal-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.bp-horizontal-card:hover img {
	transform: scale(1.05);
}

.bp-lobby-layout {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.bp-lobby-sidebar {
	width: 260px;
	flex-shrink: 0;
}

.bp-lobby-main {
	flex: 1;
	min-width: 0;
}

@media (max-width: 1023px) {
	.bp-lobby-layout {
		flex-direction: column;
	}

	.bp-lobby-sidebar {
		width: 100%;
	}
}

.bp-provider-sidebar {
	background: var(--crmpam-bg-card);
	border: 1px solid var(--crmpam-border-glow);
	border-radius: var(--crmpam-border-radius-small);
	padding: var(--crmpam-padding-medium);
	max-height: 70vh;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.bp-provider-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 10px 8px;
	margin: 0;
	cursor: pointer;
	color: #e8eeec;
	font-size: var(--crmpam-text-small);
	border-radius: 8px;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.bp-provider-item:hover {
	background: rgba(255, 255, 255, 0.06);
}

.bp-provider-item.selected {
	color: var(--crmpam-menu-active);
}

.bp-provider-count {
	color: #8a9a96;
	font-size: 12px;
	font-weight: 400;
	flex-shrink: 0;
	line-height: 1;
}

.bp-search-row {
	display: flex;
	gap: 12px;
	margin-bottom: var(--crmpam-margin-medium);
}

.bp-search-row>* {
	flex: 1;
}

.bp-footer-brand-desc {
	color: var(--crmpam-color-footer);
	font-size: var(--crmpam-text-small);
	line-height: 1.5;
	max-width: 280px;
}

.bp-footer-badges {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	flex-wrap: wrap;
}

.bp-footer-badges img {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.bp-back-to-top {
	display: block;
	width: 100%;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	font-size: var(--crmpam-text-small);
	padding: 12px 16px;
	border: none;
	border-radius: 0;
	background: var(--crmpam-brand-700);
	text-align: center;
	transition: background 0.2s ease;
}

.bp-back-to-top:hover {
	background: #0a100e;
}

.bp-mobile-nav-spacer {
	padding-bottom: 72px;
}

@media (min-width: 1024px) {
	.bp-mobile-nav-spacer {
		padding-bottom: 0;
	}

	.bp-hide-desktop {
		display: none !important;
	}
}

@media (max-width: 1023px) {
	.bp-hide-mobile {
		display: none !important;
	}

	/* Zoho SalesIQ: keep float button above mobile bottom tab */
	.zsiq-float,
	.zsiq_floatmain,
	#zsiq_float,
	#zsiqwidget {
		bottom: 88px !important;
	}
}

.bp-auth-dialog .MuiDialog-paper {
	background: var(--crmpam-bg-header) !important;
	border: 1px solid var(--crmpam-border-glow);
	color: var(--crmpam-color-secondary);
}

.bp-mission-hero {
	position: relative;
	border-radius: var(--crmpam-border-radius-large);
	overflow: visible;
	margin-bottom: 48px;
}

.bp-mission-tabs {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
}

.bp-mission-tab {
	padding: 10px 24px;
	border-radius: var(--crmpam-border-radius-small);
	border: 1px solid var(--crmpam-border-glow);
	background: var(--crmpam-bg-card);
	color: var(--crmpam-color-secondary);
	font-weight: 600;
	cursor: pointer;
}

.bp-mission-tab.active {
	border-color: var(--crmpam-menu-active);
	color: var(--crmpam-menu-active);
	box-shadow: 0 0 10px var(--crmpam-glow);
}

.bp-banner-contained {
	padding: var(--crmpam-padding-medium) 0;
}

.bp-banner-contained .crmpam-banner-slider {
	border-radius: var(--crmpam-border-radius-large);
	overflow: hidden;
}

.bp-banner-contained .splide__arrow {
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
}

.bp-banner-contained .splide__arrow svg {
	fill: var(--crmpam-menu-active);
}

.bp-mobile-bottom-nav-inner {
	display: flex;
	align-items: stretch;
	justify-content: space-around;
	padding: 8px 4px;
}

.bp-mobile-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex: 1;
	min-width: 0;
	padding: 4px 2px;
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: none;
	color: #ffffff;
	font-size: 10px;
	font-weight: 600;
	font-family: var(--crmpam-font);
}

.bp-mobile-nav-item.active span,
.bp-mobile-nav-item.active {
	color: var(--crmpam-menu-active);
}

.bp-mobile-nav-item span {
	text-align: center;
	line-height: 1.2;
}

@media (max-width: 1023px) {
	.bp-quick-access-grid {
		display: none;
	}
}

.bp-mobile-nav-emoji {
	font-size: 20px;
	line-height: 1;
}

.bp-mobile-nav-item {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s ease;
}

.bp-mobile-nav-item:hover {
	color: #fff;
}

/* Filter chips — vertical emoji style (lobby) */
.bp-filter-chips-row {
	display: flex;
	width: 100%;
	gap: 8px;
	padding: 8px 0 16px;
}

@media (min-width: 1024px) {
	.bp-filter-chips-row {
		justify-content: space-between;
	}
}

.bp-filter-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 72px;
	height: 68px;
	padding: 8px 6px;
	border-radius: 12px;
	border: 1px solid var(--crmpam-border-glow);
	background: var(--crmpam-bg-card);
	color: rgba(255, 255, 255, 0.8);
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.bp-filter-chip:hover {
	background: var(--crmpam-surface-2);
	color: #fff;
}

.bp-filter-chip.active {
	border-color: var(--crmpam-menu-active);
	color: var(--crmpam-menu-active);
	background: rgba(0, 255, 154, 0.1);
	box-shadow: var(--crmpam-glow-soft);
}

.bp-filter-chip-emoji {
	font-size: 22px;
	line-height: 1;
}

@media (min-width: 1024px) {
	.bp-filter-chip {
		flex: 1;
		min-width: 0;
	}
}

@media (max-width: 1023px) {
	.bp-filter-chips-row {
		overflow-x: auto;
		flex-wrap: nowrap;
		scrollbar-width: none;
	}

	.bp-filter-chips-row::-webkit-scrollbar {
		display: none;
	}
}

/* Game tiles */
.bp-game-tile {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--crmpam-border-glow);
	cursor: pointer;
	background: var(--crmpam-bg-card);
}

.bp-game-tile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bp-game-tile-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.bp-game-tile:hover .bp-game-tile-overlay {
	opacity: 1;
}

.bp-game-play-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--crmpam-bg-card);
	border: 1px solid var(--crmpam-border-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--crmpam-glow-soft);
}

.bp-game-play-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--crmpam-icon-primary);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bp-game-tile .crmpam-machine-favs-button {
	position: absolute;
	top: 4px;
	right: 4px;
	z-index: 2;
}

.bp-lobby-games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 10px;
}

.bp-lobby-load-more {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.bp-lobby-load-more-btn {
	color: var(--crmpam-btn-color-primary) !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	font-size: 13px;
}

/* Page headers */
.bp-page-header {
	margin-bottom: 24px;
}

.bp-page-header h1 {
	font-size: 28px;
	font-weight: 800;
	font-style: italic;
	color: #fff;
	margin: 0 0 8px;
}

.bp-page-header h1 .bp-accent {
	color: var(--crmpam-btn-color-primary);
}

.bp-page-header p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

.bp-section-title {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	margin: 0 0 16px;
}

/* Promo cards */
.bp-promo-grid {
	display: grid;
	gap: 24px;
	width: 100%;
	grid-template-columns: 1fr;
}

@media (min-width: 850px) and (max-width: 1380px) {
	.bp-promo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1381px) {
	.bp-promo-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.bp-promo-card {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: var(--crmpam-bg-card);
	overflow: hidden;
	color: inherit;
	transition: box-shadow 0.2s ease;
}

.bp-promo-card-link {
	display: flex;
	flex-direction: column;
	flex: 1;
	text-decoration: none;
	color: inherit;
}

.bp-promo-card:hover {
	box-shadow: var(--crmpam-glow-soft);
}

.bp-promo-card-hero {
	height: 160px;
	min-height: 160px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.bp-promo-card:nth-child(6n + 1) .bp-promo-card-hero {
	background: linear-gradient(145deg, #0a3d24 0%, #22c55e 100%);
}

.bp-promo-card:nth-child(6n + 2) .bp-promo-card-hero {
	background: linear-gradient(145deg, #0b1f3a 0%, #2eb8c9 100%);
}

.bp-promo-card:nth-child(6n + 3) .bp-promo-card-hero {
	background: linear-gradient(145deg, #3b1466 0%, #e8a598 100%);
}

.bp-promo-card:nth-child(6n + 4) .bp-promo-card-hero {
	background: linear-gradient(145deg, #4a2a14 0%, #cbb89a 100%);
}

.bp-promo-card:nth-child(6n + 5) .bp-promo-card-hero {
	background: linear-gradient(145deg, #1c2228 0%, #3d5c5c 100%);
}

.bp-promo-card:nth-child(6n + 6) .bp-promo-card-hero {
	background: linear-gradient(145deg, #1a9b4a 0%, #d4f5e0 100%);
}

.bp-promo-card-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bp-promo-detail-hero {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}

.bp-promo-card-body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bp-promo-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.bp-promo-card-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	flex: 1;
}

.bp-promo-card-desc p {
	margin: 0;
}

.bp-promo-card-desc strong,
.bp-promo-card-desc b {
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

.bp-promo-card-desc ul,
.bp-promo-card-desc ol {
	margin: 0;
	padding-left: 1.25em;
}

.bp-promo-card-meta {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.bp-promo-detail-title {
	color: #fff;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 20px 0 8px;
}

.bp-promo-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin: 0 0 8px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.bp-promo-terms {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
}

.bp-promo-terms h2 {
	font-size: 1.15rem;
	font-weight: 800;
	margin: 0 0 12px;
}

.promo-body {
	color: #fff;
	line-height: 1.7;
}

.promo-body p {
	margin: 0 0 1.5em;
	line-height: 1.7;
}

.promo-body ul,
.promo-body ol {
	margin: 0 0 1.5em;
	padding-left: 1.5em;
}

.promo-body li {
	margin-bottom: 0.5em;
	line-height: 1.7;
}

.promo-body strong,
.promo-body b {
	font-weight: 700;
}

.bp-promo-card-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 4px 16px 16px;
}

.bp-promo-section-title {
	color: #fff;
	font-size: 1.5em;
	font-weight: 700;
	margin: 32px 0 16px;
}

.bp-promo-section-title:first-of-type {
	margin-top: 8px;
}

.bp-promo-login {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 48px 16px;
	text-align: center;
}

.bp-promo-login-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
}

/* Tournament cards */
.bp-tournament-card {
	border-radius: 16px;
	border: 1px solid var(--crmpam-border-glow);
	background: var(--crmpam-bg-card);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: box-shadow 0.2s ease;
}

.bp-tournament-card:hover {
	box-shadow: var(--crmpam-glow-soft);
}

.bp-tournament-card.finished {
	opacity: 0.8;
}

.bp-tournament-prize-box {
	background: var(--crmpam-ground-2);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}

.bp-tournament-prize-amount {
	font-size: 24px;
	font-weight: 800;
	color: var(--crmpam-btn-color-primary);
}

.bp-btn-cta {
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--crmpam-btn-color-primary);
	color: var(--crmpam-brand-700) !important;
	font-weight: 700;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 13px;
	width: 100%;
	transition: all 0.2s ease;
}

.bp-btn-cta:hover {
	background: var(--crmpam-btn-color-primary-hover);
	box-shadow: var(--crmpam-glow-soft);
}

.bp-btn-cta-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7) !important;
}

.bp-btn-cta:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Mission cards */
.bp-mission-card {
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: var(--crmpam-bg-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: box-shadow 0.2s ease;
}

.bp-mission-card:hover {
	box-shadow: var(--crmpam-glow-soft);
}

.bp-mission-card-hero {
	height: 144px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
	position: relative;
	font-size: 48px;
}

.bp-mission-reward-badge {
	position: absolute;
	bottom: 8px;
	left: 8px;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--crmpam-btn-color-primary);
}

.bp-mission-card-body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bp-mission-tabs-container {
	display: flex;
	gap: 4px;
	padding: 4px;
	border-radius: 12px;
	background: var(--crmpam-bg-card);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.bp-mission-tab.active {
	background: var(--crmpam-btn-color-primary);
	color: var(--crmpam-brand-700);
	border-color: transparent;
	box-shadow: none;
}

/* Mobile drawer */
.bp-mobile-drawer .MuiDrawer-paper {
	background: var(--crmpam-bg-header);
	width: min(320px, 85vw);
}

.bp-drawer-menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: background 0.2s ease, color 0.2s ease;
}

.bp-drawer-menu-item:hover,
.bp-drawer-menu-item.active {
	background: rgba(0, 255, 154, 0.05);
	color: var(--crmpam-menu-active);
}

.bp-drawer-menu-emoji {
	font-size: 22px;
	width: 28px;
	text-align: center;
}

/* Footer social */
.bp-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	transition: all 0.2s ease;
}

.bp-social-link:hover {
	background: var(--crmpam-btn-color-primary);
	color: var(--crmpam-brand-700);
}

/* Auth form */
.bp-auth-dialog .MuiInputBase-root {
	background: var(--crmpam-bg-card);
	color: #fff;
}

.bp-auth-dialog .MuiOutlinedInput-notchedOutline {
	border-color: var(--crmpam-border-glow);
}

.bp-auth-dialog .MuiInputLabel-root {
	color: rgba(255, 255, 255, 0.6);
}

.bp-btn-submit {
	background: var(--crmpam-btn-color-primary) !important;
	color: var(--crmpam-brand-700) !important;
	font-size: var(--crmpam-text-medium) !important;
	font-weight: 700 !important;
	box-shadow: var(--crmpam-glow-soft) !important;
}

/* Main menu active — border bottom like mockup */
.crmpam-main-menu>.crmpam-link.active {
	color: var(--crmpam-menu-active) !important;
	border-bottom: 2px solid var(--crmpam-menu-active);
	padding-bottom: 2px;
}

.crmpam-main-menu>.crmpam-link.active:hover {
	color: var(--crmpam-menu-active) !important;
	opacity: 1;
}

.crmpam-main-menu>.crmpam-link.active::after {
	display: none;
}

.crmpam-main-menu>.crmpam-link {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8) !important;
	opacity: 1;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.crmpam-main-menu>.crmpam-link:hover {
	color: #fff !important;
	opacity: 1;
}

.crmpam-appBar {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.bp-progress-track {
	height: 8px;
	border-radius: 4px;
	background: var(--crmpam-ground-2);
	overflow: hidden;
}

.bp-progress-fill {
	height: 100%;
	background: var(--crmpam-btn-color-primary);
	border-radius: 4px;
	transition: width 0.3s ease;
}
/* Featured bets (Altenar WHighlights) */
.bp-featured-bets {
	width: 100%;
}

.bp-featured-bets-widget {
	width: 100%;
	min-height: 280px;
}

.bp-featured-bets-widget > * {
	width: 100% !important;
}

.bp-sportsbook {
	width: 100%;
	min-height: 640px;
	background: transparent;
}

.notifications-wrapper {
	display: inline-flex;
	align-items: center;
	margin-right: 12px;
	line-height: 0;
}

lux-announcements.lux-notifications {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}
