/* Welcome page styles */
.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  padding-bottom: 2rem;
}

.logo {
  margin-bottom: 2rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.coming-soon-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.coming-soon-container p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin-bottom: 2rem;
}

.coming-soon {
  font-size: 1.5rem;
  color: #ff6b6b;
  font-weight: bold;
  border: 2px solid #ff6b6b;
  padding: 0.5rem 2rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 1rem;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #007AFF;
  color: white;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
  min-width: 200px;
  justify-content: center;
}

.app-store-link::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.play-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #01875f;
  color: white;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(1, 135, 95, 0.3);
  min-width: 200px;
  justify-content: center;
}

.play-store-link::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3,20.5V3.5C3,2.91 3.34,2.39 3.84,2.15L13.69,12L3.84,21.85C3.34,21.61 3,21.09 3,20.5M16.81,15.12L6.05,21.34L14.54,12.85L16.81,15.12M20.16,10.81C20.5,11.08 20.75,11.5 20.75,12C20.75,12.5 20.53,12.9 20.18,13.18L17.89,14.5L15.39,12L17.89,9.5L20.16,10.81M6.05,2.66L16.81,8.88L14.54,11.15L6.05,2.66Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.app-store-link:hover {
  background-color: #0056CC;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 122, 255, 0.4);
  color: white;
  text-decoration: none;
}

.play-store-link:hover {
  background-color: #016a4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 135, 95, 0.4);
  color: white;
  text-decoration: none;
}

@media (min-width: 600px) {
  .app-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Privacy page styles */
.privacy-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: left;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  padding: 2rem;
  background-color: #fafafa;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.header .logo {
  margin-bottom: 1rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.header h1 {
  font-size: 2rem;
  margin: 0;
  color: #333;
}

.content {
  max-width: 800px;
  width: 100%;
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.content h2 {
  font-size: 1.5rem;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ff6b6b;
  padding-bottom: 0.5rem;
}

.content h2:first-child {
  margin-top: 0;
}

.content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.content ul {
  color: #555;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.5rem;
}

.highlight {
  background-color: #fff3cd;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #ff6b6b;
  margin: 1.5rem 0;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #ff6b6b;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: 2px solid #ff6b6b;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.back-link:hover {
  background-color: #ff6b6b;
  color: white;
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 1rem;
  }
  
  .content {
    padding: 1.5rem;
  }
}

/* Footer styles */
.footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-link:hover {
  color: #ff6b6b;
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.05);
}

.footer-link.current {
  color: #ff6b6b;
  font-weight: bold;
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
}

@media (max-width: 768px) {
  .footer {
    gap: 1rem;
    padding: 1.5rem 0;
  }
  
  .footer-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}
