/* Zeppi - Simple, Clean, Minimal */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  background: #FFFDF9;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main Container */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: calc(100vh - 60px);
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1000px;
  width: 100%;
}

/* Mascot Side */
.mascot-side {
  flex-shrink: 0;
}

.mascot-img {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(245, 165, 36, 0.15));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Content Side */
.content-side {
  max-width: 420px;
}

.tagline {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.brand {
  font-size: 3rem;
  font-weight: 900;
  color: #F5A524;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.headline {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* App Store Button */
.app-store-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.app-store-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

.app-store-btn svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Footer */
.footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #888;
}

.footer-left {
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #F5A524;
}

/* Legal Pages */
.legal-page {
  flex: 1;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.legal-page .last-updated {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}

.legal-page p {
  color: #555;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-page ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-page li {
  color: #555;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-page a {
  color: #F5A524;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Back link for legal pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #F5A524;
}

/* Responsive */
@media (max-width: 800px) {
  .container {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .mascot-img {
    width: 180px;
  }

  .content-side {
    max-width: 100%;
  }

  .headline {
    font-size: 1.6rem;
  }

  .brand {
    font-size: 2.5rem;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
