:root {
  --orange: #ff7900;
  --orange-dark: #e66d00;
  --black: #000000;
  --white: #ffffff;
  --bg-soft: #f7f7f7;
  --text-soft: #444444;
}

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

body {
  background: linear-gradient(180deg, #f2f2f2 0%, #f9f9f9 180px, #ffffff 181px);
  color: var(--black);
}

header {
  background: var(--black);
  color: var(--white);
  padding: 16px 32px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 4px solid var(--orange);
  gap: 16px;
}

.header-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.header-link {
  color: var(--white);
  text-decoration: none;
}

.header-link:hover {
  color: var(--white);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-tag {
  font-size: 13px;
  background: var(--orange);
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 4px;
}

.orange-logo {
  width: 52px;
  height: 52px;
  background: var(--orange);
  display: grid;
  place-items: end start;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.orange-logo span {
  color: var(--white);
  font-size: 11px;
  line-height: 1;
  text-transform: lowercase;
  font-weight: 700;
}

main {
  width: 100%;
  background: var(--white);
  padding: 60px 120px;
}

.hero {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  max-width: 650px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #101010;
  max-width: 18ch;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 24px;
  border-left: 4px solid var(--orange);
  padding-left: 12px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 14px 24px;
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.download-btn:hover {
  background-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.download-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
}

.playstore-btn {
  display: inline-block;
  padding: 0;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.playstore-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.playstore-badge {
  display: block;
  width: auto;
  height: 54px;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #2a2f38;
  background: #000;
}

.playstore-badge:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.playstore-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.note {
  font-size: 12px;
  color: #555;
  margin-top: 10px;
}

.hero-image {
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
  border: 1px solid #e5e5e5;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  display: block;
  width: 290px;
  max-width: 100%;
  border-radius: 18px;
  border: 2px solid #1d2636;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

section {
  max-width: 900px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  border-top: 2px solid var(--orange);
}

section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #111;
}

section p,
li {
  font-size: 15px;
  line-height: 1.6;
}

ul,
ol {
  margin-left: 20px;
  margin-top: 10px;
}

a {
  color: #b74f00;
}

a:hover {
  color: #8a3a00;
}

footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #d9d9d9;
  margin-top: 60px;
  border-top: 3px solid var(--orange);
}

footer a {
  color: #ffffff;
}

.legal-main {
  padding-top: 46px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.legal-updated {
  color: var(--text-soft);
  margin-bottom: 28px;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 34px;
  margin-bottom: 12px;
  padding-top: 14px;
  border-top: 2px solid var(--orange);
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  header {
    padding: 14px 16px 12px;
  }

  .header-title {
    font-size: 30px;
  }

  .header-tag {
    display: none;
  }

  .orange-logo {
    width: 44px;
    height: 44px;
    padding: 5px;
  }

  .orange-logo span {
    font-size: 10px;
  }

  main {
    padding: 40px 24px;
  }

  .hero {
    flex-direction: column;
    gap: 32px;
  }

  .hero-image {
    align-self: center;
  }

  .hero h1 {
    font-size: 28px;
    max-width: none;
  }

  .download-actions {
    margin-top: 24px;
  }
}


