body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

.profile-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: #020617;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  box-sizing: border-box;
}

.profile-header {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #1f2937;
  padding-bottom: 20px;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f97316;
  flex-shrink: 0;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-main {
  flex: 1;
}

.profile-name {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 5px;
}

.profile-meta {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #111827;
  color: #fbbf24;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #374151;
}

/* Social buttons */
.profile-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.btn-chat i {
  font-size: 16px;
}

.btn-whatsapp {
  background: #22c55e;
}

.btn-telegram {
  background: #0ea5e9;
}

.btn-twitter {
  background: #1d9bf0;
}

.btn-chat:hover {
  opacity: 0.9;
}

/* AdX / AdSense block placeholder */
.ad-block {
  margin: 24px 0;
  padding: 12px;
  border-radius: 10px;
  background: #020617;
  border: 1px dashed #374151;
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
}

/* Article / Bio */
.profile-article h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

.profile-article p {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 14px;
  text-align: justify;
}

.profile-info-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  font-size: 14px;
  color: #e5e7eb;
}

.info-item {
  background: #020617;
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid #111827;
}

.info-label {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.info-value {
  font-weight: 600;
}

/* Grid for 4 girl profiles */
.girl-list-section {
  margin-top: 30px;
}

.girl-list-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.girl-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .girl-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .profile-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-photo {
    width: 100px;
    height: 100px;
  }
  .girl-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Single card */
.girl-card {
  background: linear-gradient(to right, #000080, #800080);
  border-radius: 10px;
  padding: 12px 12px 14px;
  border: 1px solid #111827;
  text-decoration: none;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  position: relative;
}

.girl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  border-color: #1d4ed8;
}

/* Avatar with online tick */
.girl-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.girl-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Online badge (green dot) */
.girl-card-status {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #22c55e; /* online green */
  border: 2px solid #020617;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Name + small text */
.girl-card-body {
  flex: 1;
}

.girl-card-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.girl-card-meta {
  font-size: 12px;
  color: #9ca3af;
}
 :root {
            --primary: #d90000;
            --bg-color: #fff0e5;
            --text-dark: #222;
            --text-muted: #555;
            --card-bg: #fff;
            --btn-green: #2ecc71;
            --btn-grey: #95a5a6;
            --gradient-blue: linear-gradient(to right, #000080, #800080);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Outfit', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-dark);
            line-height: 1.6;
            padding-bottom: 0px;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background: #020617;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-title {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--text-dark);
        }

        .hamburger {
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }

        /* Nav Menu (Hidden by default) */
        nav {
            display: none;
            background: white;
            position: absolute;
            top: 60px;
            right: 15px;
            width: 200px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            flex-direction: column;
            overflow: hidden;
            z-index: 1001;
        }

        nav a {
            padding: 15px 20px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            border-bottom: 1px solid #f1f5f9;
            transition: background 0.2s;
        }

        nav a:hover {
            background: #f8fafc;
        }

        nav a:last-child {
            border-bottom: none;
        }

        .nav-show {
            display: flex;
        }

        /* Hero Quiz */
        .hero-quiz {
            background: white;
            padding: 30px 20px;
            text-align: center;
            margin: 20px 0;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .hero-quiz h2 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .btn-yes-no {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .btn-yn {
            padding: 12px 40px;
            border-radius: 10px;
            border: none;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .btn-yes {
            background-color: var(--btn-green);
        }

        .btn-no {
            background-color: var(--btn-grey);
        }

        .btn-yn:hover {
            transform: scale(1.05);
        }

        .age-selectors {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .btn-age {
            background: var(--gradient-blue);
            color: white;
            padding: 15px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: opacity 0.3s;
        }

        .btn-age:hover {
            opacity: 0.9;
        }

        /* Gradient Category Buttons Section */
        .category-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 25px 0;
        }

        .btn-cat {
            background: var(--gradient-blue);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 10px rgba(0, 0, 80, 0.2);
            border: none;
        }

        .btn-cat:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 15px rgba(0, 0, 80, 0.3);
        }

        /* App Section (Cards) */
        .section-title {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 800;
            margin: 40px 0 20px;
            text-align: center;
            text-transform: uppercase;
        }

        .app-card {
            background: white;
            border-radius: 20px;
            margin-bottom: 30px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .app-card-header {
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            border-bottom: 1px solid #eee;
        }

        .app-letter {
            width: 60px;
            height: 60px;
            background-color: var(--bg-color);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }

        .app-card-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .app-card-body {
            padding: 25px;
        }

        .app-name {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .app-rating {
            color: #f1c40f;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .app-features {
            list-style: disc;
            padding-left: 20px;
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        .app-description {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .review-box {
            background: #f8fafc;
            border-left: 4px solid var(--primary);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .feature-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .tag {
            background: #f1f5f9;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        .btn-click {
            display: block;
            background-color: var(--primary);
            color: white;
            text-align: center;
            padding: 15px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            transition: background 0.3s, transform 0.2s;
            cursor: pointer;
            border: none;
            width: 100%;
        }

        .btn-click:hover {
            background-color: #b00000;
            transform: translateY(-2px);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            text-align: center;
            position: relative;
            animation: modalSlide 0.3s ease-out;
        }

        @keyframes modalSlide {
            from {
                transform: translateY(20px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close-modal {
            position: absolute;
            right: 20px;
            top: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #999;
        }

        .input-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        .input-group input,
        .input-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }

        .processing {
            display: none;
            margin-top: 20px;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Ad Slots */
        :root {
            --primary: #000080;
            --bg-color: #f7f9fb;
            --text-dark: #ffffff;
            --accent: #800080;
            --nav-bg: rgba(255, 255, 255, 0.95);
            --footer-bg: #1a1a2e;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-dark);
            line-height: 1.6;
            padding-top: 0px;
            /* Space for sticky nav */
        }

        /* Sticky Navbar */
        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--nav-bg);
            backdrop-filter: blur(10px);
            z-index: 10000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid var(--primary);
        }

        .nav-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 15px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        @media (max-width: 600px) {
            .nav-links {
                gap: 10px;
            }

            .nav-links a {
                font-size: 0.8rem;
            }

            .nav-container {
                padding: 10px;
            }
        }

        /* Ad Slots & Disclosures */
        .ad-container {
            margin: 25px 0;
            background: #fff;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #eee;
            position: relative;
        }

        .ad-label {
            font-size: 11px;
            color: #777;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 800;
        }

        .ad-notice {
            font-size: 10px;
            color: #aaa;
            margin-top: 5px;
            font-style: italic;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        footer a {
            color: var(--primary);
            text-decoration: none;
            margin: 0 10px;
        }

        @media (max-width: 480px) {
            .app-letter {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .app-name {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 1.5rem;
            }
        }
        /* Simple modal popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;           /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-box {
  background: linear-gradient(to right, #000080, #800080);
  border-radius: 12px;
  padding: 20px 18px 16px;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
  border: 1px solid #1f2937;
  text-align: left;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.modal-text {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 16px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.modal-btn-close {
  background: #1f2937;
  color: #e5e7eb;
}

.modal-btn-close:hover {
  background: #111827;
}

/* ===== Girl slider section ===== */
.girl-slider-section {
  margin-top: 30px;
}

.girl-slider-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Slider outer */
.girl-slider-wrapper {
  position: relative;
}

/* Visible area (yahi overflow hoga) */
.girl-slider-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
}

/* Track jo slide hota hai */
.girl-slider-track {
  display: flex;
  gap: 16px;
  padding: 4px 10px 8px;  /* thoda inner padding so arrows cut na ho */
  box-sizing: border-box;
}

/* Each slide width */
.girl-slide {
  flex: 0 0 calc(25% - 12px);  /* desktop ~4 cards */
  max-width: calc(25% - 12px);
}

@media (max-width: 900px) {
  .girl-slide {
    flex: 0 0 calc(33.333% - 11px);  /* tablet: 3 */
    max-width: calc(33.333% - 11px);
  }
}

@media (max-width: 600px) {
  .girl-slide {
    flex: 0 0 calc(50% - 10px);      /* mobile: 2 */
    max-width: calc(50% - 10px);
  }
}

/* Card design */
.girl-card {
  background: linear-gradient(to right, #000080, #800080);
  border-radius: 16px;
  padding: 16px 14px;
  border: 1px solid #111827;
  text-decoration: none;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  position: relative;
  min-height: 150px;
}

.girl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.6);
  border-color: #1d4ed8;
}

/* Avatar with online tick */
.girl-card-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.girl-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Online badge (bottom-right green dot) */
.girl-card-status {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: linear-gradient(to right, #000080, #800080);
  border: 2px solid linear-gradient(to right, #000080, #800080);
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Name + meta */
.girl-card-body {
  margin-top: 4px;
}

.girl-card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.girl-card-meta {
  font-size: 12px;
  color: #9ca3af;
}

/* Slider arrows */
.girl-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  z-index: 20;
}

.girl-slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.girl-slider-arrow-left {
  left: -6px;
}

.girl-slider-arrow-right {
  right: -6px;
}

@media (max-width: 700px) {
  .girl-slider-arrow-left {
    left: 4px;
  }
  .girl-slider-arrow-right {
    right: 4px;
  }
}

