.pwa-notification {
  position: fixed;
  bottom: -400px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 999;
  transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.pwa-notification.show {
  bottom: 0;
}

.pwa-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pwa-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  animation: pulse 2s ease-in-out infinite;
}

.pwa-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pwa-text {
  flex: 1;
  min-width: 200px;
}

.pwa-text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.pwa-text p {
  margin: 4px 0 0 0;
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.4;
}

.pwa-btn-install {
  flex-shrink: 0;
  background: white;
  color: #667eea;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pwa-btn-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pwa-btn-install:active {
  transform: translateY(0);
}

.pwa-btn-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.pwa-btn-close:hover {
  opacity: 1;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@media (max-width: 768px) {
  .pwa-notification {
    padding: 12px 16px;
  }

  .pwa-content {
    gap: 12px;
    padding: 0;
  }

  .pwa-icon {
    width: 40px;
    height: 40px;
  }

  .pwa-icon svg {
    width: 24px;
    height: 24px;
  }

  .pwa-text h3 {
    font-size: 14px;
  }

  .pwa-text p {
    font-size: 12px;
  }

  .pwa-btn-install {
    padding: 8px 20px;
    font-size: 13px;
    flex-basis: 100%;
    order: 3;
  }

  .pwa-btn-close {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}
/* Manual Installation Guide Styles - Disabled to avoid duplicate banners on mobile */
.pwa-manual-guide {
  display: none !important;
}
