body {
    background: linear-gradient(160deg, #121212, #1a1a1a);
    color: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

.banner-bar {
    background-color: #111;
    padding: 10px 0;
    overflow: hidden;
}

.banner-track {
    display: flex;
    gap: 20px;
    animation: scroll-horizontal 25s linear infinite;
}

.banner-msg {
    white-space: nowrap;
    background-color: #292929;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.faces {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
    padding: 20px;
    text-align: center;
}

.face img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #ff3366;
    cursor: pointer;
}

.face span {
    margin-top: 6px;
    display: block;
}

.video-player {
    max-width: 760px;
    margin: auto;
    padding: 20px;
}

.video-player video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.thumbs {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-top: 10px;
}

.thumbs img {
    width: 120px;
    border-radius: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.thumbs img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 8px #ff3366;
}

.payment-modal img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.payment-modal h4,
.payment-modal ul,
.payment-modal li {
    color: #000;
}

.btn-primary {
    background-color: #e91e63;
    border: none;
}

.chat-boxes {
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chat-line {
    background: #222;
    padding: 14px;
    border-radius: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-line i {
    font-size: 1.5rem;
    color: #ff4081;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Styles for the loading spinner */
#loadingSpinner {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Overlay to dim the background while loading */
#loadingOverlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 5;
}





.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-buttons .float-btn {
    background-color: #e91e63;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: 0.3s;
    white-space: nowrap;
}

.floating-buttons .float-btn:hover {
    background-color: #ff4081;
}

/* Mobile tweak to reduce button size */
@media (max-width: 576px) {
    .floating-buttons {
        bottom: 10px;
        left: 10px;
        gap: 8px;
    }

    .floating-buttons .float-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}