/* Overlay Popup */
.overlay-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.overlay-popup::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.overlay-popup.show {
  display: block;
}

.overlay-content {
  background: #fff;
  width: 100%;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  position: relative;
}

.overlay-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #333;
  border: 2px solid #ddd;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.overlay-close:hover {
  background: #f5f5f5;
  transform: rotate(90deg);
}

.overlay-back {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #333;
  border: 2px solid #ddd;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Circular Images */
.overlay-top-circles {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding: 10px;
}

.overlay-top-circles::-webkit-scrollbar {
  height: 4px;
}

.overlay-top-circles::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.overlay-top-circles::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.circle-img {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ff69b4;
  /* border-image: linear-gradient(135deg, #ff1493, #ff69b4, #9370db) 1; */
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(255, 20, 147, 0.3);
  cursor: pointer;
  transition: transform 0.3s;
}

.circle-img:hover {
  transform: scale(1.05);
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.3s;
  opacity: 0;
}

.circle-img img.lazy-loaded {
  opacity: 1;
}

/* Online Now Section */
.overlay-online-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 35px;
  padding: 0;
}

.online-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.random-btn {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.random-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.random-btn:active {
  transform: translateY(0);
}

.online-dot {
  width: 16px;
  height: 16px;
  background: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.overlay-online-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* User Cards Grid */
.overlay-user-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.overlay-user-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.overlay-user-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.user-card-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #f0f0f0;
}

.user-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.user-card-image img.lazy-loaded {
  opacity: 1;
}

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

.call-me-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  color: #ff1493;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.call-me-btn:hover {
  background: #ff1493;
  color: #fff;
  transform: scale(1.05);
}

.free-chat-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255, 20, 147, 0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}

.trans-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.user-card-info {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.user-card-info > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.online-indicator {
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.username {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flag {
  width: 24px;
  height: auto;
  border-radius: 3px;
}

.free-video-call-badge {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

@media (min-width: 601px) {
  .leak-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile Only */
@media (max-width: 600px) {
  .overlay-content {
    padding: 50px 12px 12px !important;
  }

  #profile-view .overlay-content {
    padding: 50px 0 0 0 !important;
  }

  .overlay-close {
    width: 35px !important;
    height: 35px !important;
    font-size: 20px !important;
    top: 8px !important;
    right: 8px !important;
  }

  .overlay-back {
    padding: 6px 10px !important;
    font-size: 13px !important;
    top: 8px !important;
    left: 8px !important;
  }

  .circle-img {
    width: 65px !important;
    height: 65px !important;
    min-width: 65px !important;
    border-width: 3px !important;
  }

  .overlay-online-section {
    margin-bottom: 20px !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .overlay-online-section h2 {
    font-size: 19px !important;
  }

  .online-dot {
    width: 12px !important;
    height: 12px !important;
  }

  .random-btn {
    padding: 8px 18px !important;
    font-size: 14px !important;
    width: 35% !important;
  }

  .overlay-user-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .user-card-image {
    height: 320px !important;
  }

  .call-me-btn {
    padding: 12px !important;
    font-size: 12px !important;
  }

  .free-chat-badge {
    padding: 6px 10px !important;
    font-size: 11px !important;
  }

  .username {
    font-size: 14px !important;
  }

  .free-video-call-badge {
    font-size: 12px !important;
    padding: 7px 10px !important;
  }

  /* Profile Mobile Layout */
  .profile-container {
    display: block !important;
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .profile-left {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .profile-main-image {
    height: 60vh !important;
    min-height: 400px !important;
    max-height: 600px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

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

  .profile-right {
    padding: 20px 15px !important;
    background: #f5f5f5 !important;
  }

  .profile-header {
    background: #fff !important;
    padding: 15px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    gap: 15px !important;
  }

  .profile-name-section {
    flex-wrap: wrap !important;
  }

  .profile-name-section h2 {
    font-size: 24px !important;
  }

  .profile-age {
    font-size: 20px !important;
  }

  .profile-flag {
    width: 24px !important;
  }

  .profile-photo-button {
    width: 35% !important;
  }

  .profile-photo-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .profile-actions {
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .profile-action-btn {
    padding: 14px 20px !important;
    font-size: 15px !important;
    border-radius: 25px !important;
  }

  .call-btn {
    background: linear-gradient(135deg, #ff1493, #ff69b4) !important;
    color: #fff !important;
    border: none !important;
  }

  .message-btn {
    background: #fff !important;
    color: #333 !important;
    border: 2px solid #e0e0e0 !important;
  }

  .message-btn:hover {
    background: #f5f5f5 !important;
    border-color: #ff69b4 !important;
  }

  .pic-btn {
    background: #fff !important;
    color: #333 !important;
    border: 2px solid #e0e0e0 !important;
  }

  .pic-btn:hover {
    background: #f5f5f5 !important;
    border-color: #ff69b4 !important;
  }

  .profile-about {
    background: #fff !important;
    padding: 20px 15px !important;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
  }

  .profile-about h3 {
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .profile-about p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .profile-tags {
    margin-top: 12px !important;
  }

  .tag {
    font-size: 13px !important;
    padding: 6px 14px !important;
  }

  .profile-subscribe {
    background: linear-gradient(135deg, #9370db, #ff69b4) !important;
    padding: 20px 15px !important;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
  }

  .profile-subscribe h3 {
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .benefits-list {
    margin-bottom: 15px !important;
  }

  .benefits-list li {
    font-size: 14px !important;
  }

  .subscribe-btn {
    background: linear-gradient(135deg, #ffd700, #ffa500) !important;
    color: #000 !important;
    font-size: 16px !important;
    padding: 14px 20px !important;
    border-radius: 25px !important;
  }

  .profile-related {
    background: #fff !important;
    padding: 20px 0 !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
  }

  .profile-related h3 {
    padding: 0 15px !important;
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }

  .related-creators {
    gap: 10px !important;
    padding: 0 15px 0 15px !important;
    scrollbar-width: thin !important;
  }

  .related-creators::-webkit-scrollbar {
    height: 4px !important;
  }

  .related-creators::-webkit-scrollbar-track {
    background: #f0f0f0 !important;
  }

  .related-creators::-webkit-scrollbar-thumb {
    background: #ff69b4 !important;
    border-radius: 10px !important;
  }

  .related-creator {
    min-width: 100px !important;
    max-width: 100px !important;
    padding: 10px 5px !important;
  }

  .related-creator img {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 8px !important;
    display: block !important;
  }

  .related-creator-info {
    text-align: center !important;
  }

  .related-name {
    font-size: 13px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block !important;
  }

  .related-age {
    font-size: 11px !important;
  }

  .view-all-btn {
    width: calc(100% - 30px) !important;
    margin: 0 15px 0 15px !important;
    border: 2px solid #e0e0e0 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
  }

  .view-all-btn:hover {
    background: #f5f5f5 !important;
    color: #ff1493 !important;
  }

  .overlay-close {
    width: 35px !important;
    height: 35px !important;
    font-size: 20px !important;
    top: 8px !important;
    right: 8px !important;
  }

  .overlay-back {
    padding: 6px 10px !important;
    font-size: 13px !important;
    top: 8px !important;
    left: 8px !important;
  }

  .circle-img {
    width: 65px !important;
    height: 65px !important;
    min-width: 65px !important;
    border-width: 3px !important;
  }

  .overlay-online-section {
    margin-bottom: 20px !important;
  }

  .overlay-online-section h2 {
    font-size: 19px !important;
  }

  .online-dot {
    width: 12px !important;
    height: 12px !important;
  }

  .overlay-user-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .user-card-image {
    height: 320px !important;
  }

  .call-me-btn {
    padding: 12px !important;
    font-size: 12px !important;
  }

  .free-chat-badge {
    padding: 6px 10px !important;
    font-size: 11px !important;
  }

  .username {
    font-size: 14px !important;
  }

  .age {
    font-size: 13px !important;
  }

  /* Profile Mobile Specific */
  .profile-main-image {
    height: 45vh !important;
    min-height: 300px !important;
    max-height: 450px !important;
  }

  .profile-right {
    padding: 12px 10px 40px !important;
  }

  .profile-header {
    padding: 12px !important;
    margin-bottom: 12px !important;
  }

  .profile-name-section {
    gap: 8px !important;
    flex-wrap: wrap !important;
  }

  .profile-name-section h2 {
    font-size: 20px !important;
    word-break: break-word !important;
    width: 100% !important;
  }

  .profile-age {
    font-size: 17px !important;
  }

  .profile-flag {
    width: 20px !important;
  }

  .profile-actions {
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .profile-action-btn {
    padding: 12px 16px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .profile-about,
  .profile-subscribe {
    padding: 15px 12px !important;
    margin-bottom: 12px !important;
  }

  .profile-about h3,
  .profile-subscribe h3 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  .profile-about p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .profile-tags {
    margin-top: 10px !important;
  }

  .tag {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }

  .benefits-list {
    margin-bottom: 12px !important;
  }

  .benefits-list li {
    font-size: 12px !important;
    padding: 5px 0 !important;
  }

  .subscribe-btn {
    font-size: 14px !important;
    padding: 12px 16px !important;
  }

  .profile-related {
    margin-bottom: 12px !important;
    padding: 15px 0 !important;
  }

  .profile-related h3 {
    font-size: 16px !important;
    margin-bottom: 12px !important;
    padding: 0 10px !important;
  }

  .related-creators {
    padding: 0 10px 0 10px !important;
    gap: 8px !important;
  }

  .related-creator {
    min-width: 85px !important;
    max-width: 85px !important;
    padding: 8px 3px !important;
  }

  .related-creator img {
    width: 65px !important;
    height: 65px !important;
  }

  .related-name {
    font-size: 11px !important;
  }

  .related-age {
    font-size: 10px !important;
  }

  .view-all-btn {
    width: calc(100% - 20px) !important;
    margin: 0 10px 0 10px !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
  }

  /* Leak Video Mobile */
  .profile-leak-videos {
    padding: 18px 12px !important;
    margin: 0 10px 12px 10px !important;
  }

  .profile-leak-videos h3 {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  .leak-video-thumbnails {
    gap: 8px !important;
  }

  .leak-video-thumbnails img {
    height: 80px !important;
  }

  .view-leak-btn {
    font-size: 15px !important;
    padding: 13px 20px !important;
  }

  #leak-video-page {
    padding-top: 50px !important;
  }

  .leak-video-container {
    padding: 10px !important;
  }

  .leak-video-grid {
    gap: 10px !important;
    margin-bottom: 80px !important;
  }

  .leak-video-loading-btn,
  .leak-video-view-btn {
    bottom: 10px !important;
    padding: 14px 30px !important;
    font-size: 15px !important;
    min-width: 200px !important;
  }
}

/* Profile Detail View */
.profile-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.profile-left {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.profile-main-image {
  width: 100%;
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
  opacity: 0;
}

.profile-main-image img.lazy-loaded {
  opacity: 1;
}

.profile-gallery {
  display: none;
}

.profile-right {
  padding-right: 20px;
  padding-bottom: 100px;
}

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

.profile-name-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-photo-button {
  display: flex;
  align-items: center;
}

.profile-photo-btn {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.profile-photo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.profile-name-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.profile-age {
  font-size: 24px;
  color: #666;
  font-weight: 500;
}

.profile-flag {
  width: 32px;
  height: auto;
  border-radius: 4px;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.profile-action-btn {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.call-btn {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.message-btn {
  background: #fff;
  color: #333;
  border: 2px solid #ddd;
}

.message-btn:hover {
  background: #f5f5f5;
  border-color: #ff69b4;
}

.pic-btn {
  background: #fff;
  color: #333;
  border: 2px solid #ddd;
}

.pic-btn:hover {
  background: #f5f5f5;
  border-color: #ff69b4;
}

.profile-about {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.profile-about h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #000;
}

.profile-about p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 15px 0;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #fff;
  color: #ff1493;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #ff69b4;
}

.profile-subscribe {
  background: linear-gradient(135deg, #9370db, #ff69b4);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
  color: #fff;
}

.profile-subscribe h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.benefits-list li {
  font-size: 15px;
  padding: 8px 0;
  line-height: 1.5;
}

.subscribe-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000;
  border: none;
  padding: 16px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.profile-related {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 16px;
}

.profile-related h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #000;
}

.related-creators {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.related-creators::-webkit-scrollbar {
  height: 6px;
}

.related-creators::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

.related-creators::-webkit-scrollbar-thumb {
  background: #ff69b4;
  border-radius: 10px;
}

.related-creator {
  min-width: 120px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.related-creator:hover {
  transform: scale(1.05);
}

.related-creator img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff69b4;
  margin-bottom: 8px;
  transition: opacity 0.3s;
  opacity: 0;
}

.related-creator img.lazy-loaded {
  opacity: 1;
}

.related-creator-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related-name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.related-age {
  font-size: 12px;
  color: #666;
}

.view-all-btn {
  width: 100%;
  background: #fff;
  color: #ff1493;
  border: 2px solid #ff69b4;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: #ff1493;
  color: #fff;
}

/* Leak Video Section */
.profile-leak-videos {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
  color: #fff;
}

.profile-leak-videos h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #fff;
  text-align: center;
}

.leak-video-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.leak-video-thumbnails img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.leak-video-thumbnails img.lazy-loaded {
  opacity: 1;
}

.leak-video-thumbnails img:hover {
  transform: scale(1.05);
}

.view-leak-btn {
  width: 100%;
  background: #fff;
  color: #ff1493;
  border: none;
  padding: 16px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-leak-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #ffe0f0;
}

/* Leak Video Page */
#leak-video-page {
  padding-top: 80px;
}

.leak-video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  min-height: 80vh;
}

.leak-video-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 100px;
}

.leak-video-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.leak-video-loading-btn,
.leak-video-view-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  justify-content: center;
}

.leak-video-view-btn {
  background: linear-gradient(135deg, #00ff00, #00cc00);
  animation: pulse 1.5s infinite;
}

.leak-video-view-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 255, 0, 0.5);
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(0, 255, 0, 0.7);
  }
}

/* Fixed Bottom Action Buttons */
.profile-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.profile-action-btn-fixed {
  flex: 1;
  width: 50%;
  padding: 18px 24px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.message-btn-fixed {
  background: #fff;
  color: #333;
  border-right: 1px solid #e0e0e0;
}

.message-btn-fixed:hover {
  background: #f5f5f5;
}

.call-btn-fixed {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: #fff;
}

.call-btn-fixed:hover {
  background: linear-gradient(135deg, #ff0080, #ff1493);
}

/* Video Call Page */
#video-call-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d1b69 0%, #1a0f3d 100%);
  z-index: 10000;
}

.video-call-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px 60px;
}

.video-call-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
}

#call-profile-name {
  font-size: 28px;
  font-weight: 700;
}

#call-timer {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.video-call-profile {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-call-profile img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-call-status {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 40px;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.video-call-controls {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.call-control-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.call-control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.end-call-btn {
  width: 70px;
  height: 70px;
  background: #ff3b30;
}

.end-call-btn:hover {
  background: #cc2e24;
  transform: scale(1.1);
}

/* Mobile Responsive for Fixed Buttons */
@media (max-width: 600px) {
  .profile-actions-fixed {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  .profile-action-btn-fixed {
    padding: 16px 20px;
    font-size: 15px;
  }

  .video-call-container {
    padding: 30px 15px 50px;
  }

  #call-profile-name {
    font-size: 24px;
  }

  .video-call-profile img {
    width: 220px;
    height: 220px;
  }

  .call-control-btn {
    width: 55px;
    height: 55px;
  }

  .end-call-btn {
    width: 65px;
    height: 65px;
  }

  .video-call-controls {
    gap: 20px;
  }
}

/* Chat Page Styles */
#chat-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffe6f0;
  z-index: 10000;
}

.chat-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffe6f0;
}

.chat-header {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.chat-back-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.chat-back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chat-header-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-header-info {
  flex: 1;
}

.chat-header-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.chat-online-status {
  font-size: 13px;
  color: #d5f4e6;
}

.chat-menu-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  background: #ffe6f0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23ffe6f0" width="100" height="100"/><circle fill="%23ffc4df" cx="50" cy="50" r="1"/></svg>');
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.chat-message {
  margin-bottom: 12px;
  display: flex;
  animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message {
  justify-content: flex-start;
}

.user-message {
  justify-content: flex-end;
}

.message-bubble {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  word-wrap: break-word;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bot-bubble {
  background: #fff;
  border-bottom-left-radius: 0;
}

.user-bubble {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: #fff;
  border-bottom-right-radius: 0;
}

.user-bubble .message-time {
  color: rgba(255, 255, 255, 0.8);
}

.image-bubble {
  padding: 4px;
  max-width: 250px;
}

.image-bubble img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.message-time {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  float: right;
  margin-left: 8px;
  margin-top: 4px;
}

.typing-indicator {
  padding: 0 16px 12px;
  display: flex;
  justify-content: flex-start;
}

.typing-bubble {
  background: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 0;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.typing-bubble span {
  width: 8px;
  height: 8px;
  background: #90949c;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-bubble span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-bubble span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
}

.chat-input-container {
  background: #fff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 -2px 10px rgba(255, 20, 147, 0.1);
}

.chat-input {
  flex: 1;
  background: #ffe6f0;
  border: 2px solid #ffb3d9;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}

.chat-input:focus {
  border-color: #ff69b4;
  background: #fff;
}

.chat-send-btn {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.chat-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* Chat Mobile Responsive */
@media (max-width: 600px) {
  .chat-header {
    padding: 8px 12px;
  }

  .chat-header-img {
    width: 36px;
    height: 36px;
  }

  .chat-header-info h3 {
    font-size: 15px;
  }

  .chat-online-status {
    font-size: 12px;
  }

  .chat-messages {
    padding: 16px 12px;
  }

  .message-bubble {
    max-width: 80%;
  }

  .chat-input-container {
    padding: 6px 12px;
  }

  .chat-input {
    padding: 8px 14px;
    font-size: 14px;
  }

  .chat-send-btn {
    width: 38px;
    height: 38px;
  }
}

/* Photos Page Styles */
#photos-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 10000;
  overflow-y: auto;
}

.photos-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.photos-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: photoFadeIn 0.5s ease-out;
}

.photos-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes photoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.photos-loading-btn {
  width: 100%;
  max-width: 400px;
  margin: 30px auto;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: wait;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.photos-error-btn {
  width: 100%;
  max-width: 400px;
  margin: 30px auto;
  padding: 20px 40px;
  background: #ff4444;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

/* Photos Mobile Responsive */
@media (max-width: 600px) {
  .photos-container {
    padding: 60px 12px 80px;
  }

  .photos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .photos-image {
    border-radius: 8px;
  }

  .photos-loading-btn,
  .photos-error-btn {
    max-width: 100%;
    padding: 16px 32px;
    font-size: 16px;
  }

  .profile-photo-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}
