*, html {
	scroll-behavior: smooth !important;
}

:root {
	--mtq-yellow: #F8C014;
	--cornell-blue: #000080;
	--brand-logo-scale: 1.6;
	--mobile-brand-logo-scale: 0.80;
	
	/* Individual brand base sizes (in pixels) */
	--borgwarner-size: 24px;
	--bosch-size: 48px;
	--continental-size: 33px;
	--delphi-size: 35px;
	--denso-size: 40px;
	--garrett-size: 40px;
	--holset-size: 42px;
	--ihi-size: 32px;
	--mitsubishi-size: 38px;
	--stanadyne-size: 45px;
	--yanmar-size: 45px;
	--zexel-size: 40px;
}

.bold {
	font-weight: 900;
}

.italic {
	font-style: italic;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: linear-gradient(to bottom, #0f0f0f, #2c2c2c);
    color: white;
    text-align: center;
}

.announcement h1 {
    font-size: 2.75rem !important;
    font-weight: 900;
    margin-bottom: 10px;
    margin-top: 0px;
}

.announcement p {
    font-size: 1.3rem !important;
    margin-top: 0px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
.hero-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
}

.hero-section .container {
	padding-top: 60px;
	position: relative;
	z-index: 1;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		url('../assets/backgrounds/landing_background.webp');
	background-size: cover, cover;
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
	background-color: rgba(0,0,0,0.5);
	background-blend-mode: normal, lighten;
	-webkit-filter: blur(6px);
	-moz-filter: blur(6px);
	-o-filter: blur(6px);
	-ms-filter: blur(6px);
	filter: blur(6px) brightness(0.75);
	
	z-index: -1;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.hero-section.background-loaded::before {
	opacity: 1;
}

.hero-section header {
	margin-top: 0;
	padding-top: 0;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 100px;
	height: 80px;
	background-image: url('../assets/logos/capricorn_logo.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.8;
	z-index: 3;
}



/* Unified Scroll Button Base Class */
.scroll-button {
	width: 50px;
	height: 50px;
	background-color: var(--mtq-yellow);
	color: #000;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	animation: pulse 2s infinite;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.scroll-button::after {
	content: '';
	width: 12px;
	height: 12px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
}

.scroll-button:hover {
	background-color: #e6ad12;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	transform: scale(1.1);
}

.scroll-button.show {
	opacity: 1;
	visibility: visible;
}

/* Scroll Indicator (Down) */
.scroll-indicator {
	position: fixed;
	bottom: 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
}

.scroll-indicator::after {
	transform: rotate(45deg) translate(-1px, -1px);
}

.scroll-indicator:hover {
	transform: translateY(2px) scale(1.1);
}

.scroll-indicator.show {
	opacity: 0.8;
}

/* Back to Top Button (Up) */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
}

.back-to-top::after {
	transform: rotate(-135deg) translate(-3px, -3px);
}

.back-to-top:hover {
	transform: translateY(-2px) scale(1.1);
}

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

.main-logo {
	max-width: 80%;
	height: auto;
	width: 800px;
	margin: 0 auto 10px auto;
}

.main-logo img {
	display: block;
	margin: 0 auto;
  }
  
  .links {
    display: flex;
    justify-content: center;
	gap: 70px;
    flex-wrap: wrap;
    margin: 20px 0;
  }
  
  .links img {
    height: 50px;
    max-width: 150px;
    border-radius: 6px;
    object-fit: contain;
  }
  
  .logo-banner img {
    margin: 30px 0;
    max-width: 100%;
    height: auto;
  }
  
  .images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
  }
  
  .images img {
    flex: 1 1 300px;
    max-width: 45%;
    height: auto;
  }
  
.brands {
    background-color: #fff;
    color: black;
    padding-top: 0px;
	border-top: 5px solid var(--mtq-yellow);
	transition: border-top-color 0.3s ease;
  }
  
.brands.pulse-border {
	animation: borderPulse 2s ease-in-out infinite;
	position: relative;
}

.brands.pulse-border::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	height: 35px;
	background: radial-gradient(ellipse at center bottom, var(--mtq-yellow), transparent 70%);
	animation: glowPulse 2s infinite;
	pointer-events: none;
	filter: blur(4px);
}

@keyframes borderPulse {
	0%, 100% { 
		border-top-color: var(--mtq-yellow);
	}
	50% { 
		border-top-color: #ffeb3b;
	}
}

@keyframes glowPulse {
	0%, 100% { 
		opacity: 0.15;
		transform: scaleY(1);
	}
	50% { 
		opacity: 0.4;
		transform: scaleY(1.4);
	}
}

/* Disable pulse glow on mobile */
@media (max-width: 768px) {
	.brands.pulse-border::before {
		display: none;
	}
}
  
.brands span {
    display: block;
    margin-bottom: 15px;
  }
  
/* Original brand logos layout - removed as no longer needed */

/* JavaScript Carousel Brand Logos */
.brand-logos {
	overflow: hidden;
	width: 100%;
	position: relative;
	margin-top: 20px;
	padding: 20px 0;
}

.brand-logos::before,
.brand-logos::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 40px;
	z-index: 2;
	pointer-events: none;
}

.brand-logos::before {
	left: 0;
	background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
}

.brand-logos::after {
	right: 0;
	background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
}

.brand-carousel {
	display: flex;
	align-items: center;
	gap: 60px;
	width: fit-content;
	transition: none;
	padding: 0 100px;
}

.brand-carousel img {
	flex-shrink: 0;
	width: auto;
}

/* Original individual brand logo sizing - removed as no longer needed */

/* Carousel individual brand logo sizing */
.brand-carousel img[src*="borgwarner"] {
	height: calc(var(--borgwarner-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="bosch"] {
	height: calc(var(--bosch-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="continental"] {
	height: calc(var(--continental-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="delphi"] {
	height: calc(var(--delphi-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="denso"] {
	height: calc(var(--denso-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="garrett"] {
	height: calc(var(--garrett-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="holset"] {
	height: calc(var(--holset-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="ihi"] {
	height: calc(var(--ihi-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="mitsubishi"] {
	height: calc(var(--mitsubishi-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="stanadyne"] {
	height: calc(var(--stanadyne-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="yanmar"] {
	height: calc(var(--yanmar-size) * var(--brand-logo-scale));
}

.brand-carousel img[src*="zexel"] {
	height: calc(var(--zexel-size) * var(--brand-logo-scale));
}

/* Large screen font adjustments */
@media (min-width: 1440px) and (max-resolution: 150dpi) {
	.announcement h1 {
		font-size: 2.2rem !important;
	}

	.announcement p {
		font-size: 1.1rem !important;
	}

	.main-logo {
		width: 700px;
	}
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
	.hero-section {
		min-height: 100vh;
	}

	.hero-section .container {
		padding: 40px 20px 20px 20px;
	}

	.scroll-button {
		width: 45px;
		height: 45px;
	}
	
	.scroll-indicator {
		bottom: 20px;
	}
	
	.back-to-top {
		bottom: 20px;
		right: 20px;
	}

	.main-logo {
		width: 90%;
		max-width: 400px;
	}

    .announcement h1 {
      font-size: 1.3rem;
    }
  
    .announcement p {
      font-size: 0.85rem;
    }
    
    .header-text {
      font-size: 1.6rem;
    }
    
    .header-text-larger {
      font-size: 1.8rem;
    }
  
    .images img {
      max-width: 100%;
    }
  
    .links img {
      max-width: 120px;
      height: auto;
    }

	/* Mobile carousel adjustments */
	.brand-carousel {
		gap: 40px;
		padding: 0 50px;
	}
	
	/* Remove fade effect on mobile for better clarity */
	.brand-logos::before,
	.brand-logos::after {
		display: none;
	}

	.brand-carousel img[src*="borgwarner"] {
		height: calc(var(--borgwarner-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="bosch"] {
		height: calc(var(--bosch-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="continental"] {
		height: calc(var(--continental-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="delphi"] {
		height: calc(var(--delphi-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="denso"] {
		height: calc(var(--denso-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="garrett"] {
		height: calc(var(--garrett-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="holset"] {
		height: calc(var(--holset-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="ihi"] {
		height: calc(var(--ihi-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="mitsubishi"] {
		height: calc(var(--mitsubishi-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="stanadyne"] {
		height: calc(var(--stanadyne-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="yanmar"] {
		height: calc(var(--yanmar-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.brand-carousel img[src*="zexel"] {
		height: calc(var(--zexel-size) * var(--brand-logo-scale) * var(--mobile-brand-logo-scale));
	}

	.hero-section::after {
		width: 60px;
		height: 48px;
		bottom: 80px;
		right: 15px;
	}

	.links {
		gap: 20px;
	}

	@media (max-width: 480px) {
		.hero-section .container {
			padding: 30px 20px 20px 20px;
		}

		.main-logo {
			width: 95%;
			max-width: 300px;
		}

		.announcement h1 {
			font-size: 1.1rem;
		}

		.announcement p {
			font-size: 0.8rem;
			padding: 0 5px;
		}
		
		.header-text {
			font-size: 1.4rem;
		}
		
		.header-text-larger {
			font-size: 1.6rem;
		}

		.links {
			gap: 15px;
			flex-direction: column;
			align-items: center;
		}

		.btn-link {
            width: 100px;
		}
		
		.hero-section::after {
			width: 50px;
			height: 40px;
			bottom: 60px;
			right: 10px;
		}
		
		.scroll-button {
			width: 40px;
			height: 40px;
		}
		
		.scroll-indicator {
			bottom: 15px;
		}
		
		.back-to-top {
			bottom: 15px;
			right: 15px;
		}
	}
}

.btn-link {
	background-color: white;
	border-radius: 15px;
	width: 250px;
	height: 60px;
	transition: outline-width 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	outline: 0px solid transparent;
	outline-offset: -1px;
}

.mtq-border {
	border: 2px solid var(--mtq-yellow);
}

.cornell-border {
	border: 2px solid var(--cornell-blue);
}

.btn-link:hover.mtq-border {
	outline: 2px solid var(--mtq-yellow);
	box-shadow: 0 4px 12px rgba(248, 192, 20, 0.4);
	transform: translateY(-3px);
}

.btn-link:hover.cornell-border {
	outline: 2px solid var(--cornell-blue);
	box-shadow: 0 4px 12px rgba(100, 150, 255, 0.6);
	transform: translateY(-3px);
}

.btn-link img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

/* Map Section Styles */
.map-section {
	margin-top: 0;
	background: #f5f5f5;
}

.map-header {
	background-color: #000;
	color: white;
	padding: 5px 0;
	text-align: center;
}

.map-footer {
    background-color: #000;
	height: 50px;
    border-bottom: 5px solid white;
}

footer {
    background-color: var(--mtq-yellow);
    height: 70px;
    color: black;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.header-text {
	margin: 0;
	font-size: 2rem;
	font-weight: 900 !important;
}

.header-text-larger {
	font-size: 2.25rem !important;
}

.map-container {
	display: flex;
	height: 820px;
	background: white;
	width: 100%;
}

.location-sidebar {
	width: 350px;
	background: #f8f9fa;
	border-right: 1px solid #ddd;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.search-container {
	padding: 20px;
	border-bottom: 1px solid #ddd;
	background: #f8f9fa;
	position: sticky;
	top: 0;
	z-index: 10;
	flex-shrink: 0;
}

.search-container input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

.location-list {
	padding: 0;
	overflow-y: auto;
	flex: 1;
}

.location-item {
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	transition: background-color 0.2s;
	text-align: left;
}

.location-item:hover {
	background-color: #e9ecef;
}

.location-item.active {
	background-color: var(--mtq-yellow);
	color: #000;
}

.location-item h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: bold;
	color: #333;
}

.location-item.active h4 {
	color: #000;
}

.location-item p {
	margin: 4px 0;
	font-size: 12px;
	color: #666;
	line-height: 1.3;
}

.location-item.active p {
	color: #333;
}

.map-wrapper {
	flex: 1;
	position: relative;
	background: #87CEEB;
	height: 100%;
}

#map {
	width: 100%;
	height: 100%;
}

.map-watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.6);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	pointer-events: none;
	letter-spacing: 2px;
}

/* Larger screens - increase location detail font sizes */
@media (min-width: 769px) {
	.location-item h4 {
		font-size: 15px;
	}
	
	.location-item p {
		font-size: 13px;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.map-container {
		flex-direction: column;
	}
	
	.location-sidebar {
		width: 100%;
		height: 300px;
		order: 2;
	}
	
	.map-wrapper {
		order: 1;
		height: 500px;
	}
	
	#map {
		height: 100%;
	}
	
	.map-watermark {
		font-size: 2rem;
	}
	
	.map-header h2 {
		font-size: 1.5rem;
	}

    footer {
        font-size: 1rem;
    }
}





/* Custom MTQ Yellow Map Markers */
.mtq-marker {
	background: transparent;
	border: none;
}

.mtq-marker-pin {
	position: relative;
	width: 30px;
	height: 30px;
	background-color: var(--mtq-yellow);
	border: 3px solid #000;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mtq-marker-pin::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	background-color: #000;
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

/* Reman location markers with red center */
.mtq-marker-pin-reman {
	position: relative;
	width: 30px;
	height: 30px;
	background-color: var(--mtq-yellow);
	border: 3px solid #000;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mtq-marker-pin-reman::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	background-color: #dc3545;
	border: 1px solid #000;
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.mtq-marker-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	background-color: #000;
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

/* Red dot indicator for reman locations */
.reman-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #dc3545;
	border: 1px solid #000;
	border-radius: 50%;
	margin-right: 8px;
	vertical-align: baseline;
	position: relative;
	top: 0.5px;
}

/* Map interaction overlay */
.map-interaction-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	pointer-events: none;
	animation: fadeInOut 2s ease-in-out;
}

.overlay-content {
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 12px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInOut {
	0% { opacity: 0; }
	15% { opacity: 1; }
	85% { opacity: 1; }
	100% { opacity: 0; }
}

/* Location Links Styling */
.location-item a,
.marker-popup a {
	color: var(--mtq-yellow);
	text-decoration: none;
	transition: color 0.2s ease;
}

.location-item a:hover,
.marker-popup a:hover {
	color: #e6ad12;
	text-decoration: underline;
}

.location-item.active a {
	color: #000;
	font-weight: 500;
}

.location-item.active a:hover {
	color: #333;
}

/* Secret Credits Popup */
.credits-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	animation: fadeIn 0.3s ease;
}

.credits-content {
	background: white;
	border-radius: 12px;
	padding: 0;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: slideIn 0.3s ease;
	overflow: hidden;
}

.credits-header {
	background: var(--mtq-yellow);
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
}

.credits-header h3 {
	margin: 0;
	color: #000;
	font-size: 1.4rem;
	font-weight: 600;
}

.credits-close {
	background: none;
	border: none;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	color: #000;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s ease;
}

.credits-close:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.credits-body {
	padding: 25px;
	text-align: left;
}

.credit-item {
	margin-bottom: 15px;
	font-size: 1rem;
	line-height: 1.4;
	color: #000;
	text-align: left;
}

.credit-item strong {
	color: #000;
	font-weight: 600;
}

.credit-footer {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #eee;
	text-align: center;
}

.credit-footer small {
	color: #666;
	font-style: italic;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideIn {
	from { 
		opacity: 0;
		transform: scale(0.8) translateY(-20px);
	}
	to { 
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* Mobile responsive for credits popup */
@media (max-width: 480px) {
	.credits-content {
		width: 95%;
		margin: 20px;
	}
	
	.credits-header {
		padding: 15px;
	}
	
	.credits-header h3 {
		font-size: 1.2rem;
	}
	
	.credits-body {
		padding: 20px;
	}
}

/* Redirect Notification Styles */
.redirect-notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.9);
	color: white;
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 193, 7, 0.3);
	z-index: 9999;
	max-width: 320px;
	animation: slideInUp 0.3s ease-out;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.redirect-notification.hidden {
	display: none;
}

.redirect-content {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.redirect-icon {
	font-size: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.redirect-text p {
	margin: 0 0 10px 0;
	font-size: 14px;
	line-height: 1.4;
	color: #ffffff;
}

.redirect-text #countdown {
	color: #FFC107;
	font-weight: bold;
}

.cancel-btn {
	background: transparent;
	border: 1px solid #FFC107;
	color: #FFC107;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.cancel-btn:hover {
	background: #FFC107;
	color: #000;
}

@keyframes slideInUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Mobile responsiveness for redirect notification */
@media (max-width: 768px) {
	.redirect-notification {
		bottom: 15px;
		right: 15px;
		left: 15px;
		max-width: none;
		padding: 14px 16px;
	}
	
	.redirect-content {
		gap: 10px;
	}
	
	.redirect-icon {
		font-size: 20px;
	}
	
	.redirect-text p {
		font-size: 13px;
	}
	
	.cancel-btn {
		font-size: 11px;
		padding: 5px 10px;
	}
}

@media (max-width: 480px) {
	.redirect-notification {
		bottom: 10px;
		right: 10px;
		left: 10px;
		padding: 12px 14px;
	}
	
	.redirect-text p {
		font-size: 12px;
	}
}

/* Utility Classes */
@media (max-width: 768px) {
	.mobile-hide {
		display: none !important;
	}
}