.beypass-page {
  min-height: 100dvh;
  background: var(--viewer-bg);
  color: var(--viewer-text);
  padding-bottom: 2rem;
}

.beypass-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.beypass-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.beypass-hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.beypass-hero h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.beypass-hero .subtitle {
  color: var(--viewer-text-muted);
  font-size: 0.95rem;
}

.beypass-description {
  color: var(--viewer-text-muted);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.beypass-section {
  margin-bottom: 2rem;
}

.beypass-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--viewer-input-border);
}

.beypass-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.beypass-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  background: var(--viewer-input-bg);
  border: 1px solid var(--viewer-input-border);
  border-radius: 8px;
  font-size: 0.9rem;
}

.feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.beypass-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.beypass-card {
  background: var(--viewer-input-bg);
  border: 1px solid var(--viewer-input-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.beypass-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--viewer-text);
}

.beypass-card-icon svg {
  display: block;
}

.beypass-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.beypass-card .btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: var(--viewer-dialog-confirm-bg);
  color: var(--viewer-dialog-confirm-text);
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
  box-sizing: border-box;
  width: 100%;
  max-width: 260px;
  align-self: center;
  text-align: center;
}

@media (hover: hover) {
  .beypass-card .btn-download:hover {
    opacity: 0.85;
  }
}

.beypass-google-play {
  background: var(--viewer-input-bg);
  border: 1px solid var(--viewer-input-border);
  border-radius: 12px;
  padding: 1.25rem;
}

.beypass-google-play p {
  color: var(--viewer-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.beypass-google-play-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.beypass-google-play-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--viewer-input-focus);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

@media (hover: hover) {
  .beypass-google-play-links a:hover {
    text-decoration: underline;
  }
}

.beypass-ios-note {
  text-align: center;
  color: var(--viewer-text-soft);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.5rem;
}

.beypass-platform-group {
  margin-top: 1rem;
  padding: 0.85rem 1rem 1rem;
  border: 1px solid var(--viewer-input-border);
  border-radius: 14px;
  background: var(--viewer-input-bg);
}

.beypass-platform-group:first-of-type {
  margin-top: 0;
}

.beypass-platform-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--viewer-text);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: -0.005em;
}

.beypass-brand-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  display: block;
}

.beypass-brand-apple {
  color: var(--viewer-text);
  transform: translateY(-0.05rem);
}

.beypass-screenshots-group {
  margin-bottom: 0.75rem;
}

.beypass-screenshots-group:last-child {
  margin-bottom: 0;
}

.beypass-screenshots-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--viewer-text-muted);
  margin-bottom: 0.5rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0;
}

.beypass-screenshots-label::-webkit-details-marker {
  display: none;
}

.beypass-screenshots-label::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.15s ease;
}

details[open] > .beypass-screenshots-label::before {
  transform: rotate(90deg);
}

details.beypass-screenshots-group:not([open]) {
  margin-bottom: 0.25rem;
}

.beypass-screenshots {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.beypass-screenshots img {
  flex: 0 0 auto;
  width: 220px;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--viewer-input-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  background: var(--viewer-input-bg);
}

.beypass-screenshots-watch img {
  width: 140px;
  border-radius: 22px;
}

.beypass-screenshots-ipad img {
  width: 280px;
  border-radius: 14px;
}

.beypass-screenshots-tv img {
  width: 360px;
  border-radius: 10px;
}

.beypass-footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--viewer-input-border);
}

.beypass-footer-links a {
  color: var(--viewer-input-focus);
  text-decoration: none;
  font-size: 0.85rem;
}

@media (hover: hover) {
  .beypass-footer-links a:hover {
    text-decoration: underline;
  }
}
