/* website/style.css */
:root {
  --primary-color: #ec4899;
  --primary-light: #fbcfe8;
  --primary-hover: #db2777;
  --bg-color: #fdf2f8;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --card-bg: rgba(255, 255, 255, 0.8);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
}

header {
  background-color: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--primary-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(236, 72, 153, 0.05);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover, nav a.active {
  color: var(--primary-color);
}

.btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  box-shadow: none;
}

main {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 24px;
}

footer {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
  border-top: 1px solid var(--primary-light);
  margin-top: 60px;
}

.hero {
  text-align: center;
  padding: 60px 0;
}

.hero h1 {
  font-size: 48px;
  color: var(--primary-hover);
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.1);
  transition: transform 0.2s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--primary-hover);
  font-size: 20px;
}

/* Download Page */
.download-section {
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.ad-slot {
  background: #fdf2f8;
  border: 2px dashed #fbcfe8;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: var(--primary-hover);
  margin: 40px auto;
  max-width: 800px;
  font-weight: bold;
}
