
/* /src/routes/index.css */



/* /src/components/common/grid/gridMode.css */
.mm-grid-layout {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.mm-grid-container {
  box-sizing: border-box;
  gap: clamp(.5rem, 1vw, 1rem);
  width: 100%;
  height: auto;
  padding: clamp(.5rem, 1vw, 1rem);
  display: grid;
}

.mm-grid-item {
  aspect-ratio: 1;
  cursor: pointer;
  background: #0000000d;
  border-radius: clamp(.5rem, 1vw, 1rem);
  width: 100%;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.mm-grid-item:hover {
  transform: scale(1.03);
  box-shadow: 0 .5rem 2rem #00000026;
}

.mm-grid-media {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.mm-single-media-container {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  max-height: 40rem;
}

.mm-single-media-wrapper {
  cursor: pointer;
  border-radius: clamp(.5rem, 1vw, 1.25rem);
  width: 100%;
  height: 100%;
  transition: transform .3s;
  overflow: hidden;
}

.mm-single-media-wrapper:hover {
  transform: scale(1.01);
}

.mm-single-media-wrapper img, .mm-single-media-wrapper video {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.mm-modal-overlay {
  z-index: 10000;
  box-sizing: border-box;
  background: #000000e6;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 2vw, 2rem);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
}

.mm-modal-container {
  background: #24242d33;
  border-radius: clamp(.75rem, 1.5vw, 1.5rem);
  width: 100%;
  max-width: 90rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1rem 3rem #00000080;
}

.mm-modal-close {
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  background: #0009;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: clamp(2rem, 3vw, 2.5rem);
  height: clamp(2rem, 3vw, 2.5rem);
  font-size: clamp(1rem, 2vw, 1.5rem);
  transition: background .3s, transform .2s;
  display: flex;
  position: absolute;
  top: clamp(.5rem, 1vw, 1rem);
  right: clamp(.5rem, 1vw, 1rem);
}

.mm-modal-close:hover {
  background: #000c;
  transform: scale(1.1);
}

.mm-modal-content {
  grid-template-columns: 1fr;
  gap: 0;
  display: grid;
}

.mm-modal-media-section {
  background: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 50vh;
  display: flex;
  overflow: hidden;
}

.mm-modal-media {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-height: 50vh;
}

.mm-modal-details-section {
  flex-direction: column;
  gap: clamp(.75rem, 1.5vw, 1.5rem);
  max-height: 50vh;
  padding: clamp(1rem, 2vw, 2rem);
  display: flex;
  overflow-y: auto;
}

.mm-modal-user-info {
  border-bottom: 1px solid #0000001a;
  align-items: center;
  gap: clamp(.5rem, 1vw, 1rem);
  padding-bottom: clamp(.5rem, 1vw, 1rem);
  display: flex;
}

.mm-modal-user-avatar {
  object-fit: cover;
  border-radius: 50%;
  width: clamp(2.5rem, 4vw, 3rem);
  height: clamp(2.5rem, 4vw, 3rem);
}

.mm-modal-user-details {
  flex: 1;
}

.mm-modal-username {
  color: #1a1a1a;
  margin: 0;
  font-size: clamp(.875rem, 1.5vw, 1.125rem);
  font-weight: bold;
}

.mm-modal-location {
  color: #666;
  margin: 0;
  font-size: clamp(.75rem, 1.2vw, .875rem);
}

.mm-modal-description {
  color: #333;
  margin: 0;
  font-size: clamp(.875rem, 1.3vw, 1rem);
  line-height: 1.6;
}

.mm-modal-stats {
  display: grid;
  display: "flex";
  background: #00000008;
  border-radius: clamp(.5rem, 1vw, .75rem);
  flex-direction: row;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  gap: clamp(.5rem, 1vw, 1rem);
  padding: clamp(.75rem, 1.5vw, 1rem);
}

.mm-modal-stats-left {
  width: "80%";
  height: "100%";
  display: "flex";
  flex-direction: "row";
  justify-items: flex-start;
}

.mm-modal-stats-right {
  width: "20%";
  height: "100%";
  display: "flex";
  flex-direction: "row";
  justify-items: flex-end;
  margin-right: 20px;
}

.mm-modal-stat-item {
  flex-direction: row;
  align-items: center;
  gap: .25rem;
  display: flex;
}

.mm-modal-stat-icon {
  color: "white";
  font-size: 15px;
  font-weight: bold;
}

.mm-modal-stat-value {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.mm-modal-comments-section {
  flex-direction: column;
  gap: clamp(.75rem, 1.5vw, 1rem);
  display: flex;
}

.mm-modal-comments-title {
  color: #fff;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: bold;
}

.mm-modal-comments-list {
  background: #00000005;
  border-radius: clamp(.5rem, 1vw, .75rem);
  flex-direction: column;
  gap: clamp(.5rem, 1vw, .75rem);
  height: 140px;
  max-height: 15rem;
  padding: clamp(.5rem, 1vw, .75rem);
  display: flex;
  overflow-y: auto;
}

.mm-modal-comment {
  border-bottom: 1px solid #0000000d;
  flex-direction: column;
  gap: .25rem;
  padding-bottom: clamp(.5rem, 1vw, .75rem);
  display: flex;
}

.mm-modal-comment:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mm-modal-comment-user {
  color: #1a1a1a;
  font-size: clamp(.75rem, 1.2vw, .875rem);
  font-weight: bold;
}

.mm-modal-comment-text {
  color: #333;
  font-size: clamp(.75rem, 1.2vw, .875rem);
  line-height: 1.5;
}

.mm-modal-comment-time {
  color: #999;
  font-size: clamp(.625rem, 1vw, .75rem);
}

.mm-modal-no-comments {
  text-align: center;
  color: #999;
  padding: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(.75rem, 1.2vw, .875rem);
}

.mm-modal-add-comment {
  gap: clamp(.5rem, 1vw, .75rem);
  display: flex;
}

.mm-modal-comment-input {
  color: #fff;
  background: #24242d33;
  border: 1px solid #0003;
  border-radius: clamp(.5rem, 1vw, .75rem);
  outline: none;
  flex: 1;
  padding: clamp(.5rem, 1vw, .75rem);
  font-size: clamp(.75rem, 1.2vw, .875rem);
  transition: border-color .3s;
}

.mm-modal-comment-input:focus {
  border-color: #007bff;
}

.mm-modal-comment-button {
  color: #fff;
  cursor: pointer;
  background: #007bff;
  border: none;
  border-radius: clamp(.5rem, 1vw, .75rem);
  padding: clamp(.5rem, 1vw, .75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(.75rem, 1.2vw, .875rem);
  font-weight: bold;
  transition: background .3s, transform .2s;
}

.mm-modal-comment-button:hover {
  background: #0056b3;
  transform: translateY(-.125rem);
}

.mm-audio-container {
  background: #0000000d;
  border-radius: clamp(.5rem, 1vw, .75rem);
  flex-direction: column;
  gap: clamp(.5rem, 1vw, .75rem);
  padding: clamp(.75rem, 1.5vw, 1rem);
  display: flex;
}

.mm-audio-container audio {
  width: 100%;
}

@media (width >= 48rem) {
  .mm-modal-content {
    grid-template-columns: 1.5fr 1fr;
  }

  .mm-modal-media-section, .mm-modal-media, .mm-modal-details-section {
    max-height: 80vh;
  }
}

@media (width <= 47.9375rem) {
  .mm-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .mm-modal-overlay {
    padding: 0;
  }

  .mm-modal-container {
    border-radius: 0;
    height: 100%;
  }

  .mm-modal-content {
    height: 100%;
  }

  .mm-modal-details-section {
    max-height: none;
  }
}

.mm-logo-quality-row {
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 8px;
  padding: 10px 0;
  display: flex;
}

.mm-logo-wrap {
  flex-shrink: 0;
}

.mm-modal-logo {
  object-fit: contain;
  border-radius: 8px;
  width: 40px;
  height: 40px;
}

.mm-quality-stars {
  align-items: center;
  gap: 2px;
  display: flex;
}

.mm-quality-label {
  color: gold;
  letter-spacing: .04em;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
}

.mm-about-section {
  border-radius: 10px;
  width: 100%;
  margin-top: -20px;
  margin-bottom: 12px;
  padding: 12px 14px;
}

.mm-about-row {
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  display: flex;
}

.mm-about-label {
  color: #ffffff80;
  flex-shrink: 0;
  min-width: 90px;
}

.mm-about-value {
  color: #ffffffe6;
}

.mm-metadata-row {
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 8px 0;
  display: flex;
}

.mm-metadata-label {
  color: #fff9;
  flex-shrink: 0;
  min-width: 110px;
  font-size: 12px;
  font-weight: 600;
}

.mm-metadata-select {
  color: #fff;
  cursor: pointer;
  background: #24242d80;
  border: 1px solid #a88bfa33;
  border-radius: 6px;
  flex: 1;
  height: 32px;
  padding: 0 10px;
  font-size: 12px;
  transition: border-color .2s, box-shadow .2s;
}

.mm-metadata-select--highlight {
  color: #ffc107;
  background: #ffc10714;
  border-color: #ffc10766;
  font-weight: 600;
}

.mm-metadata-select--highlight:hover, .mm-metadata-select--highlight:focus {
  border-color: #ffc107b3;
  outline: none;
  box-shadow: 0 0 0 2px #ffc10726;
}

.mm-metadata-select--highlight option {
  color: #fff;
  background: #1a1a22;
  font-weight: 400;
}

.mm-double-click-hint {
  color: #fff6;
  text-align: center;
  letter-spacing: .03em;
  margin-top: 8px;
  font-size: 11px;
}

.mm-action-btn-wrapper {
  position: relative;
}

.mm-action-btn {
  color: #fff;
  cursor: pointer;
  background: #24242d33;
  border: 1px solid gray;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  font-size: 13px;
  transition: background .18s, border-color .18s;
  display: inline-flex;
}

.mm-share-dropdown {
  z-index: 100;
  background: #14141cfa;
  border: 1px solid #a88bfa40;
  border-radius: 12px;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  margin-bottom: 8px;
  padding: 6px;
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 0;
  box-shadow: 0 8px 24px #00000080;
}

.mm-share-option {
  color: #fff;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  transition: background .15s;
  display: flex;
}

.mm-share-option:hover {
  background: #a88bfa26;
}

.mm-share-icon {
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.mm-share-icon--facebook {
  color: #fff;
  background: #1877f2;
}

.mm-share-icon--instagram {
  background: #e1306c;
}

.mm-share-icon--snapchat {
  background: #fffc00;
}

.mm-share-icon--tiktok {
  color: #fff;
  background: #000;
  border: 1px solid #25f4ee;
}

.mm-suggest-overlay {
  z-index: 200;
  background: #000000b3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.mm-suggest-modal {
  background: #14141cfa;
  border: 1px solid #2f4f4f;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  padding: 28px 32px;
  position: relative;
}

.mm-suggest-close {
  color: #fff9;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 12px;
  right: 16px;
}

.mm-suggest-close:hover {
  color: #fff;
}

.mm-suggest-title {
  color: #fff;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.mm-suggest-help {
  color: #ffffff80;
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.5;
}

.mm-suggest-input-row {
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  display: flex;
}

.mm-suggest-label {
  color: #ffffffb3;
  letter-spacing: .04em;
  font-size: 12px;
  font-weight: 600;
}

.mm-suggest-input {
  color: #fff;
  background: #24242d99;
  border: 1px solid #a88bfa40;
  border-radius: 10px;
  outline: none;
  height: 42px;
  padding: 0 14px;
  font-size: 14px;
  transition: border-color .18s, box-shadow .18s;
}

.mm-suggest-input:focus {
  border-color: #a88bfa99;
  box-shadow: 0 0 0 3px #a88bfa1f;
}

.mm-suggest-input::placeholder {
  color: #ffffff4d;
}

.mm-suggest-actions {
  justify-content: flex-end;
  gap: 12px;
  display: flex;
}

.mm-suggest-cancel {
  color: #ffffffb3;
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff26;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  transition: background .15s;
}

.mm-suggest-cancel:hover {
  background: #ffffff0f;
}

.mm-suggest-submit {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity .15s, transform .15s;
}

.mm-suggest-submit:hover {
  transform: translateY(-1px);
}

.mm-suggest-submit:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

.mm-toast {
  color: #fff;
  z-index: 300;
  background: #14141cfa;
  border: 1px solid #a88bfa4d;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 13px;
  animation: .3s mmToastIn;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 24px #00000080;
}

@keyframes mmToastIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%);
  }
}

.mm-metadata-highlight {
  color: #ffc107;
  background: #ffc1071a;
  border: 1px solid #ffc10740;
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 600;
}

.mm-metadata-value {
  margin: 0;
  font-size: 13px;
}

.mm-comment-thread {
  margin-bottom: 12px;
}

.mm-modal-comment {
  background: #24242d4d;
  border: 1px solid #a88bfa1a;
  border-radius: 10px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 12px;
  display: flex;
}

.mm-comment-body {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.5;
}

.mm-reply-btn {
  color: gray;
  cursor: pointer;
  letter-spacing: .03em;
  background: none;
  border: 1px solid #2f4f4f;
  border-radius: 6px;
  flex-shrink: 0;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  transition: background .15s, border-color .15s, color .15s;
}

.mm-reply-input-row {
  background: #24242d33;
  border: 1px solid #2f4f4f;
  border-radius: 10px;
  margin-top: 8px;
  margin-left: 24px;
  padding: 10px 14px;
}

.mm-reply-mention {
  color: #a88bfab3;
  margin-bottom: 6px;
  font-size: 11px;
  font-style: italic;
  display: block;
}

.mm-reply-input-controls {
  gap: 8px;
  display: flex;
}

.mm-reply-input {
  color: #fff;
  background: #24242d99;
  border: 1px solid #a88bfa33;
  border-radius: 8px;
  outline: none;
  flex: 1;
  height: 34px;
  padding: 0 12px;
  font-size: 12px;
  transition: border-color .18s;
}

.mm-reply-input:focus {
  border-color: #a88bfa80;
}

.mm-reply-input::placeholder {
  color: #ffffff4d;
}

.mm-reply-submit-btn {
  color: #fff;
  cursor: pointer;
  border: none;
  border: "1px solid darkslategray";
  background: #24242d33;
  border-radius: 8px;
  flex-shrink: 0;
  height: 34px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity .15s, transform .15s;
}

.mm-reply-submit-btn:hover {
  transform: translateY(-1px);
}

.mm-reply-submit-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}

.mm-replies-container {
  border-left: 2px solid #a88bfa33;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  margin-left: 24px;
  padding-left: 14px;
  display: flex;
}

.mm-reply-item {
  background: #24242d33;
  border-radius: 8px;
  gap: 10px;
  padding: 8px 12px;
  display: flex;
}

.mm-reply-avatar {
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.mm-reply-avatar-text {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.mm-reply-content {
  flex: 1;
  min-width: 0;
}

.mm-reply-header {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  display: flex;
}

.mm-reply-user {
  color: #a78bfa;
  font-size: 12px;
}

.mm-reply-mention-inline {
  color: #a88bfa99;
  font-size: 11px;
  font-style: italic;
}

.mm-reply-time {
  color: #ffffff4d;
  margin-left: auto;
  font-size: 10px;
}

.mm-reply-text {
  color: #ffffffd9;
  font-size: 12px;
  line-height: 1.4;
}


/* /src/components/common/lightbox/lightBox.css */
.lb-container {
  background: #00000008;
  border-radius: 12px;
  gap: .75rem;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: .5rem;
  display: grid;
  position: relative;
  overflow: hidden;
}

.lb-grid-2 {
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
}

.lb-grid-3 {
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 2fr 1fr;
}

.lb-grid-3 .lb-grid-item:first-child {
  grid-row: 1 / 3;
}

.lb-grid-4 {
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
}

.lb-grid-6 {
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
}

.lb-grid-6 .lb-grid-item:first-child {
  grid-area: 1 / 1 / 3 / 3;
}

.lb-grid-many {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: minmax(150px, 200px);
  max-height: 500px;
  overflow-y: auto;
}

.lb-grid-item {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

.lb-media-item {
  object-fit: cover;
  cursor: pointer;
  filter: grayscale() brightness(.7);
  opacity: .8;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.lb-media-item:hover {
  filter: grayscale(0%) brightness();
  opacity: 1;
  z-index: 2;
  transform: scale(1.05);
  box-shadow: 0 8px 24px #0000004d;
}

.lb-container:hover .lb-media-item:not(:hover) {
  filter: grayscale() brightness(.4);
  opacity: .6;
  transform: scale(.95);
}

.lb-media-item.lb-focused {
  filter: grayscale(0%) brightness();
  opacity: 1;
  z-index: 10;
  transform: scale(1.1);
  box-shadow: 0 12px 32px #0006;
}

.lb-video-wrapper {
  background: #000000b3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.lb-video-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.lb-video-play-icon {
  color: #000;
  pointer-events: none;
  background: #ffffffe6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 24px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lb-video-wrapper:hover .lb-video-play-icon {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.lb-audio-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  display: flex;
}

.lb-audio-icon {
  font-size: 4rem;
  animation: 2s ease-in-out infinite pulse;
}

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

  50% {
    transform: scale(1.1);
  }
}

.lb-audio-label {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 1rem;
  font-weight: bold;
}

.lb-single-media {
  background: #00000008;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  overflow: hidden;
}

.lb-single-media .lb-media-item {
  object-fit: contain;
  filter: grayscale() brightness(.7);
  max-width: 100%;
  max-height: 100%;
}

.lb-single-media .lb-media-item:hover {
  filter: grayscale(0%) brightness();
}

.lb-detail-overlay {
  z-index: 9999;
  background: #000000f2;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  animation: .3s fadeIn;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lb-detail-modal {
  background: #fff;
  border-radius: 12px;
  width: 90vw;
  max-width: 1200px;
  height: 85vh;
  max-height: 800px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px #00000080;
}

.lb-detail-close {
  color: #fff;
  cursor: pointer;
  z-index: 10;
  background: #000000b3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.lb-detail-close:hover {
  background: #000000e6;
  transform: scale(1.1);
}

.lb-detail-media {
  background: #000;
  flex: 1.5;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.lb-detail-media-content {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.lb-detail-audio-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  flex-direction: column;
  gap: 1.5rem;
  width: 80%;
  padding: 2rem;
  display: flex;
}

.lb-detail-audio-wrapper audio {
  width: 100%;
}

.lb-detail-sidebar {
  background: #fff;
  flex-direction: column;
  flex: 1;
  max-width: 400px;
  display: flex;
}

.lb-detail-header {
  border-bottom: 1px solid #e0e0e0;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.lb-detail-user {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.lb-detail-avatar {
  object-fit: cover;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.lb-detail-user-info {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.lb-detail-username {
  font-size: .9rem;
  font-weight: 600;
}

.lb-detail-location {
  color: #666;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  display: flex;
}

.lb-detail-menu {
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
  padding: .5rem;
}

.lb-detail-menu:hover {
  color: #000;
}

.lb-detail-description {
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem;
  font-size: .9rem;
  line-height: 1.5;
}

.lb-detail-desc-username {
  margin-right: .5rem;
  font-weight: 600;
}

.lb-detail-desc-text {
  color: #333;
}

.lb-detail-comments {
  border-bottom: 1px solid #e0e0e0;
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.lb-detail-comment {
  gap: .75rem;
  margin-bottom: 1rem;
  display: flex;
}

.lb-detail-comment-avatar {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.lb-detail-comment-content {
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  display: flex;
}

.lb-detail-comment-text {
  font-size: .85rem;
  line-height: 1.4;
}

.lb-detail-comment-username {
  margin-right: .5rem;
  font-weight: 600;
}

.lb-detail-comment-meta {
  color: #999;
  gap: 1rem;
  font-size: .75rem;
  display: flex;
}

.lb-detail-comment-meta button {
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: .75rem;
  font-weight: 600;
}

.lb-detail-comment-meta button:hover {
  color: #666;
}

.lb-detail-comment-like {
  cursor: pointer;
  color: #999;
  background: none;
  border: none;
  padding: 0;
}

.lb-detail-comment-like:hover {
  color: #e74c3c;
}

.lb-detail-no-comments {
  text-align: center;
  color: #999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 2rem;
  display: flex;
}

.lb-detail-no-comments svg {
  opacity: .3;
}

.lb-detail-no-comments p {
  color: #333;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.lb-detail-no-comments span {
  font-size: .85rem;
}

.lb-detail-footer {
  border-top: 1px solid #e0e0e0;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem;
  display: flex;
}

.lb-detail-actions {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.lb-detail-actions-left {
  gap: 1rem;
  display: flex;
}

.lb-detail-action-btn {
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
  padding: 0;
  transition: all .2s;
}

.lb-detail-action-btn:hover {
  color: #000;
  transform: scale(1.1);
}

.lb-detail-stats {
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  display: flex;
}

.lb-detail-likes {
  font-weight: 600;
}

.lb-detail-time {
  color: #999;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  display: flex;
}

.lb-detail-suggests {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 6px;
  padding: .5rem .75rem;
  font-size: .85rem;
  font-weight: 500;
}

.lb-detail-comment-form {
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  align-items: center;
  gap: .5rem;
  padding: .5rem;
  display: flex;
}

.lb-detail-comment-input {
  border: none;
  outline: none;
  flex: 1;
  padding: .5rem;
  font-size: .9rem;
}

.lb-detail-comment-submit {
  color: #0095f6;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  transition: all .2s;
  display: flex;
}

.lb-detail-comment-submit:disabled {
  color: #b3d4ff;
  cursor: not-allowed;
}

.lb-detail-comment-submit:not(:disabled):hover {
  transform: scale(1.1);
}

@media (width <= 768px) {
  .lb-detail-modal {
    flex-direction: column;
    width: 95vw;
    height: 90vh;
  }

  .lb-detail-media {
    flex: 1;
    max-height: 50%;
  }

  .lb-detail-sidebar {
    flex: 1;
    max-width: 100%;
  }

  .lb-container {
    gap: .5rem;
    min-height: 300px;
  }

  .lb-grid-2, .lb-grid-3, .lb-grid-4, .lb-grid-6 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .lb-grid-3 .lb-grid-item:first-child, .lb-grid-6 .lb-grid-item:first-child {
    grid-area: auto / 1;
  }
}


/* /src/components/common/carousal/Carousel.css */
.carousel-frame-container {
  box-sizing: border-box;
  background: #24242d33;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.carousel-empty {
  text-align: center;
  color: #fff6;
  padding: 3rem;
  font-size: 14px;
}

.carousel-single-view {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.carousel-media {
  object-fit: contain;
  cursor: pointer;
  border-radius: 8px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transition: transform .3s;
  display: block;
}

.carousel-media-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.carousel-audio {
  cursor: pointer;
  background: linear-gradient(135deg, #7c3aed4d 0%, #4c1d9533 100%);
  border: 1px solid #a88bfa33;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 85%;
  max-width: 500px;
  padding: 2rem;
  transition: transform .3s;
  display: flex;
}

.carousel-audio audio {
  width: 100%;
}

.waveform-container {
  width: 100%;
  margin-bottom: 1rem;
}

.carousel-caption {
  color: #fff;
  pointer-events: none;
  z-index: 5;
  background-color: #000000b3;
  border-radius: 8px;
  max-width: 80%;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.carousel-button {
  color: #fff;
  cursor: pointer;
  z-index: 100;
  background-color: #0009;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-button:hover {
  background-color: #7c3aedcc;
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 1.5rem;
}

.carousel-button.next {
  right: 1.5rem;
}

.carousel-dots {
  z-index: 100;
  gap: 10px;
  display: flex;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-dot {
  cursor: pointer;
  background-color: #fff6;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: all .3s;
}

.carousel-dot.active {
  background-color: #a78bfa;
  transform: scale(1.3);
}

.carousel-detail-overlay {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  animation: .3s fadeIn;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.carousel-detail-modal {
  background: #14141cfa;
  border-radius: 12px;
  width: 90vw;
  max-width: 1200px;
  height: 85vh;
  max-height: 800px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.carousel-detail-close {
  color: #fff;
  cursor: pointer;
  z-index: 10;
  background: #000000b3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.carousel-detail-close:hover {
  background: #7c3aedcc;
  transform: scale(1.1);
}

.carousel-detail-media-section {
  flex-direction: column;
  flex: 1.5;
  display: flex;
  overflow: hidden;
}

.carousel-detail-media {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.carousel-detail-audio {
  background: linear-gradient(135deg, #7c3aed4d 0%, #4c1d9533 100%);
  border-radius: 12px;
  flex-direction: column;
  gap: 1.5rem;
  width: 80%;
  padding: 2rem;
  display: flex;
}

.carousel-detail-audio audio {
  width: 100%;
}

.carousel-detail-sidebar {
  flex-direction: column;
  flex: 1;
  max-width: 420px;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.carousel-detail-header {
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.carousel-detail-user {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.carousel-detail-avatar {
  object-fit: cover;
  border: 1px solid #a88bfa4d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.carousel-detail-user-info {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.carousel-detail-username {
  font-size: .9rem;
  font-weight: 600;
}

.carousel-detail-location {
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  display: flex;
}

@media (width <= 768px) {
  .carousel-frame-container {
    height: 400px;
    padding: .75rem;
  }

  .carousel-button {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .carousel-detail-modal {
    flex-direction: column;
    width: 95vw;
    height: 90vh;
  }

  .carousel-detail-media-section {
    flex: 1;
    max-height: 50%;
  }

  .carousel-detail-sidebar {
    flex: 1;
    max-width: 100%;
  }
}

@media (width <= 480px) {
  .carousel-frame-container {
    height: 350px;
    padding: .5rem;
  }

  .carousel-detail-modal {
    border-radius: 0;
    width: 100vw;
    height: 100vh;
  }
}
