.grey-tint {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.grey-tint:hover {
  filter: grayscale(0%);
}

.store-link {
  display: inline-block;
  margin: 20px 0;
}

.store-icon {
  color: #888;
  transition: color 0.3s ease;
}

.store-link:hover .store-icon {
  color: #2a2a2a;
}

.list-unstyled {
  padding-left: 0;
  margin-top: 20px;
}

.list-unstyled li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.list-unstyled li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #2a2a2a;
}

.h4 {
  margin-bottom: 25px;
  font-weight: 600;
}

.logo-row-extra-space {
  margin-bottom: 60px;
}

.detect-link {
  color: #888;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.detect-link:hover {
  color: #2a2a2a;
}

.mobile-works-button {
  display: none;
  background: white;
  color: black;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding-right: 40px;
  z-index: 10;
}

.mobile-works-button:after {
  content: '→';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.mobile-works-button:hover {
  text-decoration: none;
  color: black;
}

.hero-full-container {
  background: transparent;
  position: relative;
  z-index: 1;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mobile-works-button:hover:after {
  transform: translateY(-50%) translateX(5px);
}

@media (max-width: 768px) {
  .mobile-works-button {
    display: inline-block;
  }
}

.card-container-full-width {
  width: 100%;
}

