:root {
  --accent: #18181b; /* zinc 900 */
  --accent-light: #27272a; /* zinc 800 */
  --accent-foreground: #ffffff;
  --bg-color: #fafafa;
  --card-bg: #ffffff;
  --text-color: #27272a;
  --text-muted: #71717a;
  --border-color: #e4e4e7;
  --max-width: 800px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-color);
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 80px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.play-badge {
  display: inline-block;
  height: 60px;
  transition: transform 0.2s ease;
}

.play-badge:hover {
  transform: scale(1.05);
}

.play-badge img {
  height: 100%;
}

/* Screenshots Showcase */
.screenshot-showcase {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 0;
  margin: 40px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.screenshot-showcase::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.screenshot-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Grid */
.features {
  margin-bottom: 80px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 32px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Contact */
.contact {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
}

.contact p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-contact {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-foreground);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.btn-contact:hover {
  background-color: var(--accent-light);
}

/* Legal Pages shell */
.legal-content {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 20px;
}

.legal-content h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.8px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.legal-content p, .legal-content ul, .legal-content table {
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.legal-content th, .legal-content td {
  padding: 10px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.legal-content th {
  background-color: var(--bg-color);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 24px;
}

.back-link:hover {
  color: var(--text-color);
}

/* Footer */
footer {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  margin-top: 80px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text-color);
}

.copyright {
  color: var(--text-muted);
  font-size: 13px;
}
