   .profile-section .profile-card {
                    background: var(--card);
                    border-radius: 20px;
                    padding: 20px;
                    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
                    color: #fff;
                    position: relative;
                    transition: .3s;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                  }

                  .profile-section .profile-card:hover {
                    transform: translateY(-4px);
                    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
                  }

                  .profile-section .profile-header {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    flex-wrap: wrap;
                  }

                  .profile-section .profile-header img {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    object-fit: cover;
                    border: 3px solid var(--accent);
                  }

                  .profile-section .profile-info h3 {
                    margin: 0;
                    font-size: 18px;
                    color: #fff;
                  }

                  .profile-section .profile-info span {
                    font-size: 14px;
                    color: var(--muted);
                  }

                  .profile-section .live-indicator {
                    position: absolute;
                    top: 15px;
                    right: 15px;
                    background: var(--accent);
                    color: #fff;
                    padding: 4px 10px;
                    border-radius: 20px;
                    font-size: 12px;
                    font-weight: bold;
                    animation: blink 1s infinite;
                  }

                  @keyframes blink {
                    50% {
                      opacity: .5;
                    }
                  }

                  .profile-section .profile-actions {
                    display: flex;
                    justify-content: center;
                    margin-top: 20px;
                    gap: 15px;
                    flex-wrap: wrap;
                  }

                  .profile-section .btn {
                    background: var(--accent);
                    border: none;
                    color: #fff;
                    padding: 10px 18px;
                    border-radius: 12px;
                    cursor: pointer;
                    font-size: 14px;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    transition: .3s;
                    text-decoration: none;
                    justify-content: center;
                    min-width: 130px;
                    text-align: center;
                  }

                  .profile-section .btn:hover {
                    background: #e63e63;
                  }

                  .profile-section .btn.call {
                    background: var(--success);
                  }

                  .profile-section .btn.call:hover {
                    background: #1f8c38;
                  }

                  /* ==== Mobile Adjustments ==== */
                  @media(max-width:600px) {
                    .profile-section .profiles {
                      grid-template-columns: 1fr;
                    }

                    .profile-section .btn {
                      font-size: 13px;
                      padding: 9px 14px;
                      min-width: 100px;
                    }
                  }
body {
                    margin: 0;
                    font-family: Arial, sans-serif;
                    background: #fff;
                    color: #000;
                  }

                  /* Container */
                  #videoContainer {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;
                    gap: 15px;
                    padding: 65px;
                  }

                  .card {
                    width: 280px;
                    background: #f9f9f9;
                    border-radius: 15px;
                    overflow: hidden;
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
                    position: relative;
                    cursor: pointer;
                    transition: transform 0.3s ease;
                  }

                  .card:hover {
                    transform: scale(1.03);
                  }

                  /* Fixed Frame for Videos */
                  .video-frame {
                    width: 100%;
                    height: 350px;
                    overflow: hidden;
                  }

                  .video-frame video {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    /* video fit in frame */
                    display: block;
                  }

                  .viewer-count {
                    position: absolute;
                    top: 10px;
                    left: 10px;
                    background: rgba(0, 0, 0, 0.7);
                    padding: 4px 8px;
                    border-radius: 12px;
                    font-size: 14px;
                    color: #fff;
                  }
                  .viewer-live {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    background: #FF0000;
                    padding: 4px 8px;
                    border-radius: 12px;
                    font-size: 14px;
                    color: #fff;
                  }
                  .viewer-video {
                    position: absolute;
                    bottom: 10px;
                    right: 10px;
                    background: #128C7E;
                    padding: 4px 8px;
                    border-radius: 12px;
                    font-size: 18px;
                    font-weight: bold;
                    color: #fff;
                  }
                  .buttons {
                    display: flex;
                    justify-content: space-between;
                    padding: 10px;
                    gap: 8px;
                  }

                  .btn {
                    flex: 1;
                    padding: 10px;
                    text-align: center;
                    background-color: #28a745;
                    /* Green button */
                    border: none;
                    border-radius: 10px;
                    color: white;
                    font-size: 15px;
                    font-weight: bold;
                    cursor: pointer;
                    text-decoration: none;
                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
                    transition: all 0.2s ease-in-out;
                  }

                  .btn:hover {
                    transform: scale(1.05);
                    opacity: 0.9;
                  }
/* Reset & Base Styles */
                  * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                  }

                  body {
                    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                    background: linear-gradient(135deg, #f5f7fa 0%, #ffeef8 100%);
                    color: #333;
                    line-height: 1.6;
                    padding: 20px;
                    min-height: 100vh;
                  }

                  /* Container */
                  .container {
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 20px;
                  }

                  /* Header */
                  header {
                    text-align: center;
                    margin-bottom: 40px;
                  }

                  h1 {
                    color: #ff1493;
                    font-size: 2.5rem;
                    margin-bottom: 10px;
                    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
                  }

                  .subtitle {
                    color: #666;
                    font-size: 1.1rem;
                  }

                  /* Profiles Grid */
                  .profiles-container {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                    gap: 25px;
                  }

                  /* Profile Card */
                  .profile-card {
                    background: white;
                    border-radius: 15px;
                    overflow: hidden;
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                  }

                  .profile-card:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
                  }

                  /* Photo Slider */
                  .photo-slider {
                    position: relative;
                    height: 300px;
                    overflow: hidden;
                  }

                  .photo-slide {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: none;
                  }

                  .photo-slide.active {
                    display: block;
                    animation: fadeIn 0.8s;
                  }

                  @keyframes fadeIn {
                    from {
                      opacity: 0;
                    }

                    to {
                      opacity: 1;
                    }
                  }

                  .slide-nav {
                    position: absolute;
                    bottom: 15px;
                    left: 0;
                    right: 0;
                    display: flex;
                    justify-content: center;
                    gap: 8px;
                  }

                  .slide-dot {
                    width: 12px;
                    height: 12px;
                    border-radius: 50%;
                    background: rgba(255, 255, 255, 0.5);
                    cursor: pointer;
                    transition: all 0.3s;
                  }

                  .slide-dot.active {
                    background: white;
                    transform: scale(1.2);
                  }

                  /* Live Badge */
                  .live-badge {
                    position: absolute;
                    top: 15px;
                    right: 15px;
                    background: #ff0000;
                    color: white;
                    padding: 5px 12px;
                    border-radius: 20px;
                    font-size: 0.8rem;
                    font-weight: bold;
                    display: flex;
                    align-items: center;
                    animation: pulse 1.5s infinite;
                  }

                  .live-badge::before {
                    content: '';
                    display: inline-block;
                    width: 8px;
                    height: 8px;
                    background: white;
                    border-radius: 50%;
                    margin-right: 6px;
                  }

                  @keyframes pulse {
                    0% {
                      transform: scale(1);
                    }

                    50% {
                      transform: scale(1.05);
                    }

                    100% {
                      transform: scale(1);
                    }
                  }

                  /* Profile Info */
                  .profile-info {
                    padding: 20px;
                  }

                  .profile-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 10px;
                  }

                  .profile-name {
                    font-size: 1.3rem;
                    font-weight: 700;
                  }

                  .profile-age {
                    color: #ff1493;
                    font-weight: 600;
                  }

                  /* Status */
                  .profile-status {
                    display: flex;
                    align-items: center;
                    margin-bottom: 15px;
                    font-size: 0.9rem;
                  }

                  .status-dot {
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                    margin-right: 8px;
                  }

                  .online {
                    background: #4CAF50;
                    box-shadow: 0 0 8px #4CAF50;
                  }

                  .typing {
                    background: #FFC107;
                    box-shadow: 0 0 8px #FFC107;
                  }

                  .typing-text {
                    color: #FFC107;
                    font-style: italic;
                  }

                  /* Bio */
                  .profile-bio {
                    color: #555;
                    margin-bottom: 20px;
                    font-size: 0.95rem;
                    line-height: 1.5;
                  }

                  /* Interests */
                  .interests {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 8px;
                    margin-bottom: 15px;
                  }

                  .interest-tag {
                    background: #f0f0f0;
                    color: #555;
                    padding: 4px 10px;
                    border-radius: 20px;
                    font-size: 0.75rem;
                  }

                  /* Button */
                  .chat-btn {
                    display: block;
                    width: 100%;
                    padding: 12px;
                    background: linear-gradient(to right, #ff1493, #ff6b9e);
                    color: white;
                    border: none;
                    border-radius: 8px;
                    font-size: 1rem;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s;
                    text-align: center;
                    text-decoration: none;
                  }

                  .chat-btn:hover {
                    background: linear-gradient(to right, #ff0066, #ff4785);
                    transform: translateY(-2px);
                    box-shadow: 0 4px 10px rgba(255, 20, 147, 0.4);
                  }

                  /* Responsive Design */
                  @media (max-width: 768px) {
                    h1 {
                      font-size: 2rem;
                    }

                    .profiles-container {
                      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                    }

                    .photo-slider {
                      height: 280px;
                    }
                  }

                  @media (max-width: 480px) {
                    .container {
                      padding: 10px;
                    }

                    h1 {
                      font-size: 1.8rem;
                    }

                    .profiles-container {
                      grid-template-columns: 1fr;
                    }

                    .photo-slider {
                      height: 250px;
                    }
                  }
/* === Scoped Styles (Unique Prefix: rvg-) === */
                  .rvg-root {
                    --bg: #0b0f14;
                    --card: #0f1a23;
                    --text: #e8f0ff;
                    --muted: #9fb0c8;
                    --accent: #22c55e;
                    background: var(--bg);
                    color: var(--text);
                    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
                    padding: 20px 0;
                  }

                  .rvg-wrap {
                    max-width: 1100px;
                    margin: 0 auto;
                    padding: 0 16px;
                  }

                  .rvg-head {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 12px;
                    margin-bottom: 16px;
                  }

                  .rvg-head h1 {
                    font-size: 22px;
                    margin: 0;
                  }

                  .rvg-grid {
                    display: grid;
                    gap: 14px;
                    grid-template-columns: repeat(2, 1fr);
                  }

                  @media (min-width:640px) {
                    .rvg-grid {
                      grid-template-columns: repeat(3, 1fr);
                    }
                  }

                  @media (min-width:900px) {
                    .rvg-grid {
                      grid-template-columns: repeat(5, 1fr);
                    }
                  }

                  .rvg-card {
                    position: relative;
                    background: var(--card);
                    border-radius: 16px;
                    overflow: hidden;
                    cursor: pointer;
                    outline: 1px solid rgba(255, 255, 255, .06);
                    transition: transform .15s ease, box-shadow .15s ease;
                  }

                  .rvg-card:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
                  }

                  .rvg-thumb {
                    width: 100%;
                    aspect-ratio: 16/9;
                    display: block;
                    object-fit: cover;
                    background: #0a141d;
                  }

                  .rvg-play {
                    position: absolute;
                    inset: 0;
                    display: grid;
                    place-items: center;
                    background: linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .35));
                  }

                  .rvg-play::before {
                    content: "";
                    width: 58px;
                    height: 58px;
                    border-radius: 50%;
                    background: rgba(0, 0, 0, .45);
                    backdrop-filter: blur(2px);
                    box-shadow: 0 6px 18px rgba(0, 0, 0, .45), inset 0 0 0 2px rgba(255, 255, 255, .15);
                    position: absolute;
                  }

                  .rvg-play svg {
                    width: 28px;
                    height: 28px;
                    z-index: 1;
                    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .45));
                  }

                  .rvg-meta {
                    padding: 10px 12px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 8px;
                  }

                  .rvg-title {
                    font-size: 13px;
                    line-height: 1.3;
                    color: var(--text);
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                  }

                  .rvg-live {
                    font-size: 11px;
                    padding: 3px 8px;
                    border-radius: 999px;
                    background: rgba(34, 197, 94, .14);
                    color: #8ef0b0;
                    border: 1px solid rgba(34, 197, 94, .35);
                  }

                  /* === Video Modal === */
                  .rvg-modal {
                    position: fixed;
                    inset: 0;
                    background: rgba(0, 0, 0, .75);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 9999;
                    display: none;
                  }

                  .rvg-modal video {
                    max-width: 90%;
                    max-height: 80%;
                    border-radius: 12px;
                    outline: 3px solid #22c55e;
                  }

                  .rvg-close {
                    position: absolute;
                    top: 20px;
                    right: 20px;
                    background: #ff4444;
                    color: #fff;
                    border: none;
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                    font-size: 20px;
                    cursor: pointer;
                    z-index: 10000;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                  }

                  .rvg-close:hover {
                    background: #e60000;
                  }

                  body {
                    background-color: #f5f5f5;
                    padding: 20px;
                  }

                  .header {
                    text-align: center;
                    margin-bottom: 30px;
                  }

                  .header h1 {
                    color: #ff6b81;
                    font-size: 2.5rem;
                  }

                  .profiles-container {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                    gap: 25px;
                    max-width: 1200px;
                    margin: 0 auto;
                  }

                  .profile-card {
                    background-color: white;
                    border-radius: 10px;
                    overflow: hidden;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s ease;
                    position: relative;
                  }

                  .profile-card:hover {
                    transform: translateY(-5px);
                  }

                  .profile-image {
                    position: relative;
                    height: 200px;
                    overflow: hidden;
                  }

                  .profile-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: opacity 0.5s ease;
                    position: absolute;
                    top: 0;
                    left: 0;
                  }

                  .profile-image img.active {
                    opacity: 1;
                    z-index: 1;
                  }

                  .profile-image img.inactive {
                    opacity: 0;
                    z-index: 0;
                  }

                  .profile-card:hover .profile-image img {
                    transform: scale(1.05);
                  }

                  .online-status {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    background-color: #4CAF50;
                    color: white;
                    padding: 5px 10px;
                    border-radius: 20px;
                    font-size: 0.8rem;
                    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
                    z-index: 2;
                  }

                  .profile-info {
                    padding: 15px;
                  }

                  .profile-name {
                    font-size: 1.2rem;
                    font-weight: 600;
                    color: #333;
                    margin-bottom: 5px;
                  }

                  .profile-age {
                    color: #777;
                    font-size: 0.9rem;
                    margin-bottom: 10px;
                  }

                  .profile-location {
                    display: flex;
                    align-items: center;
                    color: #555;
                    font-size: 0.9rem;
                    margin-bottom: 15px;
                  }

                  .profile-location i {
                    margin-right: 5px;
                    color: #ff6b81;
                  }

                  .action-buttons {
                    display: flex;
                    justify-content: space-between;
                  }

                  .btn {
                    padding: 8px 15px;
                    border: none;
                    border-radius: 5px;
                    cursor: pointer;
                    font-weight: 500;
                    transition: background-color 0.3s ease;
                    flex: 1;
                    margin: 0 5px;
                    text-align: center;
                    text-decoration: none;
                    font-size: 0.9rem;
                  }

                  .btn-chat {
                    background-color: #4CAF50;
                    color: white;
                  }

                  .btn-chat:hover {
                    background-color: #3e8e41;
                  }

                  .btn-video {
                    background-color: #2196F3;
                    color: white;
                  }

                  .btn-video:hover {
                    background-color: #0b7dda;
                  }

                  @media (max-width: 768px) {
                    .profiles-container {
                      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                    }
                  }

                  @media (max-width: 480px) {
                    .profiles-container {
                      grid-template-columns: 1fr;
                    }
                  }

                  .loading {
                    text-align: center;
                    padding: 20px;
                    font-size: 1.2rem;
                    color: #666;
                  }
body {
                    font-family: Arial, sans-serif;
                    background-color: #f5f5f5;
                    margin: 0;
                    padding: 15px;
                  }

                  .profiles-container {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                    gap: 20px;
                    max-width: 1200px;
                    margin: 0 auto;
                  }

                  .profile-card {
                    background-color: white;
                    border-radius: 10px;
                    overflow: hidden;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                  }

                  .profile-image {
                    position: relative;
                    height: 220px;
                    overflow: hidden;
                  }

                  .profile-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                  }

                  .live-badge {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    background-color: #f44336;
                    color: white;
                    padding: 5px 10px;
                    border-radius: 20px;
                    font-size: 12px;
                    font-weight: bold;
                  }

                  .viewers-count {
                    position: absolute;
                    bottom: 10px;
                    left: 10px;
                    background-color: rgba(0, 0, 0, 0.6);
                    color: white;
                    padding: 4px 10px;
                    border-radius: 15px;
                    font-size: 12px;
                  }

                  .profile-info {
                    padding: 15px;
                  }

                  .profile-name {
                    font-size: 18px;
                    font-weight: bold;
                    margin-bottom: 5px;
                  }

                  .profile-age {
                    background-color: #e91e63;
                    color: white;
                    padding: 2px 8px;
                    border-radius: 10px;
                    font-size: 12px;
                    display: inline-block;
                  }

                  .profile-desc {
                    color: #666;
                    font-size: 14px;
                    margin-bottom: 15px;
                  }

                  .action-btn {
                    display: block;
                    width: 100%;
                    padding: 10px;
                    background-color: #e91e63;
                    color: white;
                    border: none;
                    border-radius: 5px;
                    text-align: center;
                    text-decoration: none;
                    font-weight: bold;
                  }

                  .tags {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 8px;
                    margin-bottom: 10px;
                  }

                  .tag {
                    background-color: #f8bbd0;
                    color: #c2185b;
                    padding: 3px 10px;
                    border-radius: 15px;
                    font-size: 12px;
                  }
:root {
                    --bg: #0b0f14;
                    --card: #0f1a23;
                    --muted: #9fb0c8;
                    --accent: #ff6b6b;
                    --white: #ffffff;
                    --online-green: #4CAF50;
                    --live-red: #e63946;
                  }

                  * {
                    box-sizing: border-box
                  }

                  body {
                    margin: 0;
                    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
                    background: var(--bg);
                    color: var(--muted);
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    min-height: 100vh;
                    padding: 18px;
                  }

                  /* Grid */
                  .grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                    gap: 14px;
                    align-items: stretch;
                  }

                  .card {
                    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
                    border-radius: 12px;
                    overflow: hidden;
                    cursor: pointer;
                    transition: transform .18s ease, box-shadow .18s;
                    border: 1px solid rgba(255, 255, 255, 0.03);
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                    color: var(--live-red);
                    /* नाम का रंग लाल */
                  }

                  .card:hover {
                    transform: translateY(-6px);
                    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6)
                  }

                  .card img {
                    width: 100%;
                    height: 260px;
                    object-fit: cover;
                    display: block;
                    background: #111;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                  }

                  .card .meta {
                    padding: 10px 0;
                    text-align: center;
                    margin-top: auto;
                    font-weight: 700;
                    font-size: 18px;
                    user-select: none;
                    color: var(--live-red);
                    /* यहाँ नाम लाल रंग में */
                  }

                  