.mobile-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 100vh;
}

.mobile-popup.active {
  display: flex;
}

.mobile-popup-content {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 28rem;
  width: 100%;
  animation: fadeIn 0.2s ease-out;
  border: 1px solid rgba(197, 222, 66, 0.2);
}

.mobile-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  color: #c5de42;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-popup-close:hover {
  color: white;
  background: rgba(197, 222, 66, 0.1);
}

.mobile-popup-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(197, 222, 66, 0.2);
  color: #c5de42;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mobile-popup-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.mobile-popup-text {
  color: #a1a1aa;
  margin-bottom: 1.5rem;
}

.mobile-popup-button {
  background: #c5de42;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-popup-button:hover {
  background: rgba(197, 222, 66, 0.9);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
} 