
#preloader[data-v-1ff0ae61] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--color-bg);
}
#loader[data-v-1ff0ae61] {
    position: absolute;
    top: 50%;
    left: calc(50% - 30px);
    transform: translate(-50%, -50%);
    width: 60px;
    height: 16px;
    display: flex;
    justify-content: space-between;
    animation: l3-0-1ff0ae61 2s infinite alternate;
}
#loader[data-v-1ff0ae61]:before,
#loader[data-v-1ff0ae61]:after {
    content: "";
    width: 16px;
    background: #3b82f6;
    animation: l3-1-1ff0ae61 1s infinite alternate;
}
#loader[data-v-1ff0ae61]:after {
    background: #ec4899;
    --s: -1;
}
@keyframes l3-0-1ff0ae61 {
0%, 40% {
        transform: rotate(0)
}
80%, 100% {
        transform: rotate(.5turn)
}
}
@keyframes l3-1-1ff0ae61 {
80%, 100% {
        transform: translate(calc(var(--s, 1) * 14px))
}
}

#spinner[data-v-6f563ebc] {
    transform-origin: center;
    animation-name: spinner-anim-6f563ebc;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier;
    animation-iteration-count: infinite;
}
@keyframes spinner-anim-6f563ebc {
0% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -105;
}
50% {
        stroke-dasharray: 80 10;
        stroke-dashoffset: -160;
}
100% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -300;
}
}
.compose-card[data-v-1e60b920] {
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  transition: box-shadow 0.2s ease;
}
.compose-card[data-v-1e60b920]:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.avatar[data-v-1e60b920] {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.input-area[data-v-1e60b920] {
  flex: 1;
  align-self: center;
}
.actions-row[data-v-1e60b920] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.875rem;
  padding-top: 0;
}
.action-btns[data-v-1e60b920] {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.action-btn[data-v-1e60b920] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.action-btn[data-v-1e60b920]:hover {
  border-color: rgba(236, 72, 153, 0.3);
  color: #ec4899;
  background: rgba(236, 72, 153, 0.05);
}
.action-btn .act-icon[data-v-1e60b920] {
  font-size: 1.15rem;
  line-height: 1;
}
.action-btn .act-icon .i2[data-v-1e60b920] {
  display: none;
}
.action-btn .act-icon .i1[data-v-1e60b920] {
  display: inline-block;
}
.action-btn:hover .act-icon .i1[data-v-1e60b920] {
  display: none;
}
.action-btn:hover .act-icon .i2[data-v-1e60b920] {
  display: inline-block;
}
.action-btn .act-label[data-v-1e60b920] {
  font-size: 0.8rem;
}
.post-btn[data-v-1e60b920] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #ec4899, #e11d48);
  box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.post-btn[data-v-1e60b920]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
  background: linear-gradient(135deg, #f062a5, #ec2055);
}
.post-btn[data-v-1e60b920]:active:not(:disabled) {
  transform: translateY(0);
}
.post-btn[data-v-1e60b920]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}
.media-preview[data-v-1e60b920] {
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.photo-preview[data-v-1e60b920] {
  width: 100%;
  height: 40vh;
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #525252;
  border: 1px solid var(--color-border);
}
.loading-block[data-v-1e60b920] {
  padding: 2rem 0;
}
.progress-bar[data-v-1e60b920] {
  width: 100%;
  height: 3px;
  background: var(--color-surface-soft);
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 0.75rem;
}
.progress-fill[data-v-1e60b920] {
  height: 100%;
  border-radius: 1rem;
  background: linear-gradient(90deg, #ec4899, #e11d48);
  transition: width 0.3s ease;
}
@media (max-width: 480px) {
.compose-card[data-v-1e60b920] {
    padding: 0.75rem 1rem;
}
.actions-row[data-v-1e60b920] {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
}
.action-btns[data-v-1e60b920] {
    justify-content: center;
}
.post-btn[data-v-1e60b920] {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.5rem;
}
.photo-preview[data-v-1e60b920] {
    height: 30vh;
    min-height: 160px;
}
}
.video-wrapper[data-v-b1844139] {
    min-height: 300px;
    position: relative;
}
.player-overlay[data-v-b1844139] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
}
.adult-content[data-v-b1844139] {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    background: black;
    opacity: .95;
}
video[data-v-b1844139] {
    display: block;
    width: 100%;
    height: 100%;
}

.flagged[data-v-98fd72cd] {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.skeleton-shimmer[data-v-90a35e55] {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer-90a35e55 1.5s infinite;
}
.lightbox-fade-enter-active[data-v-90a35e55],
.lightbox-fade-leave-active[data-v-90a35e55] {
    transition: opacity 0.25s ease;
}
.lightbox-fade-enter-from[data-v-90a35e55],
.lightbox-fade-leave-to[data-v-90a35e55] {
    opacity: 0;
}
@keyframes shimmer-90a35e55 {
0% {
        background-position: 200% 0;
}
100% {
        background-position: -200% 0;
}
}

.lightbox-fade-enter-active[data-v-b40a4248],
.lightbox-fade-leave-active[data-v-b40a4248] {
    transition: opacity 0.25s ease;
}
.lightbox-fade-enter-from[data-v-b40a4248],
.lightbox-fade-leave-to[data-v-b40a4248] {
    opacity: 0;
}

.video-play-button[data-v-dc6e9060] {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 2px solid rgb(255 255 255 / 0.9);
    border-radius: 9999px;
    background: rgb(0 0 0 / 0.45);
    color: #fff;
    pointer-events: none;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.35);
}
.video-play-button i[data-v-dc6e9060] {
    margin-left: 4px;
    font-size: 24px;
    line-height: 1;
}
.media-lock[data-v-dc6e9060] {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgb(0 0 0 / 0.08);
    color: #fff;
    cursor: pointer;
}
.media-lock i[data-v-dc6e9060] {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgb(0 0 0 / 0.42);
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.28);
}
@media (max-width: 640px) {
.video-play-button[data-v-dc6e9060] {
        width: 54px;
        height: 54px;
}
.video-play-button i[data-v-dc6e9060] {
        font-size: 20px;
}
.media-lock i[data-v-dc6e9060] {
        width: 46px;
        height: 46px;
        font-size: 21px;
}
}
.poll[data-v-40016f6c] {
  padding: 0 0.75rem;
}
@media (min-width: 768px) {
.poll[data-v-40016f6c] {
    padding: 0;
}
}
.question[data-v-40016f6c] {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: var(--color-text);
}
.options[data-v-40016f6c] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.option-card[data-v-40016f6c] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
}
.option-card[data-v-40016f6c]:hover {
  border-color: rgba(236, 72, 153, 0.3);
  background: rgba(236, 72, 153, 0.04);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.option-card.selected[data-v-40016f6c] {
  border-color: #ec4899;
  background: rgba(236, 72, 153, 0.06);
  box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.15);
}
.option-radio[data-v-40016f6c] {
  flex-shrink: 0;
}
.radio-circle[data-v-40016f6c] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: transparent;
}
.radio-circle.checked[data-v-40016f6c] {
  border-color: #ec4899;
  background: #ec4899;
  color: white;
}
.option-text[data-v-40016f6c] {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.35;
  word-break: break-word;
}
.vote-btn[data-v-40016f6c] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.25);
}
.vote-btn[data-v-40016f6c]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
}
.vote-btn[data-v-40016f6c]:active {
  transform: translateY(0);
}
.results[data-v-40016f6c] {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.results-header[data-v-40016f6c] {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.total-votes[data-v-40016f6c] {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background: var(--color-surface-soft);
}
.result-card[data-v-40016f6c] {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1.5px solid var(--color-border);
  transition: all 0.2s ease;
  background: var(--color-surface);
}
.result-card.voted[data-v-40016f6c] {
  border-color: rgba(236, 72, 153, 0.25);
  background: rgba(236, 72, 153, 0.03);
}
.result-card.winner[data-v-40016f6c] {
  border-color: rgba(168, 85, 247, 0.3);
}
.result-top[data-v-40016f6c] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.result-text[data-v-40016f6c] {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  word-break: break-word;
}
.result-pct[data-v-40016f6c] {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ec4899;
  flex-shrink: 0;
}
.bar-track[data-v-40016f6c] {
  width: 100%;
  height: 6px;
  border-radius: 1rem;
  background: var(--color-surface-soft);
  overflow: hidden;
}
.bar-fill[data-v-40016f6c] {
  height: 100%;
  border-radius: 1rem;
  background: linear-gradient(90deg, #ec4899, #a855f7);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 0;
}
.result-meta[data-v-40016f6c] {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
}
.voted-icon[data-v-40016f6c] {
  font-size: 0.8rem;
  color: #ec4899;
}
.vote-count[data-v-40016f6c] {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}.re-post a[data-v-6f5dd729] {
  text-decoration: none;
}
.post-heading[data-v-6f5dd729], .user-name[data-v-6f5dd729] {
  max-width: 230px;
}
@media (min-width: 1200px) {
.post-heading[data-v-6f5dd729], .user-name[data-v-6f5dd729] {
    max-width: 400px;
}
}
.options-button[data-v-6f5dd729] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  color: var(--color-text-muted);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.options-button[data-v-6f5dd729]:hover,
.options-button[aria-expanded=true][data-v-6f5dd729] {
  background: var(--color-surface-soft);
  color: var(--color-text);
}
.options-menu[data-v-6f5dd729] {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 9999;
  min-width: 11rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}
.dark .options-menu[data-v-6f5dd729] {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}
.options-menu-item[data-v-6f5dd729] {
  display: block;
  padding: 0.5rem 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.options-menu-item[data-v-6f5dd729]:hover {
  background: var(--color-surface-soft);
  color: var(--color-hover);
}
.options-menu-item-danger[data-v-6f5dd729] {
  color: var(--color-danger);
}
.options-divider[data-v-6f5dd729] {
  margin: 0.25rem 0;
  border-color: var(--color-border);
}
.comment[data-v-b620bc31] {
    font-size: 18px;
    word-break: break-all;
}

.call-toast[data-v-d86c19ce] {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    background: var(--color-surface, #1e293b);
    border: 1px solid var(--color-border, #334155);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    cursor: pointer;
    min-width: 300px;
    max-width: 420px;
    animation: slideDown-d86c19ce 0.3s ease;
}
@keyframes slideDown-d86c19ce {
from { opacity: 0; transform: translateX(-50%) translateY(-20px);
}
to { opacity: 1; transform: translateX(-50%) translateY(0);
}
}
.toast-content[data-v-d86c19ce] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.toast-avatar[data-v-d86c19ce] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    border: 2px solid var(--color-accent-2, #ec4899);
    flex-shrink: 0;
}
.toast-text[data-v-d86c19ce] {
    flex: 1;
    min-width: 0;
}
.toast-title[data-v-d86c19ce] {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text, #e2e8f0);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.toast-subtitle[data-v-d86c19ce] {
    font-size: 0.8rem;
    color: var(--color-text-muted, #94a3b8);
    margin-top: 2px;
}
.toast-decline[data-v-d86c19ce] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #ef4444;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.toast-decline[data-v-d86c19ce]:hover {
    background: #dc2626;
}
.call-overlay[data-v-d86c19ce] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-window[data-v-d86c19ce] {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 100vh;
    max-height: 700px;
    background: #000;
    display: flex;
    flex-direction: column;
}
.remote-video-container[data-v-d86c19ce] {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}
.remote-video[data-v-d86c19ce] {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    background: #0a0a0a;
}
.camera-off-placeholder[data-v-d86c19ce] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
}
.camera-off-placeholder i[data-v-d86c19ce] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.call-status-bar[data-v-d86c19ce] {
    text-align: center;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    min-height: 1.8rem;
    z-index: 3;
}
.status-connected[data-v-d86c19ce] {
    color: #4ade80;
}
.status-error[data-v-d86c19ce] {
    color: #f87171;
}
.call-controls[data-v-d86c19ce] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    z-index: 3;
}
.local-preview[data-v-d86c19ce] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28%;
    max-width: 160px;
    border-radius: 12px;
    background: #1a1a1a;
    -o-object-fit: cover;
       object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
    z-index: 2;
}
.ctrl-btn[data-v-d86c19ce] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.ctrl-btn.active[data-v-d86c19ce] {
    background: rgba(255,255,255,0.3);
}
.ctrl-btn[data-v-d86c19ce]:hover {
    background: rgba(255,255,255,0.4);
}
.call-actions[data-v-d86c19ce] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
    z-index: 3;
}
.action-btn[data-v-d86c19ce] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, background 0.2s;
}
.action-btn[data-v-d86c19ce]:hover { transform: scale(1.08);
}
.action-btn.hangup[data-v-d86c19ce] { background: #ef4444; color: #fff;
}
.action-btn.decline[data-v-d86c19ce] { background: #ef4444; color: #fff;
}
.action-btn.accept[data-v-d86c19ce] { background: #22c55e; color: #fff;
}
@media (max-width: 600px) {
.call-window[data-v-d86c19ce] { max-height: 100vh;
}
.local-preview[data-v-d86c19ce] { width: 35%; max-width: 120px; top: 0.5rem; right: 0.5rem;
}
.ctrl-btn[data-v-d86c19ce] { width: 44px; height: 44px; font-size: 1.1rem;
}
.action-btn[data-v-d86c19ce] { width: 50px; height: 50px; font-size: 1.3rem;
}
.call-toast[data-v-d86c19ce] { left: 0.5rem; right: 0.5rem; transform: none; min-width: 0;
}
}

.mnav-item[data-v-0cdf23ff] {
    background: none;
    border: none;
    font-size: 17px;
    cursor: pointer;
    padding: 0;
    border-radius: 0.5rem;
    transition: background 0.2s;
}
.mnav-item[data-v-0cdf23ff]:hover {
    background: rgba(236, 72, 153, 0.08);
}
.dark {
    background: rgba(255, 255, 255, 0.06);
}
.mnav-item a[data-v-0cdf23ff] {
    text-decoration: none;
    color: var(--color-text-muted);
    display: flex;
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
}
.dark {
    color: rgba(255, 255, 255, 0.65);
}
.mnav-item a.router-link-active[data-v-0cdf23ff] {
    color: var(--color-hover);
    font-weight: 600;
}
.mnav-item a .i2[data-v-0cdf23ff] {
    display: none;
}
.mnav-item a.router-link-active .i1[data-v-0cdf23ff] {
    display: none;
}
.mnav-item a.router-link-active .i2[data-v-0cdf23ff] {
    display: inline-block;
}
.icon[data-v-0cdf23ff] {
    text-align: center;
    width: 1.6rem;
    margin-right: 0.3rem;
}
.slideInLeft[data-v-0cdf23ff] {
    animation: slideInLeft-0cdf23ff 0.3s ease forwards;
}
.slideOutLeft[data-v-0cdf23ff] {
    animation: slideOutLeft-0cdf23ff 0.3s ease forwards;
}
@keyframes slideInLeft-0cdf23ff {
from {
        transform: translateX(-100%);
}
to {
        transform: translateX(0);
}
}
@keyframes slideOutLeft-0cdf23ff {
from {
        transform: translateX(0);
}
to {
        transform: translateX(-100%);
}
}
.plan-btn[data-v-56cd665c] {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: 1rem;
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.plan-btn[data-v-56cd665c]:hover {
  border-color: #ec4899;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(168, 85, 247, 0.06));
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.15);
}
.plan-btn.best-value[data-v-56cd665c] {
  border-color: #ec4899;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(168, 85, 247, 0.08));
}
.view-all-btn[data-v-56cd665c] {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px dashed var(--color-border);
  border-radius: 1rem;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.view-all-btn[data-v-56cd665c]:hover {
  border-color: #ec4899;
  color: #ec4899;
  background: rgba(236, 72, 153, 0.04);
}
#video-teleport[data-v-0e401b16] {
    position: absolute;
    z-index: 99999;
}
