body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

span {
  display: inline-block;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #ffffff;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInDown 1s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0.1;
  z-index: -1;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}

.logo span {
  color: #b300ff;
}

.nav ul {
  display: flex;
  gap: 20px;
}

.nav ul li a {
  font-size: 18px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #b300ff;
  transition: width 0.3s ease;
}

.nav ul li a:hover::after {
  width: 100%;
}

.nav ul li a:hover {
  color: #b300ff;
  transform: translateY(-3px);
}

.hero {
  text-align: center;
  padding: 150px 20px;
  background: linear-gradient(to bottom, #464646, #0f0f0f);
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
  animation: slideInFromLeft 1.2s ease-in-out;
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
  animation: fadeIn 2s ease-in-out;
}

.btn {
  padding: 12px 24px;
  font-size: 18px;
  background-color: #b300ff;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: #8e0090;
  transform: scale(1.1);
}

.features {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #0f0f0f, #050505);
  animation: fadeInUp 1s ease-in-out;
}

.features h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}
.feature-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #242424;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 250px;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.feature-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  filter: blur(5px); 
  z-index: 0;
}

.feature-card-content {
  position: relative;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); 
  width: 100%;
  z-index: 1;
  color: white;
  text-align: center;
  backdrop-filter: blur(0.5px); 
}

.feature-card-content h3 {
  font-size: 22px;
  margin: 0;
}

.feature-card-content p {
  font-size: 16px;
  margin: 10px 0 0;
}


.download {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #050505, #050505);
  animation: fadeInUp 1s ease-in-out;
}

.download h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.image-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.interactable-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  position: relative;
  will-change: transform, box-shadow;
}

.interactable-image:hover {
  transform: scale(0.9); 
}

.image-container {
  perspective: 800px; 
}

.interactable-image {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}



.faq {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #050505, #000000);
  animation: fadeInUp 1s ease-in-out;
}

.faq h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.faq-item {
  padding: 25px;
  background-color: #050505;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.faq-item h3 {
  font-size: 22px;
  margin: 0;
}

.faq-item p {
  font-size: 16px;
  margin: 10px 0 0;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes refract {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(10px); }
  50% { transform: translateX(-10px) translateY(-10px); }
  75% { transform: translateX(10px) translateY(10px); }
  100% { transform: translateX(0) translateY(0); }
}