/* ============================================================
   Pussy888 Original — Global Styles
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple-dark: #4a0080;
  --purple-main: #6b00b3;
  --purple-light: #9c27b0;
  --green: #25d366;
  --green-dark: #1da851;
  --android-btn: #3dba5f;
  --android-dark: #2fa04f;
  --ios-btn: #e53935;
  --ios-dark: #c62828;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --card-bg: #ffffff;
  --max-width: 520px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-main) 50%, var(--purple-light) 100%);
  min-height: 100vh;
  color: var(--text-dark);
}

/* ── Wrapper ───────────────────────────────────────────── */
.page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 40px;
}

/* ── Card ──────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  margin: 12px 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   HEADER
   ============================================================ */

/* Top bar */
.header-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.site-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-dark);
  letter-spacing: 0.5px;
}

.header-center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
}

.header-center-logo-img {
  display: block;
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header-center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
}

.header-center-logo-img {
  display: block;
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-toggle:hover span {
  background: var(--purple-light);
}

/* Banner */
.header-banner {
  line-height: 0;
}

.header-banner .banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}

/* Action Buttons */
.header-actions {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  transition: filter 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn:active {
  transform: scale(0.98);
}

.btn-whatsapp {
  background: var(--green);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  filter: none;
}

.btn-android {
  background: var(--android-btn);
}

.btn-android:hover {
  background: var(--android-dark);
  filter: none;
}

.btn-ios {
  background: var(--ios-btn);
}

.btn-ios:hover {
  background: var(--ios-dark);
  filter: none;
}

.download-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.platform-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-left: 2px;
}

/* ============================================================
   NAVIGATION DRAWER
   ============================================================ */
.nav-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: var(--purple-dark);
  z-index: 1000;
  transition: left 0.3s ease;
  padding: 20px 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
}

.nav-drawer.open {
  left: 0;
}

.nav-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.nav-links {
  list-style: none;
  margin-top: 60px;
}

.nav-links li a {
  display: block;
  padding: 14px 28px;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.open {
  display: block;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.content-card {
  background: var(--card-bg);
  border-radius: 12px;
  margin: 12px 12px 0;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.content-card h1 {
  font-size: 1.35rem;
  color: var(--purple-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.content-card h2 {
  font-size: 1.1rem;
  color: var(--purple-dark);
  margin: 22px 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--purple-light);
}

.content-card h3 {
  font-size: 0.97rem;
  color: var(--purple-main);
  margin: 16px 0 6px;
}

.content-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.content-card a {
  color: var(--purple-main);
  text-decoration: underline;
}

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

.content-card li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* App info card at bottom */
.app-info-card {
  background: var(--card-bg);
  border-radius: 12px;
  margin: 12px 12px 0;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.app-info-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.app-info-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}

.app-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dark);
}

.app-info-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.app-info-meta span {
  margin-right: 12px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.info-table td {
  padding: 7px 4px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-muted);
}

.info-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 45%;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px 16px 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

/* Page hero image */
.page-hero {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Login / download page specifics */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--purple-light);
}

.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--purple-main);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--purple-dark);
}