﻿/* ManifestApp Test Application Styles */

#testapp-root-2 {
  max-width: 800px;
  margin: 40px auto;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.manifest-app-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeIn 0.6s ease-in;
}

.manifest-app-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.8s ease-out;
}

.manifest-app-description {
  color: #f0f0f0;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
  animation: slideUp 0.8s ease-out;
}

.manifest-app-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

.manifest-app-info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.manifest-app-info-item {
  color: #f0f0f0;
  font-size: 0.95rem;
  margin: 8px 0;
  opacity: 0.9;
}

.manifest-app-info-item strong {
  color: #ffffff;
  font-weight: 600;
}

a {
  color: #ff6a00;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .manifest-app-container {
    padding: 30px 20px;
  }

  .manifest-app-title {
    font-size: 2rem;
  }

  .manifest-app-description {
    font-size: 1rem;
  }
}

