  :root {
  --bg: #22241f;
  --fg: #f4f7ee;
  --accent: #cfd6ad;
  --accent2: #dde6b2;
  --muted: #bfcbb3;
  --input-bg: #262820;
  --card-bg: #262820;
  --border: #393b33;
  --gradient: linear-gradient(100deg, #cfd6ad 0%, #dde6b2 100%);
  --gradient-radial1: radial-gradient(circle at 65% 30%, #cfd6ad55 0, transparent 70%);
  --gradient-radial2: radial-gradient(circle at 20% 80%, #bfcbb366 0, transparent 70%);
  --button-text: #23231e;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-radial1), var(--gradient-radial2);
  z-index: 0;
  animation: bgAnim 12s linear infinite alternate;
}
@keyframes bgAnim {
  from { background-position: 65% 30%, 20% 80%; }
  to { background-position: 68% 32%, 18% 75%; }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem 2rem;
  backdrop-filter: blur(8px);
  background: var(--card-bg);
  border-radius: 2rem;
  box-shadow: 0 4px 64px 0 #000a;
  margin: 2rem auto 0;
  max-width: 600px;
  border: 1px solid var(--border);
}
.hero-title {
  font-size: 2.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-shadow: 0 4px 32px #000a;
}
.hero-desc {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2.3rem;
  font-weight: 400;
}
.store-banners {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.store-banners a img {
  height: 56px;

  box-shadow: 0 4px 24px #0008;
  background: #262820;
  transition: transform 0.18s cubic-bezier(.8,.4,.25,1), box-shadow 0.22s;
}
.store-banners a img:hover {
  transform: scale(1.08) rotate(-1.5deg);
  box-shadow: 0 8px 32px #000b;
}

.fancy-section {
  margin: 0 auto 0;
  max-width: 900px;
  padding: 0 1rem;
  z-index: 1;
  position: relative;
}
.glass-card {
  margin-top: -2.5rem;
  margin-bottom: 2.2rem;
  background: var(--card-bg);
  border-radius: 1.3rem;
  box-shadow: 0 2px 40px #0007;
  padding: 2.4rem 1.6rem 1.7rem;
  border: 1.5px solid var(--border);
  position: relative;
}
h2 {
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-top: 2.2rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 18px #0006;
}
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.3rem;
}
li {
  font-size: 1.13rem;
  color: var(--fg);
  opacity: 0.94;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
li::before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 7px #cfd6ad44;
}
.muted-note {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.bold-punch {
  font-size: 1.21rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 1rem 0 0.7rem;
  letter-spacing: 0.3px;
}

/* Screenshots Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  margin-top: 2rem;
}
.tab-btn {
  background: var(--input-bg);
  color: var(--fg);
  border: none;
  border-radius: 10px 10px 0 0;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 0.6rem 1.7rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
  border-bottom: 2px solid transparent;
}
.tab-btn.active {
  background: var(--gradient);
  color: var(--button-text);
  border-bottom: 2px solid var(--accent2);
  box-shadow: 0 2px 20px #cfd6ad22;
}
.screenshots {
  display: none;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.3rem;
  padding-bottom: 0.4rem;
  animation: fadeInUp 0.5s;
}
.screenshots.active { display: flex; }
.screenshots img {
  max-width: 270px;
  min-width: 150px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 20px #0006;
  border: 2.5px solid var(--accent);
  transition: transform 0.24s, box-shadow 0.22s;
  aspect-ratio: 9/19.5;
  object-fit: cover;
  background: #23241e;
}
.screenshots img:hover {
  transform: scale(1.05) rotate(0.5deg);
  box-shadow: 0 8px 28px #000b;
}

.form-wrapper {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
}
form {
  background: var(--input-bg);
  border-radius: 1.1rem;
  padding: 1.8rem 1.2rem 1.2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 2px 16px #0004;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  animation: fadeInUp 1s ease-out both;
}
input, textarea {
  padding: 0.9rem;
  background: #23241e;
  color: var(--fg);
  border: 1px solid #393b33;
  border-radius: 8px;
  font-size: 1.04rem;
  outline: none;
  transition: border 0.18s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--accent);
  background: #24271d;
}
button[type="submit"] {
  background: var(--gradient);
  color: var(--button-text);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.11rem;
  border: none;
  padding: 0.9rem 0;
  border-radius: 8px;
  transition: background 0.18s;
  box-shadow: 0 2px 10px #cfd6ad44;
}
button[type="submit"]:hover {
  filter: brightness(1.07);
  background: linear-gradient(90deg, #dde6b2, #cfd6ad 90%);
}

footer {
  text-align: center;
  padding: 2.2rem 1rem 1.2rem;
  font-size: 0.97rem;
  color: var(--muted);
  background: transparent;
  margin-top: 2.3rem;
  letter-spacing: 0.04em;
}
footer a {
  color: var(--muted);
  text-decoration: underline dotted;
  margin: 0 0.5rem;
  transition: color 0.16s;
}
footer a:hover {
  color: var(--accent2);
}

a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.16s, box-shadow 0.18s;
  word-break: break-all;
}

a:hover,
a:focus {
  color: var(--accent2);
  text-decoration-thickness: 2px;
  box-shadow: 0 2px 0 0 var(--accent2);
  outline: none;
}

.glass-card a {
  font-weight: 600;
  text-underline-offset: 3px;
  border-radius: 4px;
  padding: 1px 2px;
  transition: background 0.16s;
}

.glass-card a:hover,
.glass-card a:focus {
  background: #e7eed2bb;
  color: #22241f;
  box-shadow: 0 2px 0 0 var(--accent2);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px);}
  to { opacity: 1; transform: none;}
}
@media (max-width: 720px) {
  .hero-content { padding: 1.4rem 0.3rem 1.1rem; }
  .glass-card { padding: 1.3rem 0.6rem 1.2rem;}
  h2 { font-size: 1.17rem; }
  .hero-title { font-size: 2rem; }
  .screenshots img { max-width: 99vw; min-width: 90px;}
  .form-wrapper { padding: 0 0.4rem; }
  form { padding: 1.1rem 0.5rem 0.6rem;}
}