/**
 * SLA Community - Mobile Style Feed
 * Full-screen verticale posts met snap scrolling
 * 
 * Dit bestand is de gecompileerde versie van alle feed CSS modules.
 * Voor onderhoud, zie de aparte bestanden in /assets/css/feed/:
 * 
 * - base.css      : Layout, tabs, feed container, posts, FAB
 * - comments.css  : Comments sidebar, input, loading states
 * - modals.css    : Composer modal
 * - content.css   : Media, gradient, content area, toast
 * - actions.css   : Actions sidebar, menu, video controls
 * - slides.css    : Fact, quiz, trending, news slides
 * - shorts.css    : Short stories, mobile tabs, play hints
 * - special.css   : Login modal, signup, news modal
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --sla-feed-bg: #0a0a1a;
    --sla-feed-bg-light: #12122a;
    --sla-feed-bg-card: #1a1a2e;
    --sla-feed-text: #ffffff;
    --sla-feed-text-muted: rgba(255, 255, 255, 0.6);
    --sla-feed-text-subtle: rgba(255, 255, 255, 0.4);
    
    /* Accent colors */
    --sla-feed-accent: #2563eb;
    --sla-feed-accent-hover: #1d4ed8;
    --sla-feed-accent-light: rgba(37, 99, 235, 0.2);
    --sla-feed-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    
    /* Status colors */
    --sla-feed-success: #22c55e;
    --sla-feed-error: #ef4444;
    --sla-feed-warning: #f59e0b;
    
    /* Borders */
    --sla-feed-border: rgba(255, 255, 255, 0.1);
    --sla-feed-border-strong: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --sla-feed-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --sla-feed-shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    /* Spacing */
    --sla-feed-radius: 12px;
    --sla-feed-radius-sm: 8px;
    --sla-feed-radius-lg: 16px;
    --sla-feed-radius-xl: 24px;
    
    /* Layout */
    --sla-feed-modal-offset: 5vh;
    --sla-feed-content-width: 720px;
    --sla-feed-sidebar-width: 380px;
    
    /* Transitions */
    --sla-feed-transition: 0.2s ease;
    --sla-feed-transition-slow: 0.3s ease;
    
    /* Z-index layers */
    --sla-feed-z-base: 1;
    --sla-feed-z-overlay: 100;
    --sla-feed-z-modal: 1000;
    --sla-feed-z-toast: 9999;
}

/* ===== APP TABS (Feed / Connect / Profile) ===== */
.sla-app-tabs {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 12px 16px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Feed tab active: overlay mode (transparant, geen border) */
.sla-app-tabs.feed-active {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    /* Allow clicks to pass through to elements below (like close button) */
    pointer-events: none;
}

/* Re-enable pointer events on the actual tab buttons */
.sla-app-tabs.feed-active .sla-app-tab {
    pointer-events: auto;
}

.sla-app-tab {
    position: relative;
    padding: 10px 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

/* Bij feed-active: subtiele text shadow voor leesbaarheid */
.sla-app-tabs.feed-active .sla-app-tab {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.sla-app-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.sla-app-tab.active {
    color: #fff;
}

/* Tab indicator (animated underline) */
.sla-app-tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 3px 3px 0 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Tab Content Areas */
.sla-app-content {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sla-app-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Feed tab: position relative voor absolute tabs */
.sla-app-content[data-tab-content="feed"] {
    position: relative;
    overflow: hidden;
}

/* Smooth tab transition animation */
.sla-app-content.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.sla-app-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Connect tab container */
.sla-connect-container {
    padding: 0;
    min-height: calc(100dvh - 120px);
}

/* Profile tab container */
.sla-profile-container {
    padding: 20px;
    min-height: calc(100dvh - 120px);
}

.sla-profile-login-required {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    min-height: 50vh;
}

.sla-profile-login-required svg {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.sla-profile-login-required p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-size: 16px;
}

/* Profile fallback styling */
.sla-profile-fallback {
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
}

.sla-profile-header {
    margin-bottom: 24px;
}

.sla-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.sla-profile-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.sla-profile-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Mobile: tabs kleiner */
@media (max-width: 480px) {
    .sla-app-tabs {
        padding: 8px 12px;
    }
    
    .sla-app-tab {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .sla-profile-container {
        padding: 16px;
    }
}

/* ===== HIDE COMMUNITY TABS IN MOBILE MODE ===== */
.has-mobile-feed .sla-community-tabs {
    display: none;
}

/* ===== MAIN LAYOUT ===== */
.sla-mobile-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 100px);
    overflow: hidden;
    /* Geen margin-top nodig - feed scrollt achter tabs */
}

/* ===== FEED WRAPPER ===== */
.sla-mobile-feed-wrapper {
    position: relative;
    max-width: 20vw;
    width: 100%;
    overflow: hidden;
}

/* ===== MOBILE FEED CONTAINER ===== */
.sla-mobile-feed {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 500px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #000;
    border-radius: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Grote schermen */
@media (min-width: 1400px) {
    .sla-mobile-feed-wrapper {
        max-width: 25vw;
    }
}

@media (min-width: 1700px) {
    .sla-mobile-feed-wrapper {
        max-width: 30vw;
    }
}

.sla-mobile-feed::-webkit-scrollbar {
    display: none;
}

/* ===== SINGLE POST (SLIDE) ===== */
.sla-mobile-post {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #0a0a0a;
    overflow: hidden;
}

/* ===== FILTER PILLS (Overlay in feed) ===== */
.sla-mobile-feed-wrapper {
    position: relative;
}

.sla-mobile-filter-pills {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    z-index: 60;
}

.sla-mobile-pill {
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sla-mobile-pill:hover {
    color: #fff;
}

.sla-mobile-pill.active {
    background: #fff;
    color: #000;
}

/* ===== FLOATING ACTION BUTTON ===== */
.sla-mobile-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
}

.sla-mobile-fab:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
}

.sla-mobile-fab svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 700px) {
    .sla-mobile-layout .sla-mobile-feed-wrapper,
    .sla-mobile-layout .sla-mobile-feed {
        max-width: none;
        border-radius: 0;
    }
    
    /* Mobile: feed is 90dvh */
    .sla-mobile-layout {
        height: 90dvh;
        min-height: auto;
        overflow: hidden;
    }
    
    .sla-mobile-layout .sla-mobile-feed-wrapper {
        height: 100%;
        overflow: hidden;
    }
    
    .sla-mobile-feed {
        height: 100% !important;
        min-height: auto !important;
        max-height: 100%;
    }
    
    .sla-mobile-post {
        height: 90dvh;
        min-height: 90dvh;
    }
    
    /* Feed tab content */
    .sla-app-content[data-tab-content="feed"] {
        height: 90dvh;
        max-height: 90dvh;
        overflow: hidden;
    }
    
    /* App tabs mobile */
    .sla-app-tabs {
        position: sticky;
        top: 0;
    }
    
    /* Connect container op mobile */
    .sla-connect-container {
        min-height: calc(100dvh - 120px);
        padding-bottom: calc(7dvh + 20px);
    }
    
    /* Profile container op mobile */
    .sla-profile-container {
        min-height: calc(100dvh - 120px);
        padding-bottom: calc(7dvh + 20px);
    }
}

/* ===== COMMENTS SIDEBAR (Inline) ===== */
.sla-comments-sidebar {
    width: 0;
    min-width: 0;
    background: #1a1a2e;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    height: calc(100vh - 120px);
    min-height: 500px;
}

.sla-mobile-layout.comments-open .sla-comments-sidebar {
    width: 380px;
    min-width: 380px;
    opacity: 1;
    margin-left: 16px;
}

.sla-comments-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.sla-comments-sidebar-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.sla-comments-sidebar-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sla-comments-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sla-comments-sidebar-close svg {
    width: 18px;
    height: 18px;
}

.sla-comments-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.sla-comments-sidebar-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* ===== LOADING & EMPTY STATES ===== */
.sla-comments-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.sla-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.sla-comments-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.sla-comments-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

/* ===== COMMENT INPUT ===== */
.sla-comments-input-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.sla-comments-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4px 4px 4px 16px;
}

.sla-comments-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    outline: none;
    min-width: 0;
}

.sla-comments-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sla-comments-input-wrap button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.5;
    flex-shrink: 0;
}

.sla-comments-input-wrap button:not(:disabled) {
    opacity: 1;
}

.sla-comments-input-wrap button:not(:disabled):hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.sla-comments-input-wrap button:disabled {
    cursor: not-allowed;
}

.sla-comments-input-wrap button svg {
    width: 18px;
    height: 18px;
}

/* ===== MOBILE: Overlay mode ===== */
@media (max-width: 900px) {
    .sla-mobile-layout {
        position: relative;
    }
    
    .sla-mobile-layout .sla-comments-sidebar {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 70vh;
        min-height: auto;
        min-width: 0;
        border-radius: 20px 20px 0 0;
        border-left: none;
        z-index: 9999;
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        overflow: visible;
        pointer-events: none;
        box-sizing: border-box;
    }
    
    .sla-mobile-layout .sla-comments-sidebar *,
    .sla-mobile-layout .sla-comments-sidebar *::before,
    .sla-mobile-layout .sla-comments-sidebar *::after {
        box-sizing: border-box;
    }
    
    .sla-mobile-layout.comments-open .sla-comments-sidebar {
        transform: translateY(0);
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        overflow: hidden;
    }
    
    /* Bottom sheet header met drag handle */
    .sla-mobile-layout .sla-comments-sidebar-header {
        position: relative;
        flex-shrink: 0;
        padding-top: 24px;
        pointer-events: auto;
    }
    
    .sla-mobile-layout .sla-comments-sidebar-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    /* Ensure close button is clickable */
    .sla-mobile-layout .sla-comments-sidebar-close {
        position: relative;
        z-index: 10;
        pointer-events: auto;
        cursor: pointer;
    }
    
    /* Scrollable body */
    .sla-mobile-layout .sla-comments-sidebar-body {
        flex: 1;
        overflow-y: auto;
        min-height: 0;
        max-height: calc(70vh - 140px);
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    /* Fixed footer */
    .sla-mobile-layout .sla-comments-sidebar-footer {
        flex-shrink: 0;
        padding-bottom: env(safe-area-inset-bottom, 16px);
    }
}

/* Backdrop for mobile */
.sla-comments-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    cursor: pointer;
}

@media (max-width: 900px) {
    .sla-mobile-layout.comments-open .sla-comments-backdrop {
        display: block;
        pointer-events: auto;
    }
}

/* Style existing comment classes from AJAX */
.sla-comments-modal-body .sla-comment {
    display: flex;
    gap: 12px;
    padding: 12px 0;
}

.sla-comments-modal-body .sla-comment + .sla-comment {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sla-comments-modal-body .sla-comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.sla-comments-modal-body .sla-comment-content {
    flex: 1;
    min-width: 0;
}

.sla-comments-modal-body .sla-comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.sla-comments-modal-body .sla-comment-author {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.sla-comments-modal-body .sla-comment-author:hover {
    text-decoration: underline;
}

.sla-comments-modal-body .sla-comment-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.sla-comments-modal-body .sla-comment-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0 0 8px 0;
    word-wrap: break-word;
}

.sla-comments-modal-body .sla-comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sla-comments-modal-body .sla-comment-action,
.sla-comments-modal-body .sla-comment-like-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.sla-comments-modal-body .sla-comment-action:hover,
.sla-comments-modal-body .sla-comment-like-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.sla-comments-modal-body .sla-comment-like-btn.sla-liked,
.sla-comments-modal-body .sla-comment-like-btn.liked {
    color: #ef4444;
}

.sla-comments-modal-body .sla-comment-action svg,
.sla-comments-modal-body .sla-comment-like-btn svg {
    width: 16px;
    height: 16px;
}

/* Reply comments */
.sla-comments-modal-body .sla-comment-reply {
    margin-left: 48px;
}

.sla-comments-modal-body .sla-comment-reply .sla-comment-avatar {
    width: 28px;
    height: 28px;
}

/* ===== MODAL ===== */
.sla-mobile-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sla-mobile-modal.active {
    opacity: 1;
    visibility: visible;
}

.sla-mobile-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.sla-mobile-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.sla-mobile-modal.active .sla-mobile-modal-content {
    transform: translateY(0) scale(1);
}

.sla-mobile-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sla-mobile-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.sla-mobile-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sla-mobile-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sla-mobile-modal-close svg {
    width: 20px;
    height: 20px;
}

.sla-mobile-modal-body {
    padding: 20px;
}

/* ===== MODAL COMPOSER ===== */
.sla-mobile-composer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sla-mobile-composer textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
    transition: all 0.2s ease;
}

.sla-mobile-composer textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.08);
}

.sla-mobile-composer textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sla-mobile-composer-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.sla-mobile-composer-preview img,
.sla-mobile-composer-preview video {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.sla-mobile-composer-preview .sla-remove-media {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.sla-mobile-composer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sla-mobile-composer-tool {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sla-mobile-composer-tool:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.sla-mobile-composer-tool svg {
    width: 20px;
    height: 20px;
}

/* ===== MEDIA BACKGROUND ===== */
.sla-mobile-media {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a0f1a 0%, #000 100%);
}

.sla-mobile-media img,
.sla-mobile-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-mobile-media video {
    background: #000;
}

/* Placeholder wanneer geen media */
.sla-mobile-media--text {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.sla-mobile-text-content {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    max-width: 90%;
    word-wrap: break-word;
}

/* ===== GRADIENT OVERLAY ===== */
.sla-mobile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.95) 15%,
        rgba(0, 0, 0, 0.7) 35%,
        rgba(0, 0, 0, 0.3) 55%,
        transparent 75%
    );
    pointer-events: none;
}

/* ===== CONTENT AREA (Bottom Left) ===== */
.sla-mobile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 70px;
    padding: 24px;
    z-index: 10;
}

/* User Info */
.sla-mobile-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sla-mobile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.sla-mobile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-mobile-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sla-mobile-username {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sla-mobile-username:hover {
    text-decoration: underline;
}

.sla-mobile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    width: fit-content;
    backdrop-filter: blur(12px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sla-mobile-badge--release {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(16, 185, 129, 0.15));
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
}

.sla-mobile-badge--showcase {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.35), rgba(251, 191, 36, 0.15));
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 2px 12px rgba(251, 191, 36, 0.25);
}

.sla-mobile-badge--achievement {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(139, 92, 246, 0.15));
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.25);
}

.sla-mobile-badge--event {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(59, 130, 246, 0.15));
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.25);
}

.sla-mobile-badge--short {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(236, 72, 153, 0.15));
    color: #f9a8d4;
    border: 1px solid rgba(236, 72, 153, 0.5);
    box-shadow: 0 2px 12px rgba(236, 72, 153, 0.25);
}

.sla-mobile-badge svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Post Title - 433 Style */
.sla-mobile-title {
    font-size: clamp(24px, 6vw, 32px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.5px;
}

/* Post Description - Longer excerpt */
.sla-mobile-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin: 0 0 16px 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags */
.sla-mobile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.sla-mobile-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.sla-mobile-tag svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    opacity: 0.9;
}

/* Time */
.sla-mobile-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* External Link Button */
.sla-mobile-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
    transition: all 0.2s ease;
    width: fit-content;
}

.sla-mobile-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    color: #fff;
    text-decoration: none;
}

.sla-mobile-link svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
}

/* Event slide specifieke styling */
.sla-mobile-event .sla-mobile-content {
    padding-bottom: 30px;
}

.sla-mobile-event .sla-mobile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

/* ===== SHORT SHARE STYLING ===== */
.sla-mobile-short .sla-mobile-media--clickable {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.sla-mobile-short .sla-mobile-media--clickable img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-mobile-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.sla-mobile-short:hover .sla-mobile-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.sla-mobile-play-button {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sla-mobile-short:hover .sla-mobile-play-button {
    transform: scale(1.1);
    background: #fff;
}

.sla-mobile-play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

/* Short badge styling */
.sla-mobile-badge--short {
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: #fff;
}

.sla-mobile-badge--short svg {
    width: 12px;
    height: 12px;
}

/* Short link button */
.sla-mobile-link--short {
    background: linear-gradient(135deg, #ff0050, #ff4081);
    border-color: transparent;
}

.sla-mobile-link--short: hover {
    background: linear-gradient(135deg, #ff1a60, #ff5090);
}

/* ===== TOAST NOTIFICATION ===== */
.sla-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10000;
    animation: sla-toast-in 0.3s ease;
}

@keyframes sla-toast-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== PINNED BADGE ===== */
/* Badge wordt verborgen in de feed - alleen zichtbaar in Feed Beheer */
.sla-mobile-pinned-badge {
    display: none;
}

/* ===== ACTIONS (Right Side) ===== */
.sla-mobile-actions {
    position: absolute;
    right: 12px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.sla-mobile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #fff;
    transition: transform 0.2s ease;
}

.sla-mobile-action:hover {
    transform: scale(1.1);
}

.sla-mobile-action:active {
    transform: scale(0.95);
}

.sla-mobile-action-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.sla-mobile-action:hover .sla-mobile-action-icon {
    background: rgba(255, 255, 255, 0.2);
}

.sla-mobile-action-icon svg {
    width: 24px;
    height: 24px;
}

.sla-mobile-action-count {
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Like Animation */
.sla-mobile-action.sla-liked .sla-mobile-action-icon {
    background: rgba(239, 68, 68, 0.2);
}

.sla-mobile-action.sla-liked .sla-mobile-action-icon svg {
    fill: #ef4444;
    stroke: #ef4444;
}

.sla-mobile-action.sla-liked .sla-mobile-action-count {
    color: #ef4444;
}

@keyframes likeAnimation {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.sla-mobile-action.sla-just-liked .sla-mobile-action-icon {
    animation: likeAnimation 0.4s ease;
}

/* ===== MENU BUTTON ===== */
.sla-mobile-menu {
    position: relative;
}

.sla-mobile-menu-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    min-width: 180px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    overflow: hidden;
    z-index: 100;
    box-sizing: border-box;
    padding: 8px 0;
}

.sla-mobile-menu.active .sla-mobile-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(-8px);
}

.sla-mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    margin: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    box-sizing: border-box;
    white-space: nowrap;
}

.sla-mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sla-mobile-menu-item--danger {
    color: #ef4444;
}

.sla-mobile-menu-item--danger:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.sla-mobile-menu-item svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
}

/* ===== RELEASE CARD EMBED ===== */
.sla-mobile-release-embed {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.sla-mobile-release-embed:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.sla-mobile-release-artwork {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.sla-mobile-release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-mobile-release-meta {
    flex: 1;
    min-width: 0;
}

.sla-mobile-release-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sla-mobile-release-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.sla-mobile-release-platform {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #10b981;
}

.sla-mobile-release-platform svg {
    width: 14px;
    height: 14px;
}

/* ===== ACHIEVEMENT CARD ===== */
.sla-mobile-achievement-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    margin-top: 12px;
}

.sla-mobile-achievement-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.sla-mobile-achievement-info {
    flex: 1;
}

.sla-mobile-achievement-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a78bfa;
    margin-bottom: 2px;
}

.sla-mobile-achievement-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* ===== EVENT DATE BADGE ===== */
.sla-mobile-date-badge {
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-align: center;
    z-index: 15;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.sla-mobile-date-day {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.sla-mobile-date-month {
    font-size: 13px;
    font-weight: 700;
    color: #60a5fa;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* ===== NO RESULTS ===== */
.sla-mobile-no-results {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 40px;
}

.sla-mobile-no-results svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

/* ===== VIDEO CONTROLS ===== */
.sla-mobile-media video {
    cursor: pointer;
}

.sla-mobile-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

.sla-mobile-play-indicator svg {
    width: 36px;
    height: 36px;
    color: #fff;
    margin-left: 4px;
}

.sla-mobile-post.paused .sla-mobile-play-indicator {
    opacity: 1;
}

/* ===== MUTE INDICATOR ===== */
.sla-mobile-mute-indicator {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    transition: all 0.2s ease;
}

.sla-mobile-mute-indicator:hover {
    background: rgba(0, 0, 0, 0.7);
}

.sla-mobile-mute-indicator svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* ===== PROGRESS BAR ===== */
.sla-mobile-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.sla-mobile-progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===== KLEINE SCHERMEN ===== */
@media (max-width: 768px) {
    .sla-mobile-layout .sla-mobile-feed {
        border-radius: 0;
        height: 90dvh;
        max-height: 90dvh;
    }
    
    .sla-mobile-layout .sla-mobile-post {
        height: 90dvh;
    }
    
    .sla-mobile-layout .sla-mobile-content {
        padding: 20px 60px 24px 20px;
    }
    
    .sla-mobile-layout .sla-mobile-actions {
        right: 8px;
        bottom: 100px;
        gap: 16px;
    }
    
    .sla-mobile-layout .sla-mobile-action-icon {
        width: 44px;
        height: 44px;
    }
    
    .sla-mobile-layout .sla-mobile-action-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .sla-mobile-layout .sla-mobile-title {
        font-size: 22px;
    }
    
    .sla-mobile-layout .sla-mobile-description {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .sla-mobile-layout .sla-mobile-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .sla-mobile-layout .sla-mobile-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .sla-mobile-layout .sla-mobile-filter-pills {
        top: 12px;
    }
    
    .sla-mobile-layout .sla-mobile-mute-indicator {
        top: 50px;
        left: 12px;
    }
    
    .sla-mobile-layout .sla-mobile-date-badge {
        top: 50px;
        right: 12px;
    }
    
    .sla-mobile-layout .sla-mobile-fab {
        bottom: 20px;
        right: 20px;
    }
}

/* ===== CONTINUE LEARNING SLIDE ===== */
.sla-continue-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: #0a0a12;
}

.sla-continue-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.sla-continue-bg--image {
    filter: brightness(0.5);
}

.sla-continue-bg--gradient {
    background: linear-gradient(145deg, 
        #0f172a 0%, 
        #1e293b 30%,
        #0f172a 60%,
        #1e3a5f 100%
    );
}

.sla-continue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 18, 0.98) 0%,
        rgba(10, 10, 18, 0.85) 25%,
        rgba(10, 10, 18, 0.5) 50%,
        rgba(10, 10, 18, 0.3) 100%
    );
}

.sla-continue-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Welcome message - grote kop gecentreerd */
.sla-continue-welcome {
    margin-bottom: 40px;
    max-width: 90%;
}

.sla-continue-greeting {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.sla-continue-name {
    display: block;
    color: #60a5fa;
}

.sla-continue-welcome-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

/* Course info */
.sla-continue-course-info {
    margin-bottom: 24px;
    max-width: 85%;
}

.sla-continue-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
}

.sla-continue-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sla-continue-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sla-continue-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    width: fit-content;
}

.sla-continue-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

.sla-continue-button svg {
    width: 18px;
    height: 18px;
}

.sla-continue-progress {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}

.sla-continue-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.sla-continue-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.sla-continue-progress-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

/* Action buttons voor continue slide */
.sla-continue-actions {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.sla-continue-actions .sla-mobile-action {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.sla-continue-actions .sla-mobile-action:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sla-continue-play {
    background: #2563eb;
}

.sla-continue-play: hover {
    background: #1d4ed8;
}

/* Scroll indicator */
.sla-continue-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: sla-bounce 2s ease-in-out infinite;
}

.sla-scroll-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sla-continue-scroll-hint svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes sla-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) translateY(6px);
        opacity: 1;
    }
}

/* Mobile aanpassingen */
@media (max-width: 768px) {
    .sla-continue-content {
        padding: 20px;
    }
    
    .sla-continue-greeting {
        font-size: 30px;
    }
    
    .sla-continue-welcome-sub {
        font-size: 15px;
    }
    
    .sla-continue-welcome {
        margin-bottom: 32px;
    }
    
    .sla-continue-title {
        font-size: 22px;
        font-weight: 700;
    }
    
    .sla-continue-subtitle {
        font-size: 14px;
    }
    
    .sla-continue-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .sla-continue-actions {
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ===== INLINE SHORT PLAYER ===== */
.sla-inline-short-player {
    position: absolute;
    inset: 0;
    z-index: 100;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    touch-action: pan-x;
    overscroll-behavior: contain;
}

.sla-inline-short-player .sse-shorts {
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    box-shadow: none;
    touch-action: pan-x;
    overscroll-behavior: contain;
}

/* Sound toggle naar links (kruisje staat rechts) */
.sla-inline-short-player .sse-sound-toggle {
    right: auto;
    left: 15px;
}

/* Verberg swipe hint in inline player */
.sla-inline-short-player .sse-hint {
    display: none;
}

.sla-inline-short-player .sse-page-wrapper {
    padding: 0;
    background: transparent;
}

.sla-inline-short-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 110;
}

.sla-inline-short-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.sla-inline-short-close svg {
    width: 18px;
    height: 18px;
}

.sla-inline-short-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    color: rgba(255, 255, 255, 0.6);
    gap: 16px;
}

.sla-shorts-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: sla-spin 0.8s linear infinite;
}

@keyframes sla-spin {
    to { transform: rotate(360deg); }
}

/* Hide original content when short is playing */
.sla-mobile-post.sla-short-playing > *:not(.sla-inline-short-player) {
    visibility: hidden;
}

/* Short opener cursor */
.sla-short-opener {
    cursor: pointer;
}

/* ===== FACT POST IN FEED ===== */
.sla-mobile-fact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sla-mobile-fact .sla-fact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sla-mobile-fact .sla-fact-bg--gradient {
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(37, 99, 235, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
}

.sla-mobile-fact .sla-fact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 26, 0.3) 0%,
        rgba(15, 15, 26, 0.6) 50%,
        rgba(15, 15, 26, 0.85) 100%
    );
    z-index: 1;
}

.sla-mobile-fact .sla-fact-bg:not(.sla-fact-bg--gradient) + .sla-fact-overlay {
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 26, 0.4) 0%,
        rgba(15, 15, 26, 0.7) 50%,
        rgba(15, 15, 26, 0.9) 100%
    );
}

.sla-mobile-fact .sla-fact-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-height: calc(100% - 180px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 24px;
    border: none;
    border-radius: 16px;
}

/* Border met fade naar beneden */
.sla-mobile-fact .sla-fact-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(
        to bottom,
        rgba(37, 99, 235, 0.5) 0%,
        rgba(37, 99, 235, 0.5) 60%,
        rgba(37, 99, 235, 0.2) 80%,
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Glow effect bovenaan */
.sla-mobile-fact .sla-fact-content::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 20%;
    right: 20%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

/* Kleinere schermen: compacter */
@media (max-width: 480px) {
    .sla-mobile-fact .sla-fact-content {
        width: calc(100% - 24px);
        max-height: calc(100% - 160px);
        padding: 36px 16px 20px;
    }
}

/* Grotere schermen */
@media (min-width: 768px) {
    .sla-mobile-fact .sla-fact-content {
        width: calc(100% - 48px);
        max-height: calc(100% - 200px);
    }
}

/* ===== FACTS! LABEL in de TOP border ===== */
.sla-mobile-fact .sla-fact-hero-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1;
    padding: 6px 16px;
    background: #0f0f1a;
    border: 1px solid rgba(37, 99, 235, 0.5);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
    text-shadow: 0 0 6px rgba(37, 99, 235, 0.3);
}

.sla-mobile-fact .sla-fact-hero-label span {
    display: block;
}

/* Verwijder oude pseudo-elements */
.sla-mobile-fact::after,
.sla-mobile-fact::before,
.sla-mobile-fact .sla-fact-overlay::after,
.sla-mobile-fact .sla-fact-bg::after,
.sla-mobile-fact .sla-fact-bg::before {
    display: none;
}

.sla-mobile-fact .sla-fact-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    margin-bottom: 16px;
}

.sla-mobile-fact .sla-fact-icon {
    display: none;
}

.sla-mobile-fact .sla-fact-text {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.45;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

.sla-mobile-fact .sla-fact-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.sla-mobile-fact .sla-fact-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.sla-mobile-fact .sla-fact-artist {
    font-weight: 600;
    color: #93c5fd;
}

.sla-mobile-fact .sla-fact-year {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== LEES MEER KNOP ===== */
.sla-mobile-fact .sla-fact-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sla-mobile-fact .sla-fact-read-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.sla-mobile-fact .sla-fact-read-more svg {
    opacity: 0.7;
    transition: all 0.2s ease;
}

.sla-mobile-fact .sla-fact-read-more:hover svg {
    opacity: 1;
    transform: translateX(3px);
}

/* ===== FACT VAN DE DAG SLIDE ===== */
.sla-fact-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sla-fact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sla-fact-bg--gradient {
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(37, 99, 235, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
}

.sla-fact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.sla-fact-slide .sla-fact-bg:not(.sla-fact-bg--gradient) + .sla-fact-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.sla-fact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 32px 24px;
    max-width: 90%;
}

.sla-fact-category {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    color: #60a5fa;
}

.sla-fact-icon {
    margin-right: 8px;
    font-size: 14px;
}

.sla-fact-badge {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fbbf24;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sla-fact-badge svg {
    display: none;
}

.sla-fact-text {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.4;
    font-weight: 800;
    color: #fff;
    margin: 0 0 32px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.sla-fact-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sla-fact-artist {
    font-weight: 700;
    color: #a78bfa;
    font-size: 15px;
}

.sla-fact-year {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.sla-fact-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.sla-fact-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sla-fact-cta:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    color: #fff;
}

.sla-fact-cta svg {
    transition: transform 0.2s ease;
}

.sla-fact-cta:hover svg {
    transform: translateX(4px);
}

/* ===== NEWS SLIDE ===== */
.sla-news-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sla-news-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sla-news-bg--gradient {
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
}

.sla-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.98) 15%,
        rgba(0, 0, 0, 0.9) 30%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 85%
    );
    z-index: 1;
}

.sla-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 70px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 24px 24px 60px;
}

.sla-feed-news-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 16px;
}

/* Alleen gecentreerd in carousel slides */
.sla-news-slide-content .sla-feed-news-badge {
    align-self: center;
    text-transform: none;
    letter-spacing: normal;
}

.sla-news-title {
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.15;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
}

.sla-news-excerpt {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sla-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.sla-news-source {
    font-weight: 600;
    color: #2563eb;
}

.sla-news-time {
    font-size: 12px;
}

.sla-news-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sla-news-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sla-news-cta--primary {
    background: #2563eb;
    color: #fff;
}

.sla-news-cta--primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    color: #fff;
}

.sla-news-cta--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sla-news-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.sla-news-cta svg {
    transition: transform 0.2s ease;
}

.sla-news-cta:hover svg {
    transform: translateX(3px);
}

/* ===== NEWS STORY CAROUSEL ===== */
.sla-news-story {
    position: relative;
}

.sla-news-carousel {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Progress bars - onderin, blauw */
.sla-news-dots {
    position: absolute;
    bottom: 16px;
    left: 60px;
    right: 60px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.sla-news-dot {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sla-news-dot.active {
    background: #2563eb;
}

.sla-news-dot.viewed {
    background: #2563eb;
}

/* Navigation arrows */
.sla-news-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.sla-news-nav:hover {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.sla-news-nav svg {
    width: 20px;
    height: 20px;
}

.sla-news-nav--prev {
    left: 12px;
}

.sla-news-nav--next {
    right: 12px;
}

.sla-news-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Slides wrapper */
.sla-news-slides-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.sla-news-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.sla-news-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sla-news-slide.prev {
    transform: translateX(-20px);
}

.sla-news-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sla-news-slide.active .sla-news-slide-bg {
    animation: newsKenBurns 8s ease-out forwards;
}

@keyframes newsKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.sla-news-slide-bg--gradient {
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
}

.sla-news-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.sla-news-slide-overlay--dark {
    background: rgba(0, 0, 0, 0.7);
}

.sla-news-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px 80px;
    max-width: 90%;
}

.sla-news-slide .sla-feed-news-badge {
    margin-bottom: 24px;
}

.sla-news-slide-text {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
}

.sla-news-slide-title {
    display: block;
    margin-top: 24px;
    padding-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: color 0.2s ease;
    position: relative;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.sla-news-slide-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
}

.sla-news-slide-title:hover {
    color: #fff;
}

.sla-news-slide.active .sla-news-slide-text {
    animation: newsTextReveal 0.6s ease-out 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.sla-news-slide.active .sla-news-slide-title {
    animation: newsTextReveal 0.6s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes newsTextReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* CTA slide */
.sla-news-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sla-news-cta-title {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.sla-news-cta-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.sla-news-cta-meta span:first-child {
    color: #2563eb;
    font-weight: 600;
}

.sla-news-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.sla-news-cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    color: #fff;
}

.sla-news-cta-btn svg {
    transition: transform 0.2s ease;
}

.sla-news-cta-btn:hover svg {
    transform: translateX(3px);
}

/* ===== QUIZ VAN DE DAG SLIDE ===== */
.sla-quiz-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sla-quiz-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0a1628 0%, #0d1b33 100%);
    z-index: 0;
}

.sla-quiz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.sla-quiz-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Quiz Intro Screen */
.sla-quiz-intro {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    animation: sla-quiz-fade 0.5s ease;
}

.sla-quiz-intro-icon {
    font-size: 64px;
    margin-bottom: 8px;
    animation: sla-quiz-bounce 2s ease-in-out infinite;
}

@keyframes sla-quiz-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.sla-quiz-intro-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.sla-quiz-intro-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

.sla-quiz-intro-xp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 30px;
    color: #fbbf24;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}

.sla-quiz-intro-xp svg {
    color: #f59e0b;
}

.sla-quiz-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    margin-top: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.sla-quiz-intro-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.sla-quiz-intro-btn:active {
    transform: translateY(-1px);
}

.sla-quiz-intro-btn svg {
    transition: transform 0.3s ease;
}

.sla-quiz-intro-btn:hover svg {
    transform: translateX(4px);
}

.sla-quiz-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0;
    font-style: italic;
}

.sla-quiz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.sla-quiz-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(30, 64, 175, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #a5b4fc;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.sla-quiz-badge svg {
    color: #60a5fa;
}

.sla-quiz-xp-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.sla-quiz-question {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    letter-spacing: -0.3px;
}

.sla-quiz-blank {
    display: inline-block;
    min-width: 100px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin: 0 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.sla-quiz-blank.filled {
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid #3b82f6;
    color: #60a5fa;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    animation: sla-quiz-fill 0.3s ease;
}

@keyframes sla-quiz-fill {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.sla-quiz-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.sla-quiz-choice {
    padding: 14px 24px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.sla-quiz-choice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.sla-quiz-choice:hover:not(:disabled)::before {
    left: 100%;
}

.sla-quiz-choice:hover:not(:disabled) {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.5);
    border-color: rgba(96, 165, 250, 0.5);
}

.sla-quiz-choice:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.sla-quiz-choice.correct {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-color: #22c55e;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.sla-quiz-choice.wrong {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-color: #ef4444;
    animation: sla-quiz-shake 0.5s ease-in-out;
}

@keyframes sla-quiz-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.sla-quiz-result {
    text-align: center;
    padding: 24px;
    width: 100%;
    animation: sla-quiz-fade 0.4s ease;
}

@keyframes sla-quiz-fade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sla-quiz-result-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.sla-quiz-result-icon::before {
    content: '🎉';
}

.sla-quiz-result.wrong .sla-quiz-result-icon::before {
    content: '💪';
}

.sla-quiz-result-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sla-quiz-result.correct .sla-quiz-result-text {
    color: #4ade80;
}

.sla-quiz-result.wrong .sla-quiz-result-text {
    color: #f87171;
}

.sla-quiz-explanation {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-align: left;
    backdrop-filter: blur(10px);
}

.sla-quiz-explanation::before {
    content: "💡 ";
}

.sla-quiz-source {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

/* Mobile aanpassingen */
@media (max-width: 768px) {
    .sla-quiz-content {
        padding: 24px 20px;
        gap: 20px;
    }
    
    .sla-quiz-title {
        font-size: 22px;
    }
    
    .sla-quiz-question {
        font-size: 18px;
    }
    
    .sla-quiz-blank {
        min-width: 70px;
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .sla-quiz-choices {
        gap: 8px;
    }
    
    .sla-quiz-choice {
        padding: 11px 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .sla-quiz-intro {
        padding: 32px 20px;
    }
    
    .sla-quiz-intro-icon {
        font-size: 56px;
    }
    
    .sla-quiz-intro-title {
        font-size: 36px;
    }
    
    .sla-quiz-intro-subtitle {
        font-size: 16px;
    }
    
    .sla-quiz-intro-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ===== TRENDING TRACKS SLIDE ===== */
.sla-trending-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.sla-trending-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(50px) brightness(0.4) saturate(1.3);
    transform: scale(1.2);
    transition: background-image 0.5s ease;
}

.sla-trending-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Swipe hint */
.sla-trending-swipe-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    animation: sla-swipe-hint 3s ease-in-out;
}

@keyframes sla-swipe-hint {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    10%, 80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Carousel */
.sla-trending-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y pinch-zoom;
}

.sla-trending-card {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    pointer-events: none;
}

.sla-trending-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sla-trending-card.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.sla-trending-card.next {
    transform: translateX(100%);
    opacity: 0;
}

/* Swipe animation */
.sla-trending-card.swiping-left {
    transform: translateX(-30%);
    opacity: 0.5;
}

.sla-trending-card.swiping-right {
    transform: translateX(30%);
    opacity: 0.5;
}

.sla-trending-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding: 60px 20px 100px;
}

/* Header */
.sla-trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4px;
}

.sla-trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    color: #3b82f6;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sla-trending-chart-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

/* Cover Art */
.sla-trending-cover-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.sla-trending-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-trending-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: rgba(255, 255, 255, 0.8);
}

.sla-trending-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}

.sla-trending-explicit {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
}

/* Track Info */
.sla-trending-info {
    margin-top: 4px;
}

.sla-trending-track-name {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.sla-trending-artist {
    margin: 3px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.sla-trending-album {
    margin: 3px 0 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* Stats Grid */
.sla-trending-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
    margin-top: 6px;
}

.sla-trending-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sla-trending-stat-card.sla-stat-rank {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
}

.sla-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.sla-stat-rank .sla-stat-value {
    color: #3b82f6;
    font-size: 17px;
}

.sla-stat-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sla-stat-change {
    font-size: 9px;
    font-weight: 600;
    margin-top: 2px;
    padding: 1px 5px;
    border-radius: 4px;
}

.sla-stat-change.up {
    color: #2ed573;
    background: rgba(46, 213, 115, 0.15);
}

.sla-stat-change.down {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.15);
}

/* Tags */
.sla-trending-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 2px;
}

.sla-trending-tag {
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Wiki */
.sla-trending-wiki {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin: 2px 0 0;
    max-width: 280px;
}

/* CTA Buttons */
.sla-trending-ctas {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.sla-trending-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sla-cta-spotify {
    background: #2563eb;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.sla-cta-spotify:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.sla-cta-lastfm {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.sla-cta-lastfm:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.sla-cta-preview {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.sla-cta-preview:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.sla-cta-preview.playing {
    background: rgba(37, 99, 235, 0.3);
    border-color: rgba(37, 99, 235, 0.5);
}

.sla-trending-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Indicators - fixed at bottom */
.sla-trending-indicators {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.sla-trending-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sla-trending-indicator:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sla-trending-indicator.active {
    background: #2563eb;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.15);
}

.sla-indicator-rank {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.sla-trending-indicator.active .sla-indicator-rank {
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sla-trending-cover-wrap {
        width: 130px;
        height: 130px;
    }
    
    .sla-trending-track-name {
        font-size: 15px;
    }
    
    .sla-trending-content {
        padding: 50px 16px 110px;
        gap: 8px;
    }
    
    .sla-trending-stats-grid {
        gap: 5px;
    }
    
    .sla-trending-stat-card {
        padding: 6px 3px;
    }
    
    .sla-stat-value {
        font-size: 13px;
    }
    
    .sla-trending-indicators {
        bottom: 100px;
    }
    
    .sla-trending-indicator {
        width: 26px;
        height: 26px;
    }
}

/* ================================
   SHORT SLIDES IN FEED
   ================================ */

/* ===== SHORT STORY IN FEED ===== */
/* Zelfde structuur als werkende news slides */

.sla-short-story {
    cursor: pointer;
}

.sla-short-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sla-short-bg--gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.sla-short-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 64, 124, 0.6);
    z-index: 1;
}

.sla-short-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px 200px;
    color: #fff;
}

.sla-short-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}

.sla-short-title {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    max-width: 90%;
}

.sla-short-title .sla-short-highlight {
    display: inline;
    background: #2563eb;
    padding: 2px 8px;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.sla-short-excerpt {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 85%;
}

.sla-short-play-btn {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.sla-short-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.sla-short-play-btn svg {
    fill: #fff;
}

.sla-short-story .sla-short-meta {
    position: absolute;
    bottom: 100px;
    left: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Actions klikbaar houden */
.sla-short-story .sla-mobile-actions {
    z-index: 10;
}

/* Mobile */
@media (max-width: 480px) {
    .sla-short-content {
        padding: 60px 20px;
    }
    
    .sla-short-title {
        font-size: 24px;
    }
    
    .sla-short-play-btn {
        bottom: 130px;
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .sla-short-story .sla-short-meta {
        bottom: 90px;
    }
}

/* Loading state voor short story */
.sla-short-story.sla-short-loading .sla-short-play-btn {
    pointer-events: none;
    opacity: 0.7;
}

.sla-short-story.sla-short-loading .sla-short-play-btn svg {
    display: none;
}

.sla-short-story.sla-short-loading .sla-short-play-btn span {
    display: none;
}

.sla-short-story.sla-short-loading .sla-short-play-btn::after {
    content: 'Laden...';
    font-size: 14px;
}

/* ===== SHORT ITEM INTRO STYLE (werkelijke classes uit HTML) ===== */
.sla-short-item--intro {
    cursor: pointer;
}

.sla-short-content--intro {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px 200px;
    color: #fff;
}

.sla-short-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}

.sla-short-headline {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    max-width: 90%;
}

.sla-short-headline .sla-short-highlight {
    display: inline;
    background: #2563eb;
    padding: 2px 8px;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.sla-short-subtext {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 85%;
}

/* Leestijd indicator - subtiel onder de content */
.sla-short-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
}

.sla-short-reading-time svg {
    opacity: 0.7;
    width: 13px;
    height: 13px;
}

/* Play button overlay - klikbaar over alles */
.sla-short-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sla-short-play-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.sla-short-play-circle svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-left: 4px;
}

.sla-short-play-overlay:hover .sla-short-play-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Meta onderaan voor intro */
.sla-short-item--intro .sla-short-meta {
    position: absolute;
    bottom: 100px;
    left: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Actions klikbaar houden */
.sla-short-item--intro .sla-mobile-actions {
    z-index: 10;
}

/* Loading state voor intro */
.sla-short-item--intro.sla-short-loading .sla-short-play-circle {
    opacity: 0.7;
}

.sla-short-item--intro.sla-short-loading .sla-short-play-circle svg {
    display: none;
}

.sla-short-item--intro.sla-short-loading .sla-short-play-circle::after {
    content: '';
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile voor intro style */
@media (max-width: 480px) {
    .sla-short-content--intro {
        padding: 60px 20px 180px;
    }
    
    .sla-short-headline {
        font-size: 24px;
    }
    
    .sla-short-play-circle {
        width: 70px;
        height: 70px;
    }
    
    .sla-short-play-circle svg {
        width: 28px;
        height: 28px;
    }
    
    .sla-short-item--intro .sla-short-meta {
        bottom: 90px;
    }
}

/* ===========================================
   Load More - Invisible Infinite Scroll
   =========================================== */

.sla-mobile-load-more {
    /* Completely invisible - no layout impact */
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
}

.sla-mobile-load-more button {
    /* Hidden but functional for JS */
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Loading indicator - fixed at bottom of screen */
.sla-mobile-load-more.is-loading::after {
    content: '';
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: sla-spin 0.7s linear infinite;
    z-index: 100;
    pointer-events: none;
    visibility: visible;
}

@keyframes sla-spin {
    to { transform: rotate(360deg); }
}

/* ===========================================
   Feed Video Slides
   =========================================== */

.sla-feed-video {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.sla-feed-video .sla-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.sla-feed-video .sla-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* YouTube Placeholder - should cover entire container */
.sla-youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    z-index: 5;
}

.sla-youtube-placeholder .sla-youtube-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sla-youtube-play-btn {
    position: relative;
    z-index: 10;
    width: 68px;
    height: 48px;
    opacity: 0.9;
    transition: all 0.2s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.sla-youtube-placeholder:hover .sla-youtube-play-btn {
    opacity: 1;
    transform: scale(1.1);
}

/* YouTube iframe wrapper */
.sla-youtube-iframe-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    display: none;
    background: #000;
}

.sla-youtube-iframe-wrap.active {
    display: block;
}

.sla-youtube-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video Badge Variants */
.sla-mobile-badge--video {
    background: rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.5);
}

.sla-mobile-badge--news-video {
    background: rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(37, 99, 235, 0.5);
}

/* Video Meta */
.sla-video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.sla-video-source {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Linked News Card */
.sla-video-news-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sla-video-news-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateX(4px);
}

.sla-video-news-link img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sla-video-news-link span {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sla-video-news-link span strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.sla-video-news-link span:not(strong) {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sla-video-news-link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* YouTube loading state */
.sla-youtube-video.is-loading .sla-youtube-placeholder::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sla-spin 0.8s linear infinite;
    z-index: 10;
}

.sla-youtube-video.is-loading .sla-youtube-play-btn {
    opacity: 0;
}

/* Mobile */
@media (max-width: 480px) {
    .sla-video-news-link {
        padding: 10px 12px;
    }
    
    .sla-video-news-link img {
        width: 40px;
        height: 40px;
    }
}

/* YouTube specific overrides */
.sla-youtube-video .sla-yt-mute {
    z-index: 20;
}

/* Loading state for YouTube */
.sla-youtube-video.is-loading .sla-youtube-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sla-spin 0.8s linear infinite;
    z-index: 15;
}

.sla-youtube-video.is-loading .sla-youtube-play-btn {
    opacity: 0;
}

/* ===== MOBILE TAB CONTENT ===== */
.sla-mobile-tab-content {
    padding: 20px;
    padding-bottom: calc(7dvh + 20px);
    min-height: calc(100dvh - 60px);
    background: #0a0a0f;
}

.sla-mobile-tab-header {
    margin-bottom: 20px;
}

.sla-mobile-tab-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ===== CONNECT TAB STYLING ===== */
.sla-connect-container .sla-member-directory {
    background: transparent;
}

.sla-connect-container .sla-directory-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sla-connect-container .sla-members-grid {
    padding: 20px;
    gap: 16px;
}

/* Adjust member cards in connect tab */
.sla-connect-container .sla-member-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.sla-connect-container .sla-member-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ===== PROFILE TAB STYLING ===== */
.sla-profile-container .sapp-profile {
    max-width: 600px;
    margin: 0 auto;
}

/* Smooth loading state for tabs */
.sla-app-content[data-tab-content="connect"],
.sla-app-content[data-tab-content="profile"] {
    background: #0a0a0f;
}

/* Loading indicator when switching tabs */
.sla-tab-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.sla-tab-loading::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: sla-spin 0.8s linear infinite;
}

/* ===== SUBTIELE PLAY HINTS - FADE OUT NA 2 SECONDEN ===== */

/* YouTube play button - maak subtiel */
.sla-youtube-play-btn {
    width: 56px !important;
    height: 56px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Animatie alleen als post in view komt */
.sla-play-hint .sla-youtube-play-btn {
    animation: sla-play-hint-fade 2.5s ease-out forwards, sla-play-hint-pulse 1.5s ease-out 2 !important;
}

.sla-youtube-play-btn svg {
    width: 20px !important;
    height: 20px !important;
    fill: #fff !important;
    margin-left: 3px;
}

.sla-youtube-play-btn svg path:first-child {
    fill: transparent !important; /* Verberg rode YouTube achtergrond */
}

.sla-youtube-play-btn svg path:last-child {
    fill: #fff !important;
}

/* Shorts play overlay - blijft klikbaar, alleen visueel faden */
.sla-short-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
}

.sla-short-play-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animatie alleen als post in view komt */
.sla-play-hint .sla-short-play-circle {
    animation: sla-play-hint-pulse 1.5s ease-out 2, sla-play-hint-fade 2.5s ease-out forwards;
}

.sla-short-play-circle svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

/* Verberg tijdens loading */
.sla-youtube-video.is-loading .sla-youtube-play-btn,
.sla-short-item--intro.sla-short-loading .sla-short-play-overlay {
    display: none !important;
}

/* Fix: verberg dubbele loading spinner (::after heeft geen positioning) */
.sla-youtube-video.is-loading .sla-youtube-placeholder::after {
    display: none !important;
}

/* Alleen ::before spinner gebruiken (die is gecentreerd) */
.sla-youtube-video.is-loading .sla-youtube-placeholder::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 36px !important;
    height: 36px !important;
    border: 3px solid rgba(255, 255, 255, 0.2) !important;
    border-top-color: #fff !important;
    border-radius: 50% !important;
    animation: sla-spin 0.8s linear infinite !important;
}

/* Keyframes */
@keyframes sla-play-hint-fade {
    0%, 70% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes sla-play-hint-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ===== LOGIN REQUIRED MODAL ===== */
.sla-login-required-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sla-login-required-modal.active {
    opacity: 1;
    visibility: visible;
}

.sla-login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sla-login-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.sla-login-required-modal.active .sla-login-modal-content {
    transform: scale(1) translateY(0);
}

.sla-login-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sla-login-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sla-login-modal-icon {
    margin-bottom: 16px;
    color: #fff;
}

.sla-login-modal-icon svg {
    width: 56px;
    height: 56px;
}

.sla-login-modal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.sla-login-modal-content > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 24px;
}

.sla-login-modal-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 48px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sla-login-modal-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.sla-login-modal-register {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.sla-login-modal-register a {
    color: #60a5fa;
    text-decoration: none;
}

.sla-login-modal-register a:hover {
    text-decoration: underline;
}


/* ===== SIGNUP SLIDE (niet-ingelogde gebruikers) ===== */
.sla-signup-slide.sla-continue-slide .sla-continue-content {
    justify-content: center;
    align-items: center;
    padding: 80px 24px 120px;
}

.sla-signup-content {
    max-width: 280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sla-signup-slide .sla-continue-welcome {
    margin-bottom: 28px;
    text-align: center;
    width: 100%;
}

.sla-signup-slide .sla-continue-greeting {
    font-size: clamp(32px, 8vw, 42px);
}

.sla-signup-slide .sla-continue-welcome-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.sla-signup-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    width: 100%;
}

.sla-signup-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.sla-signup-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.sla-signup-feature-icon svg {
    width: 20px;
    height: 20px;
}

.sla-signup-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.sla-signup-feature-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.sla-signup-feature-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.sla-continue-button.sla-signup-button {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    display: inline-flex;
}

.sla-signup-button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.sla-signup-login {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.sla-signup-login a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
}

.sla-signup-login a:hover {
    text-decoration: underline;
}

/* ===== HERO CAROUSEL (voor niet-ingelogde gebruikers) ===== */
.sla-visitor-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Progress dots - bovenaan */
.sla-visitor-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.sla-visitor-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.sla-visitor-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.sla-visitor-dot.viewed {
    background: rgba(255, 255, 255, 0.6);
}

/* Slides wrapper */
.sla-visitor-slides-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.sla-visitor-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.sla-visitor-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sla-visitor-slide.prev {
    transform: translateX(-30px);
}

/* Background */
.sla-visitor-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sla-visitor-slide.active .sla-visitor-slide-bg {
    animation: visitorKenBurns 10s ease-out forwards;
}

@keyframes visitorKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.sla-visitor-slide-bg--gradient {
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(37, 99, 235, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
}

.sla-visitor-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

/* Content */
.sla-visitor-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
    max-width: 600px;
}

.sla-visitor-title {
    font-size: clamp(28px, 7vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.sla-visitor-title em {
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 4px;
}

.sla-visitor-subtitle {
    font-size: clamp(14px, 3.5vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 32px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.sla-visitor-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sla-visitor-cta:hover {
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.sla-visitor-cta svg {
    transition: transform 0.2s ease;
}

.sla-visitor-cta:hover svg {
    transform: translateX(4px);
}

/* Navigation arrows */
.sla-visitor-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.2s ease;
    opacity: 0.7;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.sla-visitor-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.sla-visitor-nav svg {
    width: 20px;
    height: 20px;
}

.sla-visitor-nav--prev {
    left: 16px;
}

.sla-visitor-nav--next {
    right: 16px;
}

.sla-visitor-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Login link */
.sla-visitor-login {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.sla-visitor-login a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
}

.sla-visitor-login a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .sla-visitor-dots {
        bottom: 90px;
    }
    
    .sla-visitor-slide-content {
        padding: 0 20px;
    }
    
    .sla-visitor-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    
    .sla-visitor-cta {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .sla-visitor-nav {
        width: 40px;
        height: 40px;
        opacity: 1;
        z-index: 20;
    }
    
    .sla-visitor-nav--prev {
        left: 8px;
    }
    
    .sla-visitor-nav--next {
        right: 8px;
    }
    
    .sla-visitor-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===== NEWS MODAL - Fullscreen scrollable ===== */
.sla-news-modal {
    position: fixed;
    top: 5vh;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sla-news-modal.active {
    opacity: 1;
    visibility: visible;
}

.sla-news-modal-backdrop {
    position: fixed;
    top: 5vh;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.sla-news-modal-container {
    position: relative;
    width: 100%;
    height: 95vh;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
    background: #12122a;
}

.sla-news-modal.active .sla-news-modal-container {
    transform: translateY(0);
}

.sla-news-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sla-news-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sla-news-modal-close svg {
    width: 20px;
    height: 20px;
}

.sla-news-modal-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body.sla-news-modal-open {
    overflow: hidden;
}

/* Loading state */
.sla-news-modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.sla-news-modal-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 24px;
}

/* Hero section */
.sla-news-modal-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 24px 20px;
    padding-top: 80px;
    overflow: hidden;
}

.sla-news-modal-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--hero-bg) center / cover no-repeat;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
}

.sla-news-modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(18, 18, 42, 1) 0%,
        rgba(18, 18, 42, 0.7) 30%,
        rgba(18, 18, 42, 0.3) 70%,
        rgba(18, 18, 42, 0.1) 100%
    );
    z-index: 1;
}

.sla-news-modal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.sla-news-modal-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.sla-news-modal-meta svg {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 4px;
}

.sla-news-modal-meta-dot {
    color: rgba(255, 255, 255, 0.3);
}

.sla-news-modal-reading {
    display: inline-flex;
    align-items: center;
}

.sla-news-modal-title {
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
}

.sla-news-modal-credit {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 2;
}

/* Slides section */
.sla-news-modal-slides {
    background: #12122a;
    padding: 16px 24px 8px;
}

.sla-news-modal-slides > div {
    max-width: 720px;
    margin: 0 auto;
}

.sla-news-modal-slide {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sla-news-modal-slide:last-child {
    border-bottom: none;
}

.sla-news-modal-slide-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sla-news-modal-slide p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    padding-top: 4px;
}

/* Content section */
.sla-news-modal-content {
    background: #12122a;
    padding: 16px 24px 32px;
    color: rgba(255, 255, 255, 0.9);
}

.sla-news-modal-content > * {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sla-news-modal-content > *:first-child {
    margin-top: 0;
}

.sla-news-modal-content p {
    font-size: 17px;
    line-height: 1.75;
    margin-top: 0;
    margin-bottom: 1.5em;
}

.sla-news-modal-content h2,
.sla-news-modal-content h3 {
    color: white;
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.sla-news-modal-content a {
    color: #60a5fa;
}

.sla-news-modal-content ul,
.sla-news-modal-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.sla-news-modal-content li {
    margin-bottom: 0.5em;
}

.sla-news-modal-content blockquote {
    border-left: 3px solid #3b82f6;
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer / Related course */
.sla-news-modal-footer {
    background: #12122a;
    padding: 0 24px 32px;
}

.sla-news-modal-footer > * {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Share buttons */
.sla-news-modal-share {
    background: #12122a;
    padding: 32px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sla-news-modal-share-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sla-news-modal-share-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sla-news-modal-share-btns {
    display: flex;
    gap: 8px;
}

.sla-news-modal-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sla-news-modal-share-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.sla-news-modal-share-btn svg {
    width: 20px;
    height: 20px;
}

/* Back to discover button */
.sla-news-modal-back {
    background: #12122a;
    padding: 0 24px 64px;
    text-align: center;
}

.sla-news-modal-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #2563eb 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: sla-news-modal-gradient 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.sla-news-modal-back-btn:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.sla-news-modal-back-btn svg {
    width: 18px;
    height: 18px;
}

.sla-news-modal-back-btn svg polygon {
    fill: currentColor;
}

.sla-news-modal-back-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: sla-news-modal-shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sla-news-modal-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes sla-news-modal-shine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.sla-news-modal-course {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    text-decoration: none;
    color: white;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sla-news-modal-course:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.sla-news-modal-course-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.sla-news-modal-course-info {
    flex: 1;
    min-width: 0;
}

.sla-news-modal-course-label {
    display: block;
    font-size: 12px;
    color: #60a5fa;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sla-news-modal-course-title {
    display: block;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sla-news-modal-course svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .sla-news-modal {
        align-items: center;
        padding-top: 2.5vh;
    }
    
    .sla-news-modal-container {
        max-width: 900px;
        height: auto;
        max-height: 90vh;
        margin: auto;
        overflow: hidden;
    }
    
    .sla-news-modal-close {
        top: 20px;
        right: 20px;
    }
    
    .sla-news-modal-hero {
        min-height: 45vh;
        padding: 32px 40px 24px;
        padding-top: 80px;
    }
    
    .sla-news-modal-slides {
        padding: 20px 40px 16px;
    }
    
    .sla-news-modal-content {
        padding: 20px 40px 40px;
    }
    
    .sla-news-modal-footer {
        padding: 0 40px 40px;
    }
    
    .sla-news-modal-share {
        padding: 32px 40px 24px;
    }
    
    .sla-news-modal-back {
        padding: 0 40px 48px;
    }
}

/* Make news stories clickable cursor */
.sla-news-story {
    cursor: pointer;
}

.sla-news-story .sla-news-cta-btn {
    cursor: pointer;
}

/* ===== FACT MODAL - Fullscreen scrollable ===== */
.sla-fact-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sla-fact-modal.active {
    opacity: 1;
    visibility: visible;
}

.sla-fact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.sla-fact-modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: #0f0f1a;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.sla-fact-modal.active .sla-fact-modal-container {
    transform: translateY(0);
}

.sla-fact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.sla-fact-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.sla-fact-modal-close svg {
    width: 20px;
    height: 20px;
}

.sla-fact-modal-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sla-fact-modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.sla-fact-modal-error {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Section */
.sla-fact-modal-hero {
    position: relative;
    padding: 60px 24px 40px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.sla-fact-modal-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--hero-bg) center/cover no-repeat;
    opacity: 0.3;
}

.sla-fact-modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 26, 0.3) 0%, rgba(15, 15, 26, 0.9) 100%);
}

.sla-fact-modal-hero-content {
    position: relative;
    z-index: 1;
}

.sla-fact-modal-label {
    margin-bottom: 16px;
}

.sla-fact-modal-label span {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.sla-fact-modal-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.sla-fact-modal-icon {
    font-size: 18px;
}

/* Main Content */
.sla-fact-modal-main {
    padding: 32px 24px;
}

.sla-fact-modal-quote {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 24px;
    padding: 0;
    border: none;
}

.sla-fact-modal-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.sla-fact-modal-artist {
    color: var(--sla-feed-accent);
    font-weight: 500;
}

.sla-fact-modal-dot {
    opacity: 0.4;
}

.sla-fact-modal-content {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.sla-fact-modal-content p {
    margin: 0 0 16px;
}

.sla-fact-modal-content a {
    color: var(--sla-feed-accent);
    text-decoration: none;
}

.sla-fact-modal-content a:hover {
    text-decoration: underline;
}

/* Source Link */
.sla-fact-modal-source {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--sla-feed-border);
}

.sla-fact-modal-source-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--sla-feed-border);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sla-fact-modal-source-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--sla-feed-border-strong);
}

.sla-fact-modal-source-link svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Share Section */
.sla-fact-modal-share {
    padding: 24px;
    background: rgba(0, 0, 0, 0.2);
}

.sla-fact-modal-share-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sla-fact-modal-share-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sla-fact-modal-share-btns {
    display: flex;
    gap: 8px;
}

.sla-fact-modal-share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sla-fact-modal-share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sla-fact-modal-share-btn svg {
    width: 20px;
    height: 20px;
}

/* Back Button */
.sla-fact-modal-back {
    padding: 0 24px 32px;
    display: flex;
    justify-content: center;
}

.sla-fact-modal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--sla-feed-accent) 0%, #7c3aed 100%);
    border: none;
    border-radius: 100px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sla-fact-modal-back-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.sla-fact-modal-back-btn svg {
    width: 20px;
    height: 20px;
}

/* Body class when modal is open */
body.sla-fact-modal-open {
    overflow: hidden;
}

/* Make fact stories clickable */
.sla-fact-story {
    cursor: pointer;
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .sla-fact-modal {
        align-items: center;
        padding-top: 2.5vh;
    }
    
    .sla-fact-modal-container {
        max-height: 95vh;
        border-radius: 24px;
    }
    
    .sla-fact-modal-hero {
        padding: 80px 40px 48px;
    }
    
    .sla-fact-modal-main {
        padding: 40px;
    }
    
    .sla-fact-modal-quote {
        font-size: 26px;
    }
    
    .sla-fact-modal-share {
        padding: 32px 40px 24px;
    }
    
    .sla-fact-modal-back {
        padding: 0 40px 48px;
    }
}
