* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
}

header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-size: 1.25rem;
  color: #f0f0f0;
  font-weight: 300;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.app-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.app-card.coming-soon {
  opacity: 0.7;
  border: 2px dashed #ddd;
}

.app-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.app-card h2 {
  font-size: 1.75rem;
  color: #1e90ff;
  margin-bottom: 16px;
}

.app-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.app-link {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg, #1e90ff 0%, #6ec6f7 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.app-link:hover {
  background: linear-gradient(90deg, #1873cc 0%, #5ab3e8 100%);
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px;
  color: #fff;
  font-size: 0.95rem;
}

footer a {
  color: #b6e0fe;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    padding: 24px;
  }
}
