/* PicSafe site styles - Kawaii Bear Theme */
.hero {
  text-align: center;
  padding: 48px 20px 36px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1::after {
  content: ' 🛡️';
  -webkit-text-fill-color: initial;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.tool-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  text-align: center;
}

.tool-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
  background: var(--surface-hover);
}

.tool-coming-soon {
  opacity: 0.5;
  pointer-events: none;
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  display: block;
}

.tool-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tool-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.badge {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.seo-content ul {
  list-style: disc;
  padding-left: 20px;
}

.seo-content li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* Legal page styles */
.legal-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 20px;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 24px 0 12px;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 20px 0 8px;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 28px 12px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
}
