/**
 * Styles for browser users
 */

/* Body classes for browser */
body.web-browser {
  /* Custom browser styles */
}

/* Hide app-only content */
.web-browser .app-only-content {
  display: none !important;
}

/* Protected content preview with blur */
.browser-only .protected-content-preview {
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}

.browser-only .protected-content-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

/* Download prompt styles */
.download-app-prompt {
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
  border: 1px solid #e5e7eb;
  padding: 48px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin: 20px 0;
}

.download-app-prompt h3 {
  color: #111827;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.download-app-prompt p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.download-app-prompt .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1f2937;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.download-app-prompt .btn:hover {
  background: #111827;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hide download buttons in browser */
.web-browser .download-link,
.web-browser .download-btn,
.web-browser a[download] {
  display: none !important;
}