* {
  box-sizing: border-box;
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    body {
      background: radial-gradient(circle at top left, #ff0044, #050509);
      color: #f7f7f7;
      min-height: 100vh;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Header / Top Bar */
    .top-bar {
      position: sticky;
      top: 0;
      z-index: 999;
      background: linear-gradient(90deg, #000000, #8b0000);
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .logo-block {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .logo-text {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .logo-sub {
      font-size: 0.7rem;
      opacity: 0.8;
    }

    .top-actions {
      display: flex;
      gap: 8px;
    }

    .btn-pill {
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }

    .btn-call {
      background: #ff1744;
      color: #fff;
      box-shadow: 0 0 12px rgba(255, 23, 68, 0.6);
    }

    .btn-whatsapp {
      background: #25d366;
      color: #000;
      box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
    }

    .btn-pill span.icon {
      font-size: 1rem;
    }

    /* Page Wrapper */
    .page {
      max-width: 520px;
      margin: 0 auto;
      padding: 14px 12px 70px;
    }

    /* Hero Banner */
    .hero {
      background: linear-gradient(145deg, rgba(255, 0, 76, 0.9), rgba(0, 0, 0, 0.98));
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.12);
      margin-bottom: 16px;
    }

    .hero-image-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .hero-image-wrap img {
      width: 100%;
      display: block;
      height: 230px;
      object-fit: cover;
      filter: contrast(1.05) saturate(1.1);
      transform: scale(1.02);
    }

    .hero-tag {
      position: absolute;
      bottom: 10px;
      left: 12px;
      background: rgba(0, 0, 0, 0.8);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-tag-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #00e676;
      box-shadow: 0 0 8px #00e676;
    }

    .hero-content {
      padding: 14px 14px 16px;
    }

    .hero-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .hero-sub {
      font-size: 0.85rem;
      color: #ffe6ed;
      margin-bottom: 10px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .badge {
      font-size: 0.7rem;
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-cta-row {
      display: flex;
      gap: 8px;
      margin-top: 6px;
    }

    .btn-full {
      flex: 1;
      border-radius: 999px;
      padding: 9px 0;
      font-size: 0.9rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #fff;
    }

    /* Section common */
    .section {
      margin-top: 16px;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(70, 0, 0, 0.98));
      border-radius: 16px;
      padding: 12px 12px 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }

    .section-title {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
      border-left: 3px solid #ff1744;
      padding-left: 8px;
    }

    .section-text {
      font-size: 0.8rem;
      line-height: 1.45;
      color: #f1d5dd;
    }

    /* Filter Bar */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }

    .filter-chip {
      font-size: 0.7rem;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(0, 0, 0, 0.7);
      cursor: pointer;
      opacity: 0.85;
    }

    .filter-chip.active {
      background: #ff1744;
      border-color: #ff1744;
      opacity: 1;
    }

    /* Profile Grid */
    .profile-grid {
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .profile-card {
      border-radius: 14px;
      overflow: hidden;
      background: radial-gradient(circle at top left, rgba(255, 0, 76, 0.2), rgba(0, 0, 0, 0.95));
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
      position: relative;
    }

    .profile-img-wrap {
      position: relative;
      height: 250px;
      overflow: hidden;
      cursor: pointer;
    }

    .profile-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .profile-card:hover .profile-img-wrap img {
      transform: scale(1.05);
    }

    .profile-badge {
      position: absolute;
      left: 6px;
      bottom: 6px;
      background: rgba(0, 0, 0, 0.75);
      border-radius: 999px;
      font-size: 0.6rem;
      padding: 3px 6px;
    }

    .profile-body {
      padding: 8px 7px 8px;
    }

    .profile-name {
      font-size: 0.85rem;
      font-weight: 600;
    }

    .profile-meta {
      font-size: 0.7rem;
      color: #ffb3c7;
      margin-top: 1px;
      margin-bottom: 4px;
    }

    .profile-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 3px;
      margin-bottom: 6px;
    }

    .profile-tag {
      font-size: 0.6rem;
      padding: 2px 6px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.03);
    }

    .profile-cta {
      display: flex;
      gap: 4px;
    }

    .profile-cta button {
      flex: 1;
      border-radius: 999px;
      border: none;
      padding: 5px 0;
      font-size: 0.7rem;
      font-weight: 600;
      cursor: pointer;
    }

    /* Quick Info */
    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
      margin-top: 8px;
    }

    .info-item {
      font-size: 0.75rem;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 10px;
      padding: 6px 8px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-label {
      opacity: 0.8;
      font-size: 0.68rem;
      text-transform: uppercase;
    }

    .info-value {
      font-weight: 600;
      margin-top: 1px;
    }

    /* Bottom Sticky Bar */
    .bottom-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(90deg, #000000, #7a0015);
      padding: 8px 10px;
      display: flex;
      gap: 8px;
      justify-content: center;
      align-items: center;
      z-index: 998;
      box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.9);
    }

    .bottom-cta button {
      flex: 1;
      padding: 9px 0;
      border-radius: 999px;
      border: none;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
    }

    /* Floating WhatsApp */
    .floating-wa {
      position: fixed;
      right: 14px;
      bottom: 70px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
      cursor: pointer;
      z-index: 997;
    }

    /* Gallery Modal */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
    }

    .modal-backdrop.active {
      display: flex;
    }

    .modal-content {
      max-width: 90%;
      max-height: 80%;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: #000;
      position: relative;
    }

    .modal-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .modal-close {
      position: absolute;
      top: 6px;
      right: 8px;
      font-size: 1.4rem;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 999px;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 6px 10px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
      font-size: 0.8rem;
    }

    /* Small Screens Fine Tuning */
    @media (max-width: 360px) {
      .hero-image-wrap img {
        height: 200px;
      }
      .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }
      .top-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
      }
    }

    @media (max-width: 420px) {
      .profile-grid {
        grid-template-columns: 1fr;
      }
    }