/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #feeb19;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: #000;
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: inline-block;
}

.logo img {
  height: 120px;
  width: auto;
  border-radius: 18px;
}

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

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  color: #feeb19;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  text-decoration: none;
}

.app-store-badge {
  display: inline-block;
  margin-left: 20px;
}

.app-store-badge img {
  height: 52px;
  width: auto;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #feeb19;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Page Content */
.page-content {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.page-title {
  font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #feeb19;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.page-title.white {
  color: #fff;
}

.page-subtitle {
  font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-align: center;
}

.content-section {
  margin-bottom: 48px;
}

.content-section p {
  margin-bottom: 16px;
  color: #ccc;
}

.content-section strong {
  color: #fff;
  font-weight: 700;
}

.content-section em {
  font-style: italic;
  color: #aaa;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-section h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-section ul,
.content-section ol {
  margin: 12px 0 20px 24px;
  color: #ccc;
}

.content-section li {
  margin-bottom: 8px;
}

/* Hero banner for privacy page */
.hero-banner {
  background: #000;
  padding: 80px 0 60px;
  text-align: center;
}

.hero-banner .page-content {
  padding: 0;
}

.hero-banner .page-title {
  font-size: 48px;
  margin-bottom: 24px;
  color: #feeb19;
}

.hero-banner p {
  color: #ccc;
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 16px;
}

.hero-banner ul {
  list-style: disc;
  text-align: left;
  max-width: 700px;
  margin: 20px auto 0;
  padding-left: 24px;
  color: #ccc;
}

.hero-banner li {
  margin-bottom: 10px;
  font-size: 16px;
}

.hero-banner li em {
  color: #aaa;
  font-style: italic;
}

/* Cross-link buttons */
.cross-link {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #fff;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.cross-link:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

.cross-link.centered {
  display: block;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #feeb19;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: underline;
}

.footer-links .sep {
  color: #666;
  margin: 0 12px;
}

.footer-copy {
  color: #888;
  font-size: 13px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .header-right {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: none;
    gap: 0;
  }

  .header-right.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .main-nav li {
    width: 100%;
    text-align: center;
  }

  .main-nav a {
    display: block;
    padding: 12px 20px;
  }

  .app-store-badge {
    margin: 12px 0 0 0;
  }

  .site-header {
    position: relative;
  }

  .logo img {
    height: 80px;
    border-radius: 14px;
  }

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

  .page-subtitle {
    font-size: 24px;
  }

  .hero-banner .page-title {
    font-size: 34px;
  }

  .hero-banner {
    padding: 50px 0 40px;
  }

  .page-content {
    padding: 40px 0 60px;
  }
}
