  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #fff;
      max-width: 480px;
      margin: 0 auto;
      /* make room for fixed header */
      padding-top: 64px;
  }

  /* Header */
  .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-bottom: 1px solid #eee;
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%) !important;
      width: 100%;
      max-width: 480px;
      z-index: 1000;
      background: #ffffffd1;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  }

  .header .menu-icon {
      font-size: 22px;
      color: #444;
      cursor: pointer;
  }

  .header .whatsapp-logo {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #00a884;
      font-size: 18px;
      font-weight: 600;
  }

  .header .whatsapp-logo svg {
      width: 28px;
      height: 28px;
  }

  .header .avatar {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #4de07a, #25D366);
      display: flex;
      align-items: center;
      justify-content: center;
      color: black;
      font-size: 0;
      /* hide any text fallback */
      border: 2px solid #07120a;
      /* black border like screenshot */
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
      overflow: hidden;
  }

  .header .avatar svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: currentColor;
      /* respect .avatar color (black) */
  }

  /* Profile section */
  .profile-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 20px 20px;
  }

  .profile-circle {
      width: 174px;
      height: auto;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #e5c034;
      margin-bottom: 12px;
      background: linear-gradient(135deg, #8B4513, #c8860a);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .profile-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .profile-name {
      font-size: 20px;
      font-weight: 600;
      color: #111;
      margin-bottom: 16px;
  }

  /* Continue to Chat button */
  .btn-chat {
      background: #3a7142;
      color: white;
      border: none;
      border-radius: 25px;
      padding: 12px 3px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      width: 100%;
      max-width: 200px;
      margin-bottom: 14px;
      font-size: 18px;
      font-weight: 700;
  }

  .no-whatsapp {
      color: #5e5e5e;
      margin-bottom: 4px;
      font-size: 20px
  }

  .a_down {
      color: #39b3ed;
      text-decoration: none;
      font-size: larger;
  }

  .no-whatsapp a {
      color: #00a884;
      text-decoration: none;
  }

  /* Dark section */
  .dark-section {
      background: #1a1a2e;
      padding: 20px 16px;
  }

  /* Download button */
  .btn-download {
      background: #25d366;
      color: #1a0a00;
      border: none;
      border-radius: 40px;
      padding: 20px 36px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 auto 20px;
      width: 100%;
      max-width: 220px;
      justify-content: center;
  }

  .btn-download svg {
      width: 18px;
      color: #000;
      height: 18px;
  }

  /* Social icons */
  .social-icons {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 12px;
      margin-top: 12px;
  }

  .social-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.9);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: white;
      font-size: 16px;
      cursor: pointer;
      transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
      text-decoration: none;
  }

  .social-icon svg {
      width: 18px;
      height: 18px;
      display: block;
      color: white;
      fill: currentColor;
      stroke: currentColor;
  }

  .social-icon:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
      border-color: rgba(255, 255, 255, 1);
  }

  /* WhatsApp brand row */
  .whatsapp-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      margin-top: 25px;
  }

  .whatsapp-brand svg {
      width: 32px;
      height: 32px;
  }

  .whatsapp-brand span {
      color: white;
      font-size: 20px;
      font-weight: 600;
  }

  /* Ad Banner */
  .ad-banner {
      background: linear-gradient(135deg, #1a0a00, #2d1500);
      border-radius: 10px;
      overflow: hidden;
      padding: 0;
      margin-bottom: 8px;
      border: 1px solid #8B4513;
  }

  .ad-top-bar {
      background: #8B4513;
      padding: 6px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .ad-top-bar .dots {
      display: flex;
      gap: 5px;
  }

  .ad-top-bar .dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ccc;
  }

  .ad-logo {
      background: #c8860a;
      padding: 4px 10px;
      border-radius: 4px;
      color: white;
      font-weight: 700;
      font-size: 13px;
      text-align: center;
  }

  .ad-logo span {
      font-size: 10px;
      display: block;
      color: #ffe;
  }

  .available-badge {
      background: #1a7a3a;
      color: #4dff88;
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 4px;
  }

  .available-badge::before {
      content: '●';
      font-size: 8px;
  }

  .ad-content {
      padding: 14px 12px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
  }

  .ad-text {
      flex: 1;
  }

  .ad-tagline {
      color: #fff;
      font-size: 11px;
      margin-bottom: 4px;
  }

  .ad-headline {
      color: #FFD700;
      font-size: 20px;
      font-weight: 900;
      line-height: 1.1;
      text-transform: uppercase;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .bonus-row {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
  }

  .bonus-box {
      background: #c8860a;
      border-radius: 6px;
      padding: 6px 10px;
      text-align: center;
      flex: 1;
  }

  .bonus-pct {
      color: white;
      font-size: 22px;
      font-weight: 900;
      line-height: 1;
  }

  .bonus-label {
      color: #ffe;
      font-size: 9px;
      font-weight: 600;
  }

  .info-box {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      padding: 4px 8px;
      color: #eee;
      font-size: 9px;
      margin-bottom: 4px;
      text-align: center;
  }

  .ad-phone-mockup {
      width: 90px;
      flex-shrink: 0;
      background: #222;
      border-radius: 12px;
      border: 2px solid #555;
      overflow: hidden;
      padding: 6px;
  }

  .phone-screen {
      background: #1a1a2e;
      border-radius: 8px;
      height: 110px;
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding: 4px;
  }

  .phone-row {
      background: rgba(200, 134, 10, 0.3);
      border-radius: 3px;
      height: 16px;
      display: flex;
      align-items: center;
      padding: 0 4px;
  }

  .phone-row span {
      font-size: 7px;
      color: #FFD700;
      font-weight: 600;
  }

  .phone-row.active {
      background: rgba(200, 134, 10, 0.7);
  }

  .ad-footer {
      background: #8B4513;
      padding: 8px 12px;
      text-align: center;
  }

  .ad-footer p {
      color: #fff;
      font-size: 10px;
      margin-bottom: 2px;
  }

  .ad-footer .url {
      color: #FFD700;
      font-size: 11px;
      font-weight: 700;
  }

  /* Bottom footer */
  .page-footer {
      background: #f5f5f5;
      padding: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .footer-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }

  .footer-links a {
      color: #555;
      font-size: 12px;
      text-decoration: none;
  }

  .footer-links .copy {
      color: #888;
      font-size: 11px;
  }

  /* Real language dropdown */
  .lang-wrapper {
      position: relative;
  }

  .lang-select {
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 6px 12px;
      font-size: 13px;
      background: white;
      cursor: pointer;
      user-select: none;
  }

  .lang-select svg {
      width: 14px;
      height: 14px;
      transition: transform 0.2s;
  }

  .lang-select.open svg {
      transform: rotate(180deg);
  }

  .lang-dropdown {
      display: none;
      position: absolute;
      bottom: 110%;
      right: 0;
      background: white;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      min-width: 160px;
      overflow: hidden;
      z-index: 999;
  }

  .lang-dropdown.open {
      display: block;
  }

  .lang-option {
      padding: 10px 14px;
      font-size: 13px;
      cursor: pointer;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .lang-option:hover {
      background: #f0f0f0;
  }

  .lang-option.selected {
      color: #00a884;
      font-weight: 600;
  }

  .lang-option .flag {
      font-size: 16px;
  }

  /* Clickable cursor for profile circle and links */
  .profile-circle {
      cursor: pointer;
  }

  .btn-chat,
  .btn-download,
  .no-whatsapp a {

      cursor: pointer;
  }

  /* Hover effects */
  .btn-chat:hover {
      background: #008f6f;
  }

  .btn-download:hover {
      background: #25d366;
  }

  .profile-circle:hover {
      opacity: 0.9;
      transform: scale(1.03);
      transition: all 0.2s;
  }