/* Desktop Blocker - Mobile-First Overlay */
#desktopBlocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000 !important;
  background-color: #000000 !important;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.desktop-blocker-content {
  text-align: center;
  color: white;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.desktop-blocker-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 30px auto;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.desktop-blocker-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.desktop-blocker-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.desktop-blocker-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-badge {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.store-badge:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .desktop-blocker-content {
    padding: 30px 20px;
  }
  
  .desktop-blocker-title {
    font-size: 2rem;
  }
  
  .desktop-blocker-text {
    font-size: 1rem;
  }
  
  .desktop-blocker-logo {
    width: 80px;
  }
  
  .store-badge {
    height: 50px;
  }
}
