* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
@font-face {
	font-family: 'SF Rounded';
	src: url('./fonts/SF-Pro-Rounded-Regular.otf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SF Rounded';
	src: url('./fonts/SF-Pro-Rounded-Medium.otf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SF Rounded';
	src: url('./fonts/SF-Pro-Rounded-Bold.otf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SF Pro';
	src: url('./fonts/SF-Pro-Display-Medium.otf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SF Pro';
	src: url('./fonts/SF-Pro-Display-Bold.otf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
body {
	font-family: 'SF Rounded', sans-serif;
	font-weight: 500;
	height: 100vh;
	/* display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start; */
}
.container {
	padding-top: 90px;
}
.link, a:visited {
	text-decoration: none !important;
	color: #ffffff;
	border-radius: 8px;
	padding: 5px;
	margin-right: 10px;
	background-color: #2563eb;
}
header {
	position: fixed;
	font-size: 20px;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100vw;
	padding: 15px;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;

	/* box-shadow: 0px 8px 24px rgba(149, 149, 149, 0.15); */
	box-shadow: 0 1px 25px rgba(102, 126, 234, 0.15);

}
.left {
	display: flex;
	align-items: center;
}
#install-pwa-container {
	display: none;
}
.left > img {
	width: 30px;
	height: 30px;
	margin-right: 5px;
	filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.5));
}
.left > p {
	font-weight: 500;
	margin-left: 5px;
	font-size: 25px;
	filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.1));
	
	/* box-shadow: 0 1px 15px rgba(102, 126, 234, 0.36); */
}
footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	font-size: 13px;
	color: #999;
}
.center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	min-height: 450px;
}
.location-selector {
	font-family: 'SF Rounded', sans-serif;
	font-size: 20px;
	font-weight: 500;
	padding: 16px 50px 16px 24px;
	border: none;
	border-radius: 16px;
	background-color: #fff;
	color: #000;
	cursor: pointer;
	outline: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 15px rgba(102, 126, 234, 0.36);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	min-width: 250px;

	margin-bottom: 20px;
}
.location-selector:hover {
	transform: translateY(-2px);
	box-shadow: 0 1px 20px rgba(102, 126, 234, 0.372);
}
.location-selector:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5), 0 0 0 4px rgba(102, 126, 234, 0.2);
}
.location-selector:active {
	transform: translateY(0);
}

.center > div {
	font-size: 50px;
	margin-bottom: 5px;
	transition: opacity 0.3s ease-in-out;
}
.center-image {
	margin-top: 15px;
	width: 200px;
	transition: opacity 0.3s ease-in-out;
}
.center-image {
	-webkit-animation: mover 1s infinite  alternate;
	animation: mover 1s infinite  alternate;
  animation-timing-function: ease;
}
@keyframes mover {
	0% { transform: translateY(0); }
	100% { transform: translateY(-10px); }
}
.fade-out {
	opacity: 0;
}
.fade-in {
	opacity: 1;
}
.countdown {
	font-size: 22px !important;
}
/* .location, .status {
	height: 50px;
} */


/* CSS - Liquid Glass Effect */
#custom-install-trigger {
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  /* box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 1px 0 rgba(255, 255, 255, 0.2) inset; */
	box-shadow: 0 1px 15px rgba(102, 126, 234, 0.2);
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Liquid glass shine effect */
#custom-install-trigger::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 0;
}

/* Ensure content is above shine effect */
#custom-install-trigger > * {
  position: relative;
  z-index: 1;
}

#custom-install-trigger:hover::before {
  left: 100%;
}
#custom-install-trigger:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-0.5px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 20px rgba(102, 126, 234, 0.1);
}

.download {
	width: 15px;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.install-banner {
	position: fixed;
	left: 50%;
	bottom: 20px;
	width: min(420px, calc(100% - 32px));
	transform: translate(-50%, calc(100% + 24px));
	display: flex;
	align-items: stretch;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 18px;
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
	padding: 18px 20px;
	gap: 16px;
	opacity: 0;
	pointer-events: none;
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
	z-index: 1000;
}
.install-banner.is-visible {
	transform: translate(-50%, 0);
	opacity: 1;
	pointer-events: auto;
}
.install-banner__content {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 16px;
}
.install-banner__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: #0f172a;
}
.install-banner__title {
	font-size: 16px;
	font-weight: 600;
}
.install-banner__subtitle {
	font-size: 14px;
	color: #475569;
}
.install-banner__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}
.install-banner__button {
	border: none;
	border-radius: 999px;
	font-family: 'SF Rounded', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 18px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.install-banner__button:focus-visible {
	outline: 3px solid rgba(14, 116, 144, 0.35);
	outline-offset: 2px;
}
.install-banner__button--primary {
	background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
	color: #fff;
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}
.install-banner__button--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}
.install-banner__button--secondary {
	background: rgba(148, 163, 184, 0.15);
	color: #475569;
}
.install-banner__button--secondary:hover {
	background: rgba(148, 163, 184, 0.25);
}
@media (max-width: 480px) {
	.install-banner {
		padding: 16px;
		gap: 12px;
	}
	.install-banner__content {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.install-banner__actions {
		width: 100%;
		justify-content: flex-end;
	}
}


/* CSS - Liquid Glass Effect */
.liquid-glass {
  appearance: none;
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 1px 15px rgba(102, 126, 234, 0.2);
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  /* position: relative; */
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
	z-index: 3;
}
/* Liquid glass shine effect */
.liquid-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 2;
}
/* Ensure content is above shine effect */
.liquid-glass > * {
  position: relative;
  z-index: 1;
}