* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 50% 50%, #f6d8f3, #ec459b);
  color: #222;
}

.page {
  padding: 40px 16px 60px;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fdfdfd;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

/* ---------- Banner ---------- */
.banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000 url('assets/banner.jpg') center/cover no-repeat;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.menu-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo {
  width: 72%;
  max-width: 320px;
  height: auto;
  display: block;
}

.playnow-link {
  display: flex;
  justify-content: center;
  width: 100%;
}

.playnow {
  width: 55%;
  max-width: 150px;
  height: auto;
  display: block;
  margin-top: -4px;
  cursor: pointer;
  transition: transform 0.15s ease;
  animation: breathe 1.67s ease-in-out infinite;
}

.playnow:hover {
  animation-play-state: paused;
  transform: scale(1.08);
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* ---------- Info row (services + downloads) ---------- */
.info-row {
  display: flex;
  gap: 16px;
}

.info-row>.card {
  flex: 1;
  min-width: 0;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.service-card p {
  margin: 0;
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25a244;
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.download-card {
  display: flex;
}

.download-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  min-width: 0;
  padding: 0 6px;
}

.download-col h3 {
  margin: 0;
  font-size: 13px;
}

.download-col p {
  margin: 0 0 4px;
  font-size: 11px;
  color: #777;
}

.vdivider {
  width: 1px;
  background: #e0e0e0;
  align-self: stretch;
  margin: 4px 2px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 10.5px;
  line-height: 1.25;
  text-align: left;
  justify-content: center;
}

.btn-download.android {
  background: #28a745;
}

.btn-download.ios {
  background: #1a8fe3;
}

/* ---------- Player Test ID ---------- */
.test-id-card {
  text-align: center;
}

.test-id-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.test-id-card .subtitle {
  margin: 0 0 16px;
  color: #777;
  font-size: 13px;
}

.test-id-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.test-id-box {
  flex: 1;
  background: #eef0f3;
  border-radius: 12px;
  padding: 14px 10px;
}

.test-id-box .label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.test-id-box .value {
  display: block;
  font-size: 13px;
  color: #555;
}

/* ---------- Content card ---------- */
.content-card h1 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.content-card h2 {
  font-size: 16px;
  margin: 24px 0 8px;
}

.content-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 12px;
}

.content-card h3 {
  font-size: 15px;
  margin: 20px 0 8px;
  color: #1a1a1a;
}

.content-card h4 {
  font-size: 14px;
  margin: 14px 0 6px;
  color: #1a1a1a;
}

.content-card .note {
  background: #eef4fb;
  border-left: 4px solid #1a8fe3;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px;
}

.content-card ul,
.content-card ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.content-card li {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 6px;
}

.content-card dl {
  margin: 0 0 16px;
}

.content-card dt {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  margin-top: 10px;
}

.content-card dd {
  margin: 2px 0 0;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.content-card .table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
}

.content-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 320px;
}

.content-card th,
.content-card td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}

.content-card th {
  background: #f7f7f9;
  font-weight: 700;
  color: #333;
}

.content-card .path {
  font-family: 'Courier New', monospace;
  background: #f4f4f6;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  display: inline-block;
}

.content-card .next-step {
  margin: 0 0 16px;
  padding: 12px 16px;
  background: #fdeaf5;
  border-radius: 12px;
  font-size: 14px;
}

.content-card .next-step a {
  color: #ec459b;
  font-weight: 700;
  text-decoration: none;
}

.content-card .next-step a:hover {
  text-decoration: underline;
}

/* ---------- Sidebar nav ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  max-width: 80vw;
  background: #fff;
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 20px;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sidebar-header img {
  height: 32px;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  padding: 4px 8px;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  margin-bottom: 6px;
}

.sidebar a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.sidebar a:hover {
  background: #fdeaf5;
  color: #ec459b;
}

/* ---------- Responsive: mobile stacks the info cards ---------- */
@media (max-width: 600px) {
  .page {
    padding: 20px 14px 40px;
  }

  .info-row {
    flex-direction: column;
  }
}