.gbas-41-wrapper {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.gbas-41-video-container {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.gbas-41-video-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translateX(-50%) translateY(-50%);
	z-index: 1;
	object-fit: cover;
}

.gbas-41-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.gbas-41-content {
	position: relative;
	z-index: 3;
	text-align: center;
	padding: 20px;
	max-width: 800px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gbas-41-logo {
	display: flex;
	justify-content: center;
}

.gbas-41-dynamic-logo {
	width: 100%;
	height: auto;
	transition: opacity 0.3s ease;
}

.gbas-41-text {
	margin: 0;
	transition: opacity 0.3s ease;
}

.gbas-41-btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
	cursor: pointer;
	z-index: 4;
}

.gbas-41-selector-wrapper {
	position: relative;
	width: 100%;
	z-index: 5;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.gbas-41-selector-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.gbas-41-selector-menu {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	margin: 0;
    min-width: min-content; /* Changed from max-content to min-content for better mobile support */
    padding-bottom: 5px; /* Slight padding to ensure scrollbar doesn't clip content if visible */
}

.gbas-41-thumb-btn {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	display: block;
	transition: all 0.3s ease;
    flex: 0 0 auto; /* Shorthand for flex-grow: 0, flex-shrink: 0, flex-basis: auto */
}

.gbas-41-thumb-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: filter 0.3s ease;
}