/*

Add here your custom css styles Example: p { text-align: center; color: red; }

*/

/* Reels Comments Modal */
#reels_comments_modal {
	overflow-y: auto;
}

/* =====================================================
   🎨 PARTYSTREAM FLOATING BUTTONS - ARTISTIC MASTERPIECE
   ===================================================== */

#create_modal .modal-dialog {
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Ultra Minimal Backdrop - Almost Invisible */
#create_modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    position: relative;
    width: auto;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Invisible Header - Only Close Button */
.create-modal-header {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 0;
    border: none;
    background: transparent;
    z-index: 10000;
}

.create-modal-title {
    display: none;
}

/* Close Button - Ultra Minimal Glass */
#create_modal .close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: closeButtonFadeIn 0.6s ease 1.2s forwards;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes closeButtonFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-90deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

#create_modal .close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

#create_modal .close svg {
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
}

/* Body - Pure Glass Container */
#create_modal .modal-body {
    padding: 0;
    background: transparent;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

/* Floating Buttons Container */
#create_modal .create-modal-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    padding: 0;
    perspective: 1500px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* PartyStreamPlayer Custom Purple Theme - oficiálny spôsob */

/* Všeobecné nastavenie pre všetky PartyStreamPlayer instance */
.ovenplayer {
    --op-accent-color: #8B5CF6;
}

/* Hide default big play button */
.ovenplayer .op-big-play-button {
    display: none !important;
}

/* Transparent gradient bottom */
.ovenplayer .op-gradient-bottom {
    background: transparent !important;
    background-image: none !important;
}





/* Simple Play Button */
.pause-button {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    height: 80px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 999 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.pause-button.show {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.pause-button:hover {
    background: var(--op-accent-color) !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.pause-button svg {
    width: 32px !important;
    height: 32px !important;
    fill: white !important;
    display: block !important;
    transition: transform 0.2s ease !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pause-button {
        width: 55px !important;
        height: 55px !important;
    }
    
    .pause-button svg {
        width: 22px !important;
        height: 22px !important;
    }
}

.watch-chat {
      position: relative;
      width: 100%;
      height: 820px; /* Set your desired height here */
}
.watch-chat iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }


.watch-chat-mobile {
      position: relative;
      width: 100%;
	  height : 50vh;
}
.watch-chat-mobile iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

/*buttons under live*/
		.btn-mob-live-container {
            display: flex;
            overflow-x: scroll;
            gap: 1px;
            padding: 0;
            width: 100%;
            margin: 0;
            box-sizing: border-box;
            scrollbar-width: none; /* For Firefox */
            -ms-overflow-style: none;  /* For Internet Explorer and Edge */
        }
        .btn-mob-live-container::-webkit-scrollbar {
            display: none; /* For Chrome, Safari, and Opera */
        }
        .btn-mob-live {
            flex: none;
            padding: 5px 20px;
            border: none;
            background-color: #0389c2; 
            color: white;
            font-size: 17px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .btn-mob-live:hover {
            background-color: #0277A8; 
        }
        .btn-mob-live:active {
            background-color: #026693; 
        }

        .btn-mob-sub {
            flex: none;
            padding: 5px 20px;
            border: none;
            background-color: #04abf2; 
            color: white;
            font-size: 17px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-mob-unsub {
            flex: none;
            padding: 5px 20px;
            border: none;
            background-color: #0389c2; 
            color: white;
            font-size: 17px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .counter-live {
            flex: none;
            padding: 5px 20px;
            border: none;
            background-color: #0389c2;
            color: white;
            font-size: 17px;
            cursor: default; /* Non-clickable cursor */
            transition: background-color 0.3s;
        }
.watch-video-description { max-height: 60px; overflow: hidden; position: relative; transition: max-height 1s ease;}

.loader-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* To stack text above loader */
}
.loader-overlay.active {
    display: flex;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 20px; /* Add space between text and loader */
}
.loader-text {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Video Ads Overlay Styles - Ultra Cool PartyStream Design */
.ad-link {
    cursor: pointer;
    transition: cursor 0.3s ease;
}

.ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ad-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(16, 217, 196, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(245, 101, 101, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: subtleGlow 8s ease-in-out infinite alternate;
    z-index: -1;
}

.ad-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-decoration: none;
}

@keyframes subtleGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.ad-overlay .ads-test {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    bottom: unset !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    padding: 10px 16px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    z-index: 1001 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.skip-button {
    background: linear-gradient(135deg, #10D9C4 0%, #8B5CF6 100%) !important;
    border: none !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 4px 15px rgba(16, 217, 196, 0.3) !important;
}

.skip-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(16, 217, 196, 0.4) !important;
}

.timer {
    color: #10D9C4;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(16, 217, 196, 0.4);
}

.ad-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.ad-image-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ad-video-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.ad-info {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 450px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    z-index: 1002;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 
                0 3px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: slideUpFade 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.ad-info h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, rgba(139, 92, 246, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Remove aggressive shimmer animation */

.ad-info p {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.ad-domain {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    background: rgba(139, 92, 246, 0.15);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ad-domain:hover {
    background: rgba(139, 92, 246, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.ad-domain i {
    margin-left: 6px;
    font-size: 11px;
    opacity: 0.8;
}

/* Mobile responsive for ads */
@media (max-width: 768px) {
    .ad-overlay .ads-test {
        top: 15px !important;
        right: 15px !important;
        font-size: 12px !important;
        padding: 8px 14px !important;
    }
    
    .ad-image-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .ad-info {
        width: 90%;
        max-width: none;
        padding: 18px 20px;
        bottom: 5%;
        border-radius: 18px;
    }
    
    .ad-info h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .ad-info p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .ad-domain {
        font-size: 13px;
        padding: 7px 12px;
        border-radius: 12px;
    }
    
    .ad-domain i {
        margin-left: 6px;
        font-size: 11px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .ad-overlay .ads-test {
        font-size: 11px !important;
        padding: 6px 10px !important;
    }
    
    .ad-info {
        width: 95%;
        padding: 15px;
        bottom: 3%;
    }
    
    .ad-info h4 {
        font-size: 16px;
    }
    
    .ad-info p {
        font-size: 13px;
    }
    
    .ad-domain {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Ads List - Type Chips and Counters */
.ad-type-chip {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-type-ppc {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.ad-type-ppv {
    background-color: rgba(4, 171, 242, 0.1);
    color: #04abf2;
    border: 1px solid rgba(4, 171, 242, 0.3);
}


/* Dark mode support for ads chips */
@media (prefers-color-scheme: dark) {
    .ad-type-ppc {
        background-color: rgba(40, 167, 69, 0.2);
        color: #4ade80;
    }
    
    .ad-type-ppv {
        background-color: rgba(4, 171, 242, 0.2);
        color: #38bdf8;
    }
}

/* Placement chips styling */
.placement-chip {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.placement-video {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.placement-sidebar {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

/* Dark mode support for placement chips */
@media (prefers-color-scheme: dark) {
    .placement-video {
        background-color: rgba(255, 193, 7, 0.2);
        color: #ffd54f;
    }
    
    .placement-sidebar {
        background-color: rgba(156, 39, 176, 0.2);
        color: #ba68c8;
    }
}

/* 🔥 ADDICTIVE SIDEBAR ADS - MAGNETIC WOW EFFECT! */
.ads-placment {
    margin: 20px 0;
    text-align: center;
    padding: 0 10px;
}

.sidebar-ad-container {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

/* 🧲 MAGNETIC FIELD - CREATES ADDICTION */
.sidebar-ad-magnetic-field {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        rgba(16, 217, 196, 0.15) 0%,
        rgba(139, 92, 246, 0.12) 50%,
        rgba(245, 101, 101, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    
    /* 🌈 ANIMATED BORDER GRADIENT */
    background-image: linear-gradient(135deg, 
        rgba(16, 217, 196, 0.15) 0%,
        rgba(139, 92, 246, 0.12) 50%,
        rgba(245, 101, 101, 0.1) 100%),
        linear-gradient(135deg, 
        rgba(16, 217, 196, 0.6) 0%,
        rgba(139, 92, 246, 0.8) 25%,
        rgba(245, 101, 101, 0.6) 50%,
        rgba(16, 217, 196, 0.8) 75%,
        rgba(139, 92, 246, 0.6) 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    
    /* ✨ EPIC SHADOWS */  
    box-shadow: 
        0 0 30px rgba(16, 217, 196, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    will-change: transform, box-shadow;
    cursor: pointer;
    
    /* 🎭 BREATHING ANIMATION */
    animation: magneticBreathing 4s ease-in-out infinite;
}

@keyframes magneticBreathing {
    0%, 100% { 
        transform: scale(1) rotateZ(0deg);
        box-shadow: 
            0 0 30px rgba(16, 217, 196, 0.3),
            0 0 60px rgba(139, 92, 246, 0.2),
            0 20px 40px rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: scale(1.02) rotateZ(0.5deg);
        box-shadow: 
            0 0 40px rgba(16, 217, 196, 0.4),
            0 0 80px rgba(139, 92, 246, 0.3),
            0 25px 50px rgba(0, 0, 0, 0.15);
    }
}

/* 🔮 GLOW RING - HYPNOTIC EFFECT */
.sidebar-ad-glow-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 30px;
    background: conic-gradient(
        from 0deg,
        rgba(16, 217, 196, 0.4) 0deg,
        rgba(139, 92, 246, 0.6) 90deg,
        rgba(245, 101, 101, 0.4) 180deg,
        rgba(16, 217, 196, 0.6) 270deg,
        rgba(16, 217, 196, 0.4) 360deg
    );
    opacity: 0;
    transition: all 0.6s ease;
    animation: rotateGlow 8s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ⚡ PULSE RING - ATTENTION GRABBER */
.sidebar-ad-pulse-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 40px;
    border: 3px solid rgba(16, 217, 196, 0.6);
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
    z-index: -2;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
        border-color: rgba(16, 217, 196, 0.8);
    }
    50% {
        border-color: rgba(139, 92, 246, 0.6);
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
        border-color: rgba(245, 101, 101, 0.4);
    }
}

/* 🎯 HOVER STATE - IRRESISTIBLE */
.sidebar-ad-magnetic-field:hover {
    transform: translateY(-15px) scale(1.05) rotateZ(-1deg);
    background-image: linear-gradient(135deg, 
        rgba(16, 217, 196, 0.25) 0%,
        rgba(139, 92, 246, 0.22) 50%,
        rgba(245, 101, 101, 0.2) 100%),
        linear-gradient(135deg, 
        rgba(16, 217, 196, 0.9) 0%,
        rgba(139, 92, 246, 1) 25%,
        rgba(245, 101, 101, 0.8) 50%,
        rgba(16, 217, 196, 1) 75%,
        rgba(139, 92, 246, 0.9) 100%);
    
    box-shadow: 
        0 0 50px rgba(16, 217, 196, 0.6),
        0 0 100px rgba(139, 92, 246, 0.4),
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    
    animation: magneticBreathing 2s ease-in-out infinite;
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-glow-ring {
    opacity: 1;
    animation: rotateGlow 4s linear infinite;
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-pulse-ring {
    animation: pulseRing 1.5s ease-out infinite;
}

/* 🎯 CLICKABLE LINK */
.sidebar-ad-clickable {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 24px;
    overflow: hidden;
}

.sidebar-ad-inner {
    position: relative;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    height: auto;
    min-height: 320px;
}

/* 🖼️ IMAGE WRAPPER WITH MULTIPLE EFFECTS */
.sidebar-ad-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.sidebar-ad-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sidebar-ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.2) contrast(1.1) saturate(1.2);
}

/* 🌈 OVERLAY GRADIENT - DEPTH EFFECT */
.sidebar-ad-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(16, 217, 196, 0.1) 0%,
        rgba(139, 92, 246, 0.08) 50%,
        rgba(245, 101, 101, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-overlay-gradient {
    opacity: 1;
}

/* ✨ SHIMMER EFFECT - ADDICTIVE SHINE */
.sidebar-ad-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    z-index: 2;
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-shimmer {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* 🎖️ PROMOTE BADGE - ANIMATED PREMIUM LOOK */
.sidebar-ad-promote-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    
    /* 🎨 PREMIUM GLASSMORPHISM */
    background: linear-gradient(135deg,
        rgba(16, 217, 196, 0.9) 0%,
        rgba(139, 92, 246, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* ✨ PREMIUM EFFECTS */
    box-shadow: 
        0 8px 20px rgba(16, 217, 196, 0.4),
        0 4px 10px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(16, 217, 196, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
    }
}

.sidebar-ad-badge-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg,
        rgba(16, 217, 196, 0.6) 0%,
        rgba(139, 92, 246, 0.5) 100%);
    opacity: 0;
    animation: badgeRingPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes badgeRingPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.sidebar-ad-promote-badge i {
    color: white;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-promote-badge {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg,
        rgba(245, 101, 101, 0.9) 0%,
        rgba(16, 217, 196, 0.8) 100%);
    animation: badgePulse 1.5s ease-in-out infinite;
}

/* 🚀 CTA BUTTON - IRRESISTIBLE CLICK MAGNET */
.sidebar-ad-cta-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    border-radius: 25px;
    
    /* 🎨 MAGNETIC BUTTON DESIGN */
    background: linear-gradient(135deg,
        rgba(245, 101, 101, 0.95) 0%,
        rgba(16, 217, 196, 0.9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    
    /* ✨ ADDICTIVE EFFECTS */
    box-shadow: 
        0 10px 25px rgba(245, 101, 101, 0.4),
        0 5px 15px rgba(16, 217, 196, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    cursor: pointer;
    
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(245, 101, 101, 0.4);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(16, 217, 196, 0.5);
    }
}

.sidebar-ad-cta-button span {
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.sidebar-ad-button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    transition: left 0.6s ease;
    border-radius: 25px;
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-cta-button {
    transform: scale(1.1) translateY(-3px);
    background: linear-gradient(135deg,
        rgba(16, 217, 196, 0.95) 0%,
        rgba(139, 92, 246, 0.9) 100%);
    animation: ctaPulse 1s ease-in-out infinite;
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-button-shine {
    left: 100%;
}

/* 📝 CONTENT SECTION - HYPNOTIC TEXT */
.sidebar-ad-content {
    position: relative;
    
    /* 🎨 PREMIUM GLASSMORPHISM */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    color: #2d3748;
    padding: 18px 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 0 24px 24px;
    
    /* ✨ PREMIUM INNER GLOW */
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(16, 217, 196, 0.2);
}

/* 🌟 TITLE WITH GLOW EFFECT */
.sidebar-ad-title-glow {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

.sidebar-ad-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    color: #1a202c;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
    
    /* 🌈 ANIMATED GRADIENT TEXT */
    background: linear-gradient(135deg, 
        #10D9C4 0%, 
        #8B5CF6 25%,
        #F56565 50%,
        #10D9C4 75%,
        #8B5CF6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.sidebar-ad-title-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%);
    animation: titleShimmer 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes titleShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sidebar-ad-content p {
    margin: 0 0 15px 0;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    color: #4a5568;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* 👤 FOOTER WITH DOMAIN ONLY */
.sidebar-ad-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
}

.sidebar-ad-domain {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8B5CF6;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-ad-external-glow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.3) 0%,
        rgba(16, 217, 196, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sidebar-ad-external-glow i {
    color: #8B5CF6;
    font-size: 9px;
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-domain {
    color: #10D9C4;
    text-shadow: 0 0 8px rgba(16, 217, 196, 0.4);
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-external-glow {
    background: linear-gradient(135deg,
        rgba(16, 217, 196, 0.4) 0%,
        rgba(139, 92, 246, 0.3) 100%);
    box-shadow: 0 0 12px rgba(16, 217, 196, 0.4);
    transform: scale(1.1);
}

.sidebar-ad-magnetic-field:hover .sidebar-ad-external-glow i {
    color: #10D9C4;
}

/* 🌙 DARK MODE - PREMIUM NIGHT THEME */
@media (prefers-color-scheme: dark) {
    .sidebar-ad-magnetic-field {
        background: linear-gradient(135deg, 
            rgba(139, 92, 246, 0.15) 0%,
            rgba(16, 217, 196, 0.12) 50%,
            rgba(245, 101, 101, 0.1) 100%);
        
        background-image: linear-gradient(135deg, 
            rgba(139, 92, 246, 0.15) 0%,
            rgba(16, 217, 196, 0.12) 50%,
            rgba(245, 101, 101, 0.1) 100%),
            linear-gradient(135deg, 
            rgba(139, 92, 246, 0.8) 0%,
            rgba(16, 217, 196, 0.6) 25%,
            rgba(245, 101, 101, 0.4) 50%,
            rgba(139, 92, 246, 0.6) 75%,
            rgba(16, 217, 196, 0.8) 100%);
        
        box-shadow: 
            0 0 40px rgba(139, 92, 246, 0.3),
            0 0 80px rgba(16, 217, 196, 0.2),
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    .sidebar-ad-magnetic-field:hover {
        background-image: linear-gradient(135deg, 
            rgba(139, 92, 246, 0.25) 0%,
            rgba(16, 217, 196, 0.22) 50%,
            rgba(245, 101, 101, 0.2) 100%),
            linear-gradient(135deg, 
            rgba(139, 92, 246, 1) 0%,
            rgba(16, 217, 196, 0.9) 25%,
            rgba(245, 101, 101, 0.7) 50%,
            rgba(139, 92, 246, 0.9) 75%,
            rgba(16, 217, 196, 1) 100%);
        
        box-shadow: 
            0 0 60px rgba(139, 92, 246, 0.5),
            0 0 120px rgba(16, 217, 196, 0.3),
            0 35px 70px rgba(0, 0, 0, 0.4);
    }
    
    .sidebar-ad-content {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 100%);
        color: #e2e8f0;
        border-top: 2px solid rgba(255, 255, 255, 0.15);
        
        box-shadow: 
            inset 0 2px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(139, 92, 246, 0.3);
    }
    
    .sidebar-ad-content h5 {
        color: #f7fafc;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .sidebar-ad-content p {
        color: #cbd5e0;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .sidebar-ad-external-glow {
        background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.4) 0%,
            rgba(16, 217, 196, 0.3) 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* 📱 MOBILE RESPONSIVE - ADDICTIVE ON ALL DEVICES */
@media (max-width: 768px) {
    .sidebar-ad-magnetic-field {
        animation: magneticBreathing 3s ease-in-out infinite;
    }
    
    .sidebar-ad-promote-badge {
        top: 10px;
        left: 10px;
        width: 35px;
        height: 35px;
    }
    
    .sidebar-ad-promote-badge i {
        font-size: 14px;
    }
    
    .sidebar-ad-cta-button {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    .sidebar-ad-cta-button span {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .sidebar-ad-content {
        padding: 15px 16px;
    }
    
    .sidebar-ad-content h5 {
        font-size: 15px;
    }
    
    .sidebar-ad-content p {
        font-size: 12px;
    }
    
    .sidebar-ad-external-glow {
        width: 18px;
        height: 18px;
    }
}




/* 🌟 FLOATING BUTTONS - ULTRA COOL DESIGN */
.create-card {
	position: relative;
	width: 200px;
	height: 240px;
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.25) 0%,
		rgba(255, 255, 255, 0.18) 100%);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 32px;
	padding: 30px 20px;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: visible;
	transform-style: preserve-3d;
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow:
		0 8px 32px rgba(31, 38, 135, 0.12),
		inset 0 1px 1px rgba(255, 255, 255, 0.6);

	/* Entrance Animation - Each button flies in from different direction */
	opacity: 0;
	animation: buttonFlyIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;

	/* Floating Effect */
	animation: buttonFlyIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
	           floatingButton 4s ease-in-out infinite;
}

/* Glass Reflection Highlight */
.create-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(180deg,
		rgba(255, 255, 255, 0.15) 0%,
		rgba(255, 255, 255, 0) 100%);
	border-radius: 32px 32px 0 0;
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.6s ease;
	z-index: 0;
}

/* Staggered entrance for each button */
.create-card:nth-child(1) {
	animation-delay: 0s, 0.8s;
	--fly-x: -100vw;
	--fly-rotate: -180deg;
}

.create-card:nth-child(2) {
	animation-delay: 0.15s, 0.95s;
	--fly-x: 0;
	--fly-y: -100vh;
	--fly-rotate: 360deg;
}

.create-card:nth-child(3) {
	animation-delay: 0.3s, 1.1s;
	--fly-x: 100vw;
	--fly-rotate: 180deg;
}

.create-card:nth-child(4) {
	animation-delay: 0.45s, 1.25s;
	--fly-x: 0;
	--fly-y: 100vh;
	--fly-rotate: -360deg;
}

@keyframes buttonFlyIn {
	from {
		opacity: 0;
		transform: translate3d(var(--fly-x, 0), var(--fly-y, 0), 0)
		           rotate(var(--fly-rotate, 0deg))
		           scale(0.3);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
}

@keyframes floatingButton {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-10px) rotate(1deg);
	}
	50% {
		transform: translateY(-5px) rotate(-1deg);
	}
	75% {
		transform: translateY(-12px) rotate(0.5deg);
	}
}

/* Multi-layer Glow Ring */
.create-card::before {
	content: '';
	position: absolute;
	inset: -3px;
	background: conic-gradient(
		from 0deg,
		rgba(139, 92, 246, 0) 0deg,
		rgba(139, 92, 246, 0.4) 90deg,
		rgba(16, 217, 196, 0.5) 180deg,
		rgba(245, 101, 101, 0.3) 270deg,
		rgba(139, 92, 246, 0) 360deg
	);
	border-radius: 34px;
	opacity: 0;
	filter: blur(20px);
	transition: all 0.6s ease;
	z-index: -1;
	animation: rotateGlowRing 8s linear infinite;
}

@keyframes rotateGlowRing {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Magnetic Hover Effect */
.create-card:hover {
	transform: translateY(-25px) scale(1.08) rotateX(5deg);
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.35) 0%,
		rgba(255, 255, 255, 0.25) 100%);
	border-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(25px) saturate(200%);
	-webkit-backdrop-filter: blur(25px) saturate(200%);
	box-shadow:
		0 30px 80px rgba(31, 38, 135, 0.15),
		0 0 60px rgba(255, 255, 255, 0.15),
		inset 0 1px 2px rgba(255, 255, 255, 0.7);
	text-decoration: none;
	animation-play-state: paused; /* Pause floating on hover */
}

.create-card:hover::before {
	opacity: 1;
	filter: blur(25px);
	background: conic-gradient(
		from 0deg,
		rgba(139, 92, 246, 0.2) 0deg,
		rgba(139, 92, 246, 0.6) 90deg,
		rgba(16, 217, 196, 0.7) 180deg,
		rgba(245, 101, 101, 0.5) 270deg,
		rgba(139, 92, 246, 0.2) 360deg
	);
}

.create-card:hover::after {
	opacity: 1;
	background: linear-gradient(180deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0) 100%);
}

/* 🎯 Icon - Orbital Glow Design */
.create-card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg,
		rgba(33, 150, 243, 0.15),
		rgba(33, 150, 243, 0.05));
	backdrop-filter: blur(10px);
	border: 2px solid rgba(33, 150, 243, 0.3);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: visible;
	box-shadow:
		0 8px 32px rgba(33, 150, 243, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	z-index: 1;
}

/* Pulsing Ring Effect */
.create-card-icon::after {
	content: '';
	position: absolute;
	inset: -8px;
	border: 2px solid rgba(33, 150, 243, 0.4);
	border-radius: 28px;
	opacity: 0;
	animation: iconPulseRing 2.5s ease-out infinite;
}

@keyframes iconPulseRing {
	0% {
		transform: scale(0.9);
		opacity: 1;
	}
	100% {
		transform: scale(1.3);
		opacity: 0;
	}
}

.create-card:hover .create-card-icon {
	transform: scale(1.15) rotate(10deg);
	box-shadow:
		0 15px 60px rgba(33, 150, 243, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
	border-width: 3px;
}

/* Color variants */
.create-card-icon.live-icon {
	background: linear-gradient(135deg,
		rgba(244, 67, 54, 0.2),
		rgba(244, 67, 54, 0.08));
	border-color: rgba(244, 67, 54, 0.4);
	box-shadow:
		0 8px 32px rgba(244, 67, 54, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.create-card-icon.live-icon::after {
	border-color: rgba(244, 67, 54, 0.5);
}

.create-card:hover .create-card-icon.live-icon {
	box-shadow:
		0 15px 60px rgba(244, 67, 54, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.create-card-icon.reels-icon {
	background: linear-gradient(135deg,
		rgba(138, 43, 226, 0.2),
		rgba(138, 43, 226, 0.08));
	border-color: rgba(138, 43, 226, 0.4);
	box-shadow:
		0 8px 32px rgba(138, 43, 226, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.create-card-icon.reels-icon::after {
	border-color: rgba(138, 43, 226, 0.5);
}

.create-card:hover .create-card-icon.reels-icon {
	box-shadow:
		0 15px 60px rgba(138, 43, 226, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.create-card-icon.import-icon {
	background: linear-gradient(135deg,
		rgba(76, 175, 80, 0.2),
		rgba(76, 175, 80, 0.08));
	border-color: rgba(76, 175, 80, 0.4);
	box-shadow:
		0 8px 32px rgba(76, 175, 80, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.create-card-icon.import-icon::after {
	border-color: rgba(76, 175, 80, 0.5);
}

.create-card:hover .create-card-icon.import-icon {
	box-shadow:
		0 15px 60px rgba(76, 175, 80, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.create-card-icon.music-icon {
	background: linear-gradient(135deg,
		rgba(255, 152, 0, 0.2),
		rgba(255, 152, 0, 0.08));
	border-color: rgba(255, 152, 0, 0.4);
	box-shadow:
		0 8px 32px rgba(255, 152, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.create-card-icon.music-icon::after {
	border-color: rgba(255, 152, 0, 0.5);
}

.create-card:hover .create-card-icon.music-icon {
	box-shadow:
		0 15px 60px rgba(255, 152, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Icon SVG */
.create-card-icon svg {
	width: 42px;
	height: 42px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
	transition: all 0.4s ease;
	opacity: 0.95;
}

.create-card:hover .create-card-icon svg {
	filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.4));
	transform: scale(1.1);
}

/* ✨ Title - Gradient Shimmer */
.create-card-title {
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 10px 0;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.create-card:hover .create-card-title {
	transform: translateY(-5px) scale(1.05);
	text-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

/* 💬 Description */
.create-card-description {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
	transition: all 0.4s ease;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 1;
}

.create-card:hover .create-card-description {
	color: rgba(255, 255, 255, 0.95);
	transform: translateY(-2px);
}

/* 🔐 Login Prompt - Glass Card */
.create-login-prompt {
	text-align: center;
	padding: 50px 40px;
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.08),
		rgba(255, 255, 255, 0.03));
	backdrop-filter: blur(30px) saturate(180%);
	-webkit-backdrop-filter: blur(30px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 32px;
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	animation: buttonFlyIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.create-login-prompt svg {
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	color: rgba(255, 255, 255, 0.9);
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.15));
}

.create-login-prompt h3 {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.2);
}

.create-login-prompt p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 30px 0;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.create-login-btn {
	display: inline-block;
	background: linear-gradient(135deg,
		rgba(139, 92, 246, 0.9) 0%,
		rgba(99, 102, 241, 0.8) 100%);
	backdrop-filter: blur(10px);
	color: #fff;
	padding: 14px 40px;
	border-radius: 16px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow:
		0 8px 32px rgba(139, 92, 246, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.create-login-btn:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow:
		0 15px 60px rgba(139, 92, 246, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	background: linear-gradient(135deg,
		rgba(139, 92, 246, 1) 0%,
		rgba(99, 102, 241, 0.9) 100%);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
	text-decoration: none;
}

/* ========================================
   🎵 MUSIC SUBMENU MODAL - IDENTICAL STYLING TO CREATE MODAL
   ======================================== */

/* Ultra Minimal Backdrop - Almost Invisible */
#music_submenu_modal .modal-content {
	background: transparent;
	border: none;
	box-shadow: none;
	overflow: visible;
	position: relative;
	width: auto;
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Header with Back + Close buttons */
#music_submenu_modal .music-submenu-header {
	position: fixed;
	top: 30px;
	left: 0;
	right: 0;
	padding: 0 30px;
	border: none;
	background: transparent;
	z-index: 10000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#music_submenu_modal .create-modal-title {
	display: none;
}

/* Back Button - Left side */
#music_submenu_modal .back-button {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.9);
	opacity: 0;
	animation: closeButtonFadeIn 0.6s ease 1.2s forwards;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#music_submenu_modal .back-button:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
	transform: translateX(-10px) scale(1.15);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

#music_submenu_modal .back-button svg {
	filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
}

/* Close Button - Right side */
#music_submenu_modal .close-button {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.9);
	opacity: 0;
	animation: closeButtonFadeIn 0.6s ease 1.2s forwards;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#music_submenu_modal .close-button:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
	transform: rotate(90deg) scale(1.15);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

#music_submenu_modal .close-button svg {
	filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
}

/* Body - Pure Glass Container */
#music_submenu_modal .modal-body {
	padding: 0;
	background: transparent;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: auto;
}

/* Floating Buttons Container */
#music_submenu_modal .create-modal-grid {
	display: flex;
	gap: 32px;
	justify-content: center;
	align-items: center;
	padding: 0;
	perspective: 1500px;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}

/* Modal Backdrop */
#music_submenu_modal.modal {
	backdrop-filter: blur(2px) saturate(130%);
	-webkit-backdrop-filter: blur(2px) saturate(130%);
	background: transparent !important;
}

#music_submenu_modal.modal.fade {
	transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
	background: transparent !important;
}

#music_submenu_modal.modal.fade.show {
	backdrop-filter: blur(2px) saturate(130%);
	-webkit-backdrop-filter: blur(2px) saturate(130%);
	background: transparent !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	#music_submenu_modal .modal-dialog {
		align-items: center;
		padding: 0;
	}

	#music_submenu_modal .create-modal-grid {
		flex-direction: column;
		gap: 20px;
		padding: 20px 0;
		max-height: none;
		overflow-y: visible;
	}

	#music_submenu_modal .modal-body {
		max-height: 90vh;
		overflow-y: auto;
		overflow-x: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#music_submenu_modal .music-submenu-header {
		padding: 0 15px;
	}

	#music_submenu_modal .back-button,
	#music_submenu_modal .close-button {
		width: 42px;
		height: 42px;
	}
}

/* 🎭 Modal Backdrop - Pure Transparent (No Dark Overlay) */
#create_modal.modal {
	backdrop-filter: blur(2px) saturate(130%);
	-webkit-backdrop-filter: blur(2px) saturate(130%);
	background: transparent !important;
}

#create_modal.modal.fade {
	transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
	background: transparent !important;
}

#create_modal.modal.fade.show {
	backdrop-filter: blur(2px) saturate(130%);
	-webkit-backdrop-filter: blur(2px) saturate(130%);
	background: transparent !important;
}

#create_modal.modal-backdrop {
	display: none !important;
}

.modal-backdrop {
	display: none !important;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
	#create_modal .modal-dialog {
		align-items: center;
		padding: 0;
	}

	#create_modal .create-modal-grid {
		flex-direction: column;
		gap: 20px;
		padding: 20px 0;
		max-height: none;
		overflow-y: visible;
	}

	#create_modal .modal-body {
		max-height: 90vh;
		overflow-y: auto;
		overflow-x: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
	}

	#create_modal .modal-body::-webkit-scrollbar {
		width: 4px;
	}

	#create_modal .modal-body::-webkit-scrollbar-track {
		background: rgba(255, 255, 255, 0.02);
	}

	#create_modal .modal-body::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.15);
		border-radius: 10px;
	}

	.create-card {
		width: 280px;
		height: auto;
		min-height: 220px;
		--fly-x: 0;
		--fly-y: 100vh;
		--fly-rotate: 0deg;
	}

	.create-card:nth-child(1),
	.create-card:nth-child(2),
	.create-card:nth-child(3),
	.create-card:nth-child(4) {
		--fly-x: 0;
		--fly-y: 100vh;
		--fly-rotate: 0deg;
	}

	.create-card-icon {
		width: 72px;
		height: 72px;
		margin-bottom: 16px;
	}

	.create-card-icon svg {
		width: 38px;
		height: 38px;
	}

	.create-card-title {
		font-size: 17px;
	}

	.create-card-description {
		font-size: 13px;
	}

	.create-modal-header {
		top: 20px;
		right: 20px;
	}

	#create_modal .close {
		width: 44px;
		height: 44px;
	}

	.create-login-prompt {
		width: 280px;
		padding: 40px 30px;
	}
}

/* 🎨 Extra Small Mobile */
@media (max-width: 480px) {
	.create-card {
		width: 90vw;
		max-width: 300px;
	}

	.create-login-prompt {
		width: 90vw;
		max-width: 300px;
		padding: 35px 25px;
	}
}
/* END Create Modal */

/* =====================================================
   🎵 MUSIC ITEMS - SQUARE COVERS (1:1 aspect ratio)
   ===================================================== */

/* Square cover for music items */
.home-page-categories .videos .video-list.music-item .music-cover a {
	padding-bottom: 100% !important; /* 1:1 aspect ratio (square) */
	aspect-ratio: 1 / 1;
}

/* Music badge (music icon in corner) */
.music-badge {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	border-radius: 4px;
	padding: 4px 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.music-badge svg {
	width: 16px;
	height: 16px;
	opacity: 0.9;
}

/* Music play button hover effect */
.music-item .music-play-btn {
	background-color: rgba(255, 152, 0, 0.15) !important;
}

.music-item:hover .music-play-btn {
	background-color: rgba(255, 152, 0, 0.25) !important;
}

/* Ensure square aspect ratio on all screen sizes */
@media (max-width: 485px) {
	.home-page-categories .videos .video-list.music-item .music-cover a {
		padding-bottom: 100% !important;
	}
}

@media (min-width: 1650px) {
	.home-page-categories .videos .video-list.music-item .music-cover a {
		padding-bottom: 100% !important;
		height: auto !important; /* Override video height */
	}
}

/* Custom Bootstrap grid class for 12.5% width (8 items per row) */
@media (min-width: 992px) {
	.col-md-1-5 {
		width: 12.5%;
		float: left;
		position: relative;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
	}
}

/* Music grid spacing - same as videos */
.home-page-categories .col-md-1-5.keep-padding,
.home-page-categories .col-sm-3.keep-padding,
.home-page-categories .col-xs-3.keep-padding {
	padding-right: 4px !important;
	padding-left: 2px !important;
}

/* Timeline music covers - square aspect ratio like videos */
.music-cover-timeline a {
	padding-bottom: 100% !important; /* 1:1 aspect ratio (square) */
	aspect-ratio: 1 / 1;
}

/* Music badge positioning (like video duration) */
.music-badge-timeline {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 3px 6px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 500;
	z-index: 2;
}

.music-badge-timeline svg {
	display: block;
	width: 14px;
	height: 14px;
}

/* Music play button hover effect */
.music-item-timeline .music-play-btn {
	background-color: rgba(255, 152, 0, 0.15) !important;
}

.music-item-timeline:hover .music-play-btn {
	background-color: rgba(255, 152, 0, 0.25) !important;
}

/* Clearfix to prevent grid layout issues - apply to wrapper divs */
@media (min-width: 992px) {
	.pt_timeline_latest_music > div:nth-child(6n+1) {
		clear: left;
	}
}

/* Clearfix for tablet - every 4th item */
@media (min-width: 768px) and (max-width: 991px) {
	.pt_timeline_latest_music > div:nth-child(4n+1) {
		clear: left;
	}
}

/* Mobile spacing for music items */
@media (max-width: 767px) {
	.music-item-timeline {
		margin-bottom: 15px;
	}

	/* Scale down covers slightly on mobile */
	.music-cover-timeline a {
		transform: scale(0.95);
	}

	/* Clearfix for mobile - every odd item (1st, 3rd, 5th...) */
	.pt_timeline_latest_music > div:nth-child(odd) {
		clear: left;
	}
}

/* END Music Items */

/* Album Grid Styles */
.pt_timeline_albums {
    margin-top: 20px;
}

.album-item {
    margin-bottom: 15px;
    padding-right: 0;
}

.album-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.album-cover {
    position: relative;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.album-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-type-badge {
    align-self: flex-start;
    background: rgba(255, 152, 0, 0.9);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.play-icon {
    align-self: center;
    margin: auto;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.play-icon svg {
    width: 32px;
    height: 32px;
}

.album-card:hover .play-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.album-info {
    padding: 10px 8px;
}

.album-title {
    margin: 0 0 4px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.album-title a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.album-title a:hover {
    color: #ff9800;
}

.album-artist {
    margin: 0 0 3px 0;
    color: #666;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-tracks {
    margin: 0;
    color: #999;
    font-size: 10px;
}

.playlist-actions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.playlist-action-btn {
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist-action-btn:hover {
    background: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.3);
}

.playlist-action-btn svg {
    opacity: 0.6;
}

.playlist-action-btn:hover svg {
    opacity: 1;
}

/* Dark theme support */
.night .album-card {
    background: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.night .album-title a {
    color: #fff;
}

.night .album-title a:hover {
    color: #ff9800;
}

.night .album-artist {
    color: #999;
}

.night .album-tracks {
    color: #666;
}

.night .playlist-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.night .playlist-action-btn:hover {
    background: rgba(255, 152, 0, 0.2);
    border-color: rgba(255, 152, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .album-item {
        margin-bottom: 10px;
        padding-right: 0;
    }

    .album-info {
        padding: 8px 6px;
    }

    .album-title {
        font-size: 12px;
    }

    .album-artist {
        font-size: 10px;
    }

    .album-tracks {
        font-size: 9px;
    }

    .play-icon {
        width: 35px;
        height: 35px;
    }

    .play-icon svg {
        width: 24px;
        height: 24px;
    }
}