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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #f0f2f5;
  min-height: 100vh;
  color: #374151;
}

#app {
  min-height: 100vh;
}

.home-screen {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
}

.home-container {
  width: 100%;
  max-width: 700px;
}

.home-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.home-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-item {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.home-item:active {
  transform: translateY(-2px);
}

.home-item-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.home-item-description {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

.home-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .home-screen {
    padding: 24px 16px;
  }

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

  .home-title {
    font-size: 1.6rem;
  }
}
