.rts-team-area-start {
	padding-top: 90px;
	padding-bottom: 90px;
}

.bd-product__result h4 {
	color: #333;
	font-size: 1.2rem;
	font-weight: 600;
}

.bd-product__result span {
	color: #dc3545;
	font-weight: bold;
}

.promo {
	margin-bottom: 2rem;
}

.promo-pannel__video {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
	cursor: pointer;
	background: #000;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.promo-pannel__video:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	overflow: hidden;
}

.video-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.promo-pannel__video:hover .video-wrapper img {
	transform: scale(1.05);
}

.play-button {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #dc3545;
	transition: all 0.3s ease;
	z-index: 10;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-pannel__video:hover .play-button {
	background: rgba(220, 53, 69, 0.95);
	color: white;
	transform: translate(-50%, -50%) scale(1.15);
}

.promo .card {
	border: none;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.promo .card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.promo .card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
}

.promo .card-title {
	font-size: 1rem;
	color: #333;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 0;
	flex-grow: 1;
}

/* Bootstrap Pagination 客製化 */
.bd-basic__pagination {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.bd-basic__pagination .pagination {
	justify-content: center;
}

.bd-basic__pagination .page-link {
	color: #6c757d;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	margin: 0 3px;
	transition: all 0.3s ease;
}

.bd-basic__pagination .page-link:hover {
	background-color: #dc3545;
	border-color: #dc3545;
	color: white;
}

.bd-basic__pagination .page-item.active .page-link {
	background-color: #dc3545;
	border-color: #dc3545;
	color: white;
}

.bd-basic__pagination .page-item.disabled .page-link {
	color: #adb5bd;
}

/* 載入動畫 */
.loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

/* 響應式調整 */
@media (max-width: 576px) {
	.promo-pannel__video {
		height: 180px;
	}

	.rts-team-area-start {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.modal {
	z-index: 99999 !important;
	overflow: hidden;
}

.modal-backdrop {
	z-index: 99998 !important;
	--bs-modal-bg: #ffffff00;
	--bs-modal-border-color: rgb(0 0 0 / 0%);
}

#store-2 {
	z-index: 99999 !important;
}

#store-2~.modal-backdrop {
	z-index: 99998 !important;
}

.ticket-content .modal-header {
	height: 0;
	border-bottom: none;
}

#ticket .ticket-content .btn-close {
	position: absolute;
	right: 48px;
	top: 70px;
	z-index: 1;
	transform: scale(1.2);
	transition: all 0.2s ease-in-out;
	--bs-btn-close-focus-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
	--bs-btn-close-opacity: 1;
	width: 0.6em;
	height: 1.8em;
}

.modal-dialog {
	display: flex;
	align-items: end !important;
}

.modal.show .modal-dialog {
	display: flex;
	align-items: end !important;
}

#loginModal.modal.show .modal-dialog {
	display: flex;
	align-items: center !important;
}

.ticket-content .modal-content {
	background-color: transparent;
	border: none;
}

.ticket-img {
	width: 100%;
	animation: floating 3s ease-in-out infinite;
}

.ticket-img:hover {
	transform: scale(1.05);
}

@keyframes floating {
	0%, 100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

@media (min-width: 1200px) {
	.ticket-content .modal-dialog {
		max-width: 800px;
		margin: 1.75rem auto;
	}
}

.claim-success-toast {
	position: fixed;
	bottom: 20px;
	right: 45%;
	background: #28a745;
	color: white;
	padding: 15px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	z-index: 100000;
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.3s ease;
}

.claim-success-toast.show {
	opacity: 1;
	transform: translateY(0);
}

.claim-success-toast--error {
	position: fixed;
	bottom: 20px;
	right: 45%;
	background: #dc3545;
	color: white;
	padding: 15px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	z-index: 100000;
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.3s ease;
}

.claim-success-toast--error.email-error {
	right: 39%;
}

.claim-success-toast--error.login-error {
	right: 42%;
}

.claim-success-toast--error.show {
	opacity: 1;
	transform: translateY(0);
}

.bd-basic__pagination ul li{
	color:var(--clr-theme-1)
}

.bd-basic__pagination ul li a {
	border: 2px solid #f9f0e8;
	color: var(--clr-theme-1);
}

.bd-basic__pagination ul li a i {
	color: var(--clr-theme-1);
}

.bd-basic__pagination ul li a:hover i {
	color: #f9f0e8;
}

.bd-basic__pagination ul li a.current {
    border-color: var(--clr-theme-2);
    color: #f9f0e8;
}

.bd-basic__pagination ul li span {
	color: #f9f0e8;
}

.bd-basic__pagination ul li a:hover {
    background-color: #f9f0e8;
    color: #db590082;
    border-color: #db590082;
}

@media (width<=768px) {
	.outer {
		position: fixed;
		bottom: 50px;
	}

	.ticket-img {
		width: 90%;
	}

	button.claim-btn {
		margin: auto;
		width: 95%;
	}

	.claim-success-toast.show {
		bottom: 40px;
		left: 50%;
		transform: translateX(-50%);
		width: 90%;
	}
}

.pighead {
	width: 80px;
	margin-right: 10px;
	position: relative;
	top: 30px;
	animation: gentle-swing 2s ease-in-out infinite;
	flex-shrink: 0;
	object-fit: contain; 
	/* transform-origin: top center; */
}

.tips {
	background-color: #ffe6a7;
	border-radius: 30px 30px 30px 0;
	padding: 10px 70px 10px 30px;
	text-align: center;
	min-height: 50px;
	line-height: 60px;
	width: auto;
	position: relative;
}
.tips::after {
	content: '';
	position: absolute;
	right: 20px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	background: url(../../../img/shape/footprint.png) no-repeat center;
	background-size: contain;
	z-index: 1; 
}
.tips h4 {
	color: white;
}

.tip {
	margin-bottom: 80px;
}

@keyframes gentle-swing {
	0%, 100% {
		transform: rotate(-5deg);
	}

	50% {
		transform: rotate(5deg);
	}
}

@media (width<=576px){
	.tips{
		line-height: 36px;
	}
}

@media (width<=375px){
	.tips{
		font-size: 1rem;
		padding: 5px 50px 5px 25px;
	}
}