:root {
  --orange: #ff7a00;
  --black: #0d0d0d;
  --gray: #cfcfcf;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background:
    linear-gradient(
      160deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(15, 15, 15, 0.9) 40%,
      rgba(0, 0, 0, 0.98) 100%
    ),
    url("assets/background.webp");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: var(--white);
  line-height: 1.6;
}
.logo {
  max-width: 100%;
}
.logo img {
  max-width: 100%;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

header {
  text-align: center;
  padding: 80px 20px 60px;
}

header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

header h1 span {
  color: var(--orange);
}

header p,
em {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}
#strong2 {
  color: var(--orange);
}
.badges {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  text-transform: uppercase;
}

/* TRACK */
.badges-track {
  display: flex;
  gap: 16px;
}

/* BADGE */
.badge {
  background: #111;
  border: 1px solid #222;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--orange);
}

/* MOBILE */
@media (max-width: 768px) {
  .badges {
    overflow: hidden;
    width: 100%;
  }

  .badges-track {
    gap: 0;
    transition: transform 0.6s ease;
  }

  .badge {
    min-width: 100%;
    text-align: center;
  }
}

#appStore {
  display: flex;
  align-items: center;
}
.store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.store-btn {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 14px;
  text-decoration: none;
  min-width: 220px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  max-width: 300px;
  width: 100%;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter",
    "Roboto", system-ui, sans-serif;
}

.store-btn .icon {
  display: flex;
  align-items: center;
}

.store-btn .text span {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.store-btn .text strong {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.store-btn .text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Google Play */
.store-btn.google {
  background: var(--black);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--white);
}

.store-btn .text strong {
  font-size: 34px;
}
/* App Store */
.store-btn.apple {
  background: #000;
  color: #fff;
  border: 1px solid var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Hover */
.store-btn:hover {
  transform: translateY(-3px);
  border: 1px solid var(--orange);
  color: var(--orange);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-buttons a {
  text-decoration: none;
  background: var(--orange);
  color: #000;
  padding: 16px 26px;
  border-radius: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
}

.cta-buttons a.secondary {
  background: #111;
  color: var(--white);
  border: 1px solid #333;
  box-shadow: none;
}

.cta-buttons a:hover {
  transform: translateY(-3px);
}

section {
  margin-top: 80px;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature {
  background: #111;
  border: 1px solid #222;
  padding: 28px;
  border-radius: 16px;
}

.feature h3 {
  color: var(--orange);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  text-align: left;
}

.step {
  background: #111;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #222;
}
.step h3 {
  color: var(--orange);
  text-transform: uppercase;
}
.step h3 span {
  font-size: 30px;
}

footer {
  margin-top: 100px;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #222;
  color: var(--gray);
  font-size: 0.95rem;
}
.selector-for-some-widget {
  box-sizing: content-box;
}
