body {
    background: #000;
}


.media-link-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: fit-content
}

.product-media-link {
    text-decoration: none;
    color: #2799F6;
    background: #fff;
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    gap: 0.75rem;
    border-radius: 100vw;
    border: 2px solid #2799F6;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.175s ease;
    will-change: transform, box-shadow, filter;
    position: relative;
    z-index: 1;
}

.product-media-link.onlyfans {
    background-color: #00AEEF;
    border-color: #fff;
    color: #fff;
}

.product-media-link:hover {
    transform: scale(1.05);
    transform-origin: center;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(196, 234, 240, 0.3);
    filter: brightness(1.1);
}

.product-media-link.disabled {
    cursor: not-allowed;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.product-media-link.disabled:hover {
    transform: none;
}

.product-media-link.onlyfans.disabled {
    background: #e0e0e0;
    border-color: #999;
    color: #666;
}

.product-media-link.onlyfans:hover {
}

/* Page Splash Links Styles */
.page-splash-links {
    height: auto;
    width: 100%;
    margin-top: 6rem;
    padding: 0 6rem;
}

.splash-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    overflow: hidden;
}

.splash-container {
    flex: 1;
    border-radius: 0.25rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    height: 30rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.splash-container:hover .splash-image{
    transform: scale(1.05);
}

.splash-container img {
    height: 3rem;
    width: auto;
    z-index: 2;
    margin-bottom: 0.75rem;
}

.splash-container span {
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.splash-image {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6) 100%, transparent), url('/assets/lightbox/chain-ass.webp');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: transform 0.3s ease;
}

.splash-container:nth-child(2) .splash-image {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6) 100%, transparent), url('/assets/lightbox/cute.webp');
    background-size: cover;
    background-position: center;
}

.product-media-link img {
    height: 1.75rem;
    width: auto;
}

/* Video Skeleton Loading Styles - Facebook Style */
.video-skeleton {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.skeleton-thumbnail {
    width: 360px;
    height: 202.5px;
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #2a2a2a 20%,
        #1a1a1a 40%
    );
    background-size: 200% 100%;
    animation: facebook-skeleton 1.6s infinite;
    border-radius: 1rem;
}

.video-skeleton.vertical .skeleton-thumbnail {
    width: calc(202.5px * 9 / 16);
    height: 202.5px;
}

.skeleton-title {
    height: 1rem;
    width: 360px;
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #2a2a2a 20%,
        #1a1a1a 40%
    );
    background-size: 200% 100%;
    animation: facebook-skeleton 1.6s infinite;
    border-radius: 4px;
}

.video-skeleton.vertical .skeleton-title {
    width: calc(202.5px * 9 / 16);
}

@keyframes facebook-skeleton {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.footer {
    background: #000;
    width: 100%;
    margin-top: 2rem;
    padding: 2rem 0;
}

.premium-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    z-index: 6;
}