body {
	/*background: linear-gradient(-45deg, #000, #000, #001);*/
	background: linear-gradient(-45deg, #4285F4, #4285F4, #4285F4);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* CSS */
@media (max-width: 767px) {
	.desktop-only {
	  display: none;
	}
  
	.mobile-only {
	  display: block;
	}

	.short-item {
		flex: 0 0 auto;
		width: 390px;
		height: 100%;
		scroll-snap-align: start;
		margin: 0 auto; /* Add this line to center horizontally */
	}

	.trust-banner {
		width:100% !important;
	}

	.pre-order {
		font-size: 10px;
	}

  }
  
  @media (min-width: 768px) {
	.desktop-only {
	  display: block;
	}
  
	.mobile-only {
	  display: none;
	}
  }

  img.g-apps {
	background-image: url('bg-strip.png');
	width: 120%;
    height: auto;
	z-index: 1;
  }

  .fade-image-container {
	position: relative;
	display: inline-block;
}

.fade-image {
	display: block;
	width: 100%;
	height: auto;
}

.fade-image-container::before, .fade-image-container::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30%; /* Adjust width for the fade effect */
	pointer-events: none; /* Ensure it doesn't block interactions */
}

.fade-image-container::before {
	left: 0;
	background: linear-gradient(to right, #4285F4, rgba(255, 255, 255, 0));
}

.fade-image-container::after {
	right: 0;
	background: linear-gradient(to left, #4285F4, rgba(255, 255, 255, 0));
}

.faq-question {
	cursor: pointer;
	background-color: #f8f9fa;
	padding: 15px;
	margin: 5px 0;
	border: 1px solid #dee2e6;
	border-radius: 4px;
}
.faq-answer {
	cursor: pointer;
	background-color: #d6d8d9;
	padding: 15px;
	display: none;
	margin: 5px 0;
	border: 1px solid #bac3cc;
	border-radius: 4px;
}
.shorts-container {
	height: 100vh;
	display: flex;
	overflow-x: none;
	scroll-snap-type: x mandatory;
}
.short-item {
	flex: 0 0 auto;
	width: 388px;
	height: 100%;
	scroll-snap-align: start;
}
.short-item iframe {
	height: 100%;
}
.comparison-container {
	overflow-x: auto;
	white-space: nowrap;
	padding: 20px 0;
}
.tablet-item {
	display: inline-block;
	padding: 15px;
	border-radius: 10px;
	margin-right: 20px;
	min-width: 250px;
	vertical-align: top;
}
.tablet-item:last-child {
	margin-right: 0;
}
.tablet-name {
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 10px;
}
.feature-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
	white-space: normal;
}
.feature-list li {
	margin-bottom: 5px;
}
.feature-icon {
	width: 20px;
	text-align: center;
	margin-right: 10px;
}
.highlight {
	background-color: #d4edda;
}
.aikidsablet {
	background-color: #ffffff;
}
.f-label {
	background-color: #ffffff;
}
.amazon {
	background-color: #ffffff;
}
.leapfrog {
	background-color: #ffffff;
}
.samsung {
	background-color: #ffffff;
}
.lexibook {
	background-color: #ffffff;
}
.button-group {
	display: flex;
	background-color: white;
	border-radius: 25px;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button {
	padding: 12px 24px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-weight: bold;
	transition: all 0.3s ease;
}
.button:not(:last-child) {
	border-right: 1px solid #e0e0e0;
}
.pre-order {
	background: linear-gradient(45deg, #FF4500, #FF8C00);
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	position: relative;
	overflow: hidden;
}
.pre-order:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(255, 69, 0, 0.3);
}
.pre-order::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(45deg);
	transition: all 0.3s ease;
}
.pre-order:hover::after {
	left: 100%;
}
.trust-banner {
	background-color: #4169E1;
	color: white;
	padding: 15px;
	border-radius: 5px;
	text-align: center;
	width: 64%;
	box-sizing: border-box;
	font-size: 18px;
}
.stars {
	color: #FFD700;
	font-size: 24px;
}

a {
	text-decoration: none !important;
}

.custom-modal {
	background-color: rgba(0, 0, 0, 0.5);
}
.custom-modal-content {
	background-color: white;
	border-radius: 10px;
	max-width: 500px;
}
.feature-icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
.gradient-button {
	background: linear-gradient(45deg, #FF4500, #FF8C00);
	border: none;
}