:root {
  --primary-color: #6143FF;
  --secondary-color: #311B92;
  --text-color: #f1f1f1;
  --bg-color: #0d091a;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

nav {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0; width: 100%; z-index: 10;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.5rem; font-weight: 700; color: white; text-decoration: none;
}

.logo img { width: 32px; height: 32px; border-radius: 8px; }

.nav-links { display: flex; gap: 20px; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: white; }

.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  background: radial-gradient(circle at center, rgba(97, 67, 255, 0.2) 0%, var(--bg-color) 70%), url('assets/hero.png') no-repeat center center/cover;
  padding: 0 20px; position: relative;
}

.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 9, 26, 0.75); z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; margin-top: 60px; }

h1 {
  font-size: 4rem; font-weight: 800; margin-bottom: 20px;
  background: linear-gradient(135deg, #FFF 0%, #B4A2FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1;
}

.subtitle { font-size: 1.5rem; color: #c0b3ff; margin-bottom: 40px; max-width: 600px; margin-inline: auto; }

.app-store-button { display: inline-block; transition: transform 0.2s; }
.app-store-button:hover { transform: translateY(-2px); }
.app-store-button img { height: 50px; }

.page-container {
  max-width: 800px; margin: 120px auto 60px; padding: 40px;
  background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: 20px; backdrop-filter: blur(10px);
}

.page-container h1 { font-size: 2.5rem; margin-bottom: 10px; color: white; }
.page-container p { margin-bottom: 20px; color: #ccc; }
.page-container h2 { font-size: 1.5rem; margin: 30px 0 15px; color: white; }
.page-container ul { margin: 0 0 20px 20px; color: #ccc; }
.page-container li { margin-bottom: 10px; }
.page-container a { color: var(--primary-color); text-decoration: none; }
.page-container a:hover { text-decoration: underline; }

footer { text-align: center; padding: 30px 20px; color: #888; font-size: 0.9rem; background: rgba(0,0,0,0.3); }
footer a { color: #888; text-decoration: none; margin: 0 10px; }
footer a:hover { color: white; }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .subtitle { font-size: 1.1rem; }
  .page-container { padding: 20px; margin: 100px 20px 40px; }
}
