/* ================================================================
   KETHANE REELS — TikTok Mode v1.0
   Red Social Cristiana | Full-Screen Snap Scroll Experience
   ================================================================ */

/* PAGE LOCK */
body.reels-tiktok-mode {
    overflow: hidden !important;
    background: #000 !important;
}
body.reels-tiktok-mode .main-header,
body.reels-tiktok-mode .top-bar,
body.reels-tiktok-mode .sg-offcanvas-sidebar,
body.reels-tiktok-mode .col-md-3,
body.reels-tiktok-mode .col-lg-2,
body.reels-tiktok-mode .cc-window,
body.reels-tiktok-mode #kethane-radio-miniplayer,
body.reels-tiktok-mode #kethane-radio-player,
body.reels-tiktok-mode #kethane-player-minimized { display: none !important; }
body.reels-tiktok-mode .sg-offcanvas-mainbar,
body.reels-tiktok-mode .col-md-9,
body.reels-tiktok-mode .col-lg-10 {
    width: 100% !important; max-width: 100% !important;
    flex: 0 0 100% !important; padding: 0 !important;
}

/* SNAP FEED */
#kethane-reels-feed {
    height: 100dvh; overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; background: #000;
}
#kethane-reels-feed::-webkit-scrollbar { display: none; }

/* TOP BAR */
#kethane-reels-topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, transparent 100%);
    pointer-events: none;
}
#kethane-reels-topbar .topbar-btn {
    pointer-events: all; color: #fff; font-size: 1.3rem;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
#kethane-reels-topbar .topbar-btn:hover { background: rgba(255,255,255,0.15); }
#kethane-reels-topbar .topbar-tabs {
    display: flex; gap: 28px; pointer-events: all;
}
#kethane-reels-topbar .topbar-tab {
    color: rgba(255,255,255,0.6); font-weight: 700; font-size: 1rem;
    cursor: pointer; padding: 4px 0;
    border-bottom: 2px solid transparent; transition: all 0.2s;
    text-decoration: none; font-family: 'Inter', sans-serif;
}
#kethane-reels-topbar .topbar-tab.active {
    color: #fff; border-bottom-color: #fff;
}

/* REEL ITEM */
.kethane-reel-item {
    height: 100dvh; scroll-snap-align: start; scroll-snap-stop: always;
    position: relative; display: flex; align-items: center;
    justify-content: center; background: #000; overflow: hidden;
}
.kethane-reel-item video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1; cursor: pointer;
}

/* PAUSE ICON */
.tap-pause-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0);
    z-index: 15; background: rgba(0,0,0,0.55);
    border-radius: 50%; width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2rem; pointer-events: none;
    transition: transform 0.15s, opacity 0.3s; opacity: 0;
}
.tap-pause-icon.show { transform: translate(-50%,-50%) scale(1); opacity: 1; }

/* GRADIENT */
.reel-bottom-gradient {
    position: absolute; bottom: 0; left: 0; right: 0; height: 65%;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 45%, transparent 100%);
    z-index: 2; pointer-events: none;
}

/* ACTION BUTTONS (right side) */
.kethane-reel-actions {
    position: absolute; right: 14px; bottom: 115px; z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.kethane-reel-action-btn {
    display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer;
}
.kethane-reel-action-btn .action-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.35rem; transition: all 0.25s; position: relative;
}
.kethane-reel-action-btn .action-icon:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.kethane-reel-action-btn .action-count {
    color: #fff; font-size: 0.78rem; font-weight: 700;
    font-family: 'Inter',sans-serif; text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    min-width: 24px; text-align: center;
}

/* AMÉN BUTTON */
.btn-amen .action-icon { background: rgba(249,200,58,0.15) !important; border-color: rgba(249,200,58,0.35) !important; }
.btn-amen .action-icon i { color: #f9c83a; font-size: 1.5rem; }
.btn-amen.activo .action-icon {
    background: linear-gradient(135deg,#f9c83a,#f97316) !important;
    border-color: transparent !important;
    box-shadow: 0 0 20px rgba(249,200,58,0.6) !important;
}
.btn-amen.activo .action-icon i { color: #fff; animation: amenPulse 0.4s ease; }
@keyframes amenPulse {
    0% { transform: scale(1); } 40% { transform: scale(1.4); }
    70% { transform: scale(0.9); } 100% { transform: scale(1); }
}

/* FLOATING AMÉN */
.amen-float { position: absolute; pointer-events: none; font-size: 1.4rem; animation: amenFloat 1.8s ease-out forwards; z-index: 999; }
@keyframes amenFloat {
    0%   { opacity: 1; transform: translateY(0) scale(0.8); }
    60%  { opacity: 0.9; transform: translateY(-120px) scale(1.2); }
    100% { opacity: 0; transform: translateY(-200px) scale(0.6); }
}

/* AUTHOR + CAPTION (bottom left) */
.kethane-reel-info {
    position: absolute; bottom: 105px; left: 16px; right: 72px;
    z-index: 10; display: flex; flex-direction: column; gap: 10px;
}
.kethane-reel-author { display: flex; align-items: center; gap: 10px; }
.kethane-reel-author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    border: 2px solid #fff; object-fit: cover; flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.kethane-reel-author-name {
    color: #fff; font-weight: 700; font-size: 0.95rem;
    font-family: 'Inter',sans-serif; text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    display: flex; align-items: center; gap: 6px;
}
.btn-follow-inline {
    background: transparent; border: 1.5px solid #fff; color: #fff;
    border-radius: 6px; padding: 3px 10px; font-size: 0.75rem;
    font-weight: 700; cursor: pointer; transition: all 0.2s;
    white-space: nowrap; font-family: 'Inter',sans-serif;
}
.btn-follow-inline:hover, .btn-follow-inline.siguiendo { background: #fff; color: #000; }
.kethane-reel-caption {
    color: rgba(255,255,255,0.95);
    font-size: 0.92rem;
    font-family: 'Inter',sans-serif;
    line-height: 1.45;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9);
    cursor: pointer;
    margin-bottom: 6px;
    word-break: break-word;
    overflow-wrap: break-word;
    transition: all 0.25s ease;
}
.kethane-reel-caption .caption-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.45;
}
.kethane-reel-caption.expanded .caption-content {
    display: block;
    max-height: 42vh;
    overflow-y: auto;
    background: rgba(12, 12, 18, 0.84);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.kethane-reel-caption .see-more-btn {
    display: inline-block;
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 2px;
}
.kethane-reel-caption.expanded .see-more-btn {
    display: none;
}
.kethane-reel-caption .caption-hashtag { color: #60b4ff; font-weight: 600; }

/* VERSE STICKER */
.kethane-verse-sticker {
    position: absolute; top: 78px; left: 50%; transform: translateX(-50%);
    z-index: 10; background: rgba(0,0,0,0.55); backdrop-filter: blur(12px);
    border: 1px solid rgba(249,200,58,0.4); border-radius: 14px;
    padding: 10px 18px; max-width: 82%; text-align: center; pointer-events: none;
}
.kethane-verse-sticker .verse-text { color: #fff; font-size: 0.82rem; font-style: italic; font-family: 'Inter',sans-serif; line-height: 1.5; }
.kethane-verse-sticker .verse-ref { color: #f9c83a; font-size: 0.72rem; font-weight: 700; margin-top: 4px; display: block; }

/* PROGRESS BAR */
.kethane-reel-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.25); z-index: 20; }
.kethane-reel-progress-bar { height: 100%; background: #fff; width: 0%; transition: width 0.1s linear; }

/* MUTE BTN (TOP LEFT - TIKTOK / INSTAGRAM REELS NATIVE PLACEMENT) */
.kethane-mute-btn {
    position: absolute;
    top: 112px;
    left: 16px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    transition: all 0.2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.kethane-mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(249, 200, 58, 0.6);
    color: #f9c83a;
    transform: scale(1.05);
}
.kethane-mute-btn:active {
    transform: scale(0.92);
}

/* DISC */
.kethane-reel-disc {
    width: 46px; height: 46px; border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.4);
    background: linear-gradient(135deg,#1a1a2e,#16213e);
    display: flex; align-items: center; justify-content: center;
    animation: spinDisc 4s linear infinite; animation-play-state: paused;
}
.kethane-reel-disc.playing { animation-play-state: running; }
.kethane-reel-disc .disc-note { font-size: 1.1rem; color: #f9c83a; }
@keyframes spinDisc { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* COMMENTS PANEL */
.kethane-comments-panel {
    position: fixed; top: 0; right: -100%; width: min(420px,100%); height: 100dvh;
    background: rgba(15,17,22,0.97); backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.08); z-index: 10000;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column;
}
.kethane-comments-panel.open { right: 0; }
.kethane-comments-panel .panel-header {
    padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between;
    color: #fff; font-weight: 700; font-family: 'Inter',sans-serif;
}
.kethane-comments-panel .panel-header .close-panel {
    background: none; border: none; color: #aaa; font-size: 1.3rem;
    cursor: pointer; padding: 4px 8px; border-radius: 50%;
}
.kethane-comments-panel .panel-body { flex: 1; overflow-y: auto; padding: 10px; }
.kethane-comments-panel .panel-footer {
    padding: 12px 14px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; gap: 10px; align-items: center;
}
.kethane-comments-panel .panel-footer input {
    flex: 1; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 24px;
    padding: 10px 16px; color: #fff; font-size: 0.9rem; outline: none;
}
.kethane-comments-panel .panel-footer input::placeholder { color: rgba(255,255,255,0.4); }
.kethane-comments-panel .panel-footer button {
    background: #f9c83a; color: #000; border: none; border-radius: 50%;
    width: 38px; height: 38px; display: flex; align-items: center;
    justify-content: center; cursor: pointer; font-size: 1rem;
}

/* SHARE PANEL */
.kethane-share-panel {
    position: fixed; bottom: -100%; left: 0; right: 0;
    background: rgba(15,17,22,0.98); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px 20px 0 0; z-index: 10000; padding: 20px;
    transition: bottom 0.35s cubic-bezier(0.4,0,0.2,1);
}
.kethane-share-panel.open { bottom: 0; }
.kethane-share-panel .share-title { text-align: center; color: #fff; font-weight: 700; font-family: 'Inter',sans-serif; margin-bottom: 18px; }
.kethane-share-panel .share-options { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 18px; }
.kethane-share-panel .share-option { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; }
.kethane-share-panel .share-option .share-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: transform 0.2s; }
.kethane-share-panel .share-option:hover .share-icon { transform: scale(1.1); }
.kethane-share-panel .share-option .share-label { color: rgba(255,255,255,0.8); font-size: 0.72rem; text-align: center; font-family: 'Inter',sans-serif; }
.kethane-share-panel .share-link-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.kethane-share-panel .share-link-box span { color: rgba(255,255,255,0.6); font-size: 0.82rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: monospace; }
.kethane-share-panel .share-link-box button { background: #f9c83a; color: #000; border: none; border-radius: 8px; padding: 6px 14px; font-weight: 700; font-size: 0.8rem; cursor: pointer; }

/* HIDE GENERAL SITE FOOTER ON REELS */
body.reels-tiktok-mode .footer-bottom-bar,
body.reels-tiktok-mode #kethaneMobileBottomBar,
body.reels-tiktok-mode footer,
body.reels-tiktok-mode .footer,
body.reels-tiktok-mode #footer {
    display: none !important;
}

/* BOTTOM NAV */
#kethane-bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: auto !important;
    min-height: 58px !important;
    background: rgba(10, 10, 14, 0.95) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    z-index: 9998 !important;
    padding-top: 5px !important;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 12px)) !important;
    box-sizing: border-box !important;
}
.kethane-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    cursor: pointer !important;
    padding: 3px 8px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.65rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    transition: all 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
}
.kethane-nav-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.kethane-nav-item.active { color: #fff !important; }
.kethane-nav-item i {
    font-size: 1.25rem !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
}
.kethane-nav-item span {
    display: block !important;
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
    color: inherit !important;
    white-space: nowrap !important;
}
.kethane-nav-item.create-btn {
    background: linear-gradient(135deg, #f9c83a, #f97316) !important;
    color: #000 !important;
    border-radius: 12px !important;
    padding: 5px 15px !important;
    box-shadow: 0 4px 15px rgba(249, 200, 58, 0.35) !important;
}
.kethane-nav-item.create-btn span,
.kethane-nav-item.create-btn i {
    color: #000 !important;
    font-weight: 700 !important;
}

/* OVERLAY */
.kethane-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.kethane-overlay.active { opacity: 1; pointer-events: all; }

/* DESKTOP */
@media (min-width: 768px) {
    #kethane-reels-feed { align-items: center; }
    .kethane-reel-item { width: 400px; border-radius: 14px; margin: 0 auto; overflow: hidden; }
    #kethane-bottom-nav { display: none !important; }
    #kethane-reels-topbar { max-width: 520px; left: 50%; transform: translateX(-50%); right: auto; width: 520px; }
}

/* === DOUBLE TAP BURST === */
@keyframes amenBurst {
    0%   { transform: translate(-50%,-50%) scale(0); opacity: 1; }
    50%  { transform: translate(-50%,-50%) scale(1.4); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
}

/* === END CARD === */
.reels-end-card {
    height: 100dvh; scroll-snap-align: start; flex-shrink: 0;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; background: #000; gap: 18px;
    padding: 20px; text-align: center;
}
.reels-end-card .end-cross { font-size: 3rem; }
.reels-end-card h3 { color: #fff; font-family: 'Inter',sans-serif; font-size: 1.3rem; font-weight: 800; margin: 0; }
.reels-end-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; font-family: 'Inter',sans-serif; max-width: 280px; line-height: 1.6; margin: 0; }
.reels-end-card a { background: linear-gradient(135deg,#f9c83a,#f97316); color: #000; border-radius: 12px; padding: 14px 28px; font-weight: 800; font-size: 0.95rem; text-decoration: none; font-family: 'Inter',sans-serif; }


/* === UNMUTE FLOATING BANNER === */
.kethane-unmute-banner {
    position: fixed;
    top: 104px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(249, 200, 58, 0.5);
    border-radius: 30px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f9c83a;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.7), 0 0 16px rgba(249,200,58,0.3);
    cursor: pointer;
    animation: unmuteBannerPulse 2.2s ease-in-out infinite;
    transition: opacity 0.35s ease, transform 0.35s ease;
    user-select: none;
}
.kethane-unmute-banner:hover {
    background: rgba(249, 200, 58, 0.15);
    border-color: #f9c83a;
}
.kethane-unmute-banner.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
    pointer-events: none;
}
@keyframes unmuteBannerPulse {
    0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 8px 25px rgba(0,0,0,0.7), 0 0 12px rgba(249,200,58,0.25); }
    50% { transform: translateX(-50%) scale(1.04); box-shadow: 0 8px 25px rgba(0,0,0,0.7), 0 0 24px rgba(249,200,58,0.5); }
}


/* ===================================================
 * 1. CATEGORY / HASHTAG HORIZONTAL SCROLL BAR
 * =================================================== */
.kethane-category-bar {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}
.kethane-category-bar::-webkit-scrollbar {
    display: none;
}
@media (min-width: 768px) {
    .kethane-category-bar {
        max-width: 520px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 520px;
    }
}
.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.category-pill:hover {
    background: rgba(249, 200, 58, 0.2);
    border-color: rgba(249, 200, 58, 0.5);
    color: #fff;
}
.category-pill.active {
    background: linear-gradient(135deg, #f9c83a 0%, #f97316 100%);
    border-color: #f9c83a;
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(249, 200, 58, 0.35);
}

/* ===================================================
 * 2. PRAYER INTERCESSION STICKER
 * =================================================== */
.kethane-prayer-sticker {
    position: absolute;
    bottom: 120px;
    left: 14px;
    right: 80px;
    z-index: 25;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(249, 200, 58, 0.4);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.55), 0 0 16px rgba(249, 200, 58, 0.18);
    animation: prayerStickerGlow 3s infinite alternate;
}
@keyframes prayerStickerGlow {
    from { border-color: rgba(249, 200, 58, 0.35); }
    to   { border-color: rgba(249, 200, 58, 0.7); box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 0 20px rgba(249, 200, 58, 0.3); }
}
.prayer-sticker-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.prayer-dove-icon {
    font-size: 1.4rem;
    animation: gentleDove 2.6s ease-in-out infinite;
}
@keyframes gentleDove {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.08); }
}
.prayer-text-block {
    display: flex;
    flex-direction: column;
}
.prayer-badge-title {
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f9c83a;
}
.prayer-counter-wrap {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.88);
}
.prayer-count-num {
    color: #fff;
    font-weight: 800;
}
.btn-intercede {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-intercede:hover {
    background: rgba(249, 200, 58, 0.25);
    border-color: #f9c83a;
}
.btn-intercede.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: #fff;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}
.floating-prayer-dove {
    position: fixed;
    pointer-events: none;
    z-index: 10005;
    font-size: 1.8rem;
    animation: floatPrayerDove 1.6s ease-out forwards;
}
@keyframes floatPrayerDove {
    0% { transform: translateY(0) scale(0.5) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-70px) scale(1.3) rotate(-10deg); opacity: 0.9; }
    100% { transform: translateY(-140px) scale(1) rotate(10deg); opacity: 0; }
}

/* ===================================================
 * 3. NATIVE 9:16 REEL UPLOAD MODAL
 * =================================================== */
.kethane-upload-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.kethane-upload-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.upload-modal-card {
    background: #0b1120;
    border: 1px solid rgba(249, 200, 58, 0.35);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.85), 0 0 35px rgba(249, 200, 58, 0.15);
    transform: scale(0.94) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.kethane-upload-modal.open .upload-modal-card {
    transform: scale(1) translateY(0);
}
.upload-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.upload-modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}
.upload-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}
.upload-modal-close:hover {
    color: #fff;
}
.upload-modal-body {
    padding: 20px;
    overflow-y: auto;
}
.upload-dropzone {
    border: 2px dashed rgba(249, 200, 58, 0.4);
    border-radius: 16px;
    padding: 36px 16px;
    text-align: center;
    background: rgba(249, 200, 58, 0.03);
    cursor: pointer;
    transition: all 0.25s ease;
}
.upload-dropzone:hover, .upload-dropzone.drag-hover {
    background: rgba(249, 200, 58, 0.08);
    border-color: #f9c83a;
    transform: scale(1.01);
}
.dropzone-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.upload-dropzone h4 {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.upload-dropzone p {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
}
.dropzone-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-dropzone-choose, .btn-dropzone-camera {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-dropzone-camera {
    background: linear-gradient(135deg, rgba(249,200,58,0.2), rgba(249,115,22,0.2));
    border-color: rgba(249,200,58,0.4);
    color: #f9c83a;
}
.btn-dropzone-choose:hover, .btn-dropzone-camera:hover {
    transform: translateY(-2px);
    border-color: #f9c83a;
}
.upload-preview-container {
    position: relative;
    width: 150px;
    height: 240px;
    margin: 0 auto 18px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
#upload-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-change-video {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 20px;
    padding: 4px 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.upload-form-group {
    margin-bottom: 14px;
}
.form-label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
}
.form-control-reel {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 10px 12px;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    resize: none;
    box-sizing: border-box;
}
.form-control-reel:focus {
    outline: none;
    border-color: #f9c83a;
    background: rgba(255,255,255,0.09);
}
.upload-quick-tags {
    margin-bottom: 16px;
}
.quick-tag-label {
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 6px;
}
.quick-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.quick-tag-badge {
    background: rgba(249, 200, 58, 0.1);
    border: 1px solid rgba(249, 200, 58, 0.3);
    color: #f9c83a;
    border-radius: 14px;
    padding: 4px 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.quick-tag-badge:hover {
    background: #f9c83a;
    color: #000;
}
.upload-prayer-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 18px;
}
.prayer-switch-label {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.prayer-switch-label input {
    opacity: 0;
    width: 0;
    height: 0;
}
.prayer-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.2);
    transition: .3s;
    border-radius: 24px;
}
.prayer-switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}
.prayer-switch-label input:checked + .prayer-switch-slider {
    background-color: #f9c83a;
}
.prayer-switch-label input:checked + .prayer-switch-slider:before {
    transform: translateX(20px);
}
.prayer-toggle-text {
    display: flex;
    flex-direction: column;
}
.prayer-toggle-text strong {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    color: #fff;
}
.prayer-toggle-text small {
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}
.upload-progress-bar-wrap {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    margin-bottom: 8px;
}
#upload-progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f9c83a, #f97316);
    transition: width 0.2s ease;
    box-shadow: 0 0 10px rgba(249, 200, 58, 0.5);
}
#upload-progress-text {
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #f9c83a;
    text-align: center;
    margin-bottom: 12px;
}
.upload-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.btn-cancel-upload {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    border-radius: 12px;
    padding: 10px 16px;
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}
.btn-publish-reel {
    background: linear-gradient(135deg, #f9c83a 0%, #f97316 100%);
    border: none;
    color: #000;
    border-radius: 12px;
    padding: 10px 22px;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(249, 200, 58, 0.35);
    transition: all 0.2s;
}
.btn-publish-reel:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 200, 58, 0.5);
}

/* ================================================================
   TIKTOK PRO FEATURES: 2X SPEED, SCRUBBER, QUICK PILLS, SOUNDS, DUETS
   ================================================================ */

/* ---- 2X SPEED INDICATOR OVERLAY ---- */
.reel-speed-indicator {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(249, 200, 58, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f9c83a;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6), 0 0 15px rgba(249, 200, 58, 0.3);
}
.reel-speed-indicator.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
.reel-speed-indicator i {
    font-size: 0.85rem;
    animation: speedPulse 0.8s infinite alternate ease-in-out;
}
@keyframes speedPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; color: #fff; }
}

/* ---- INTERACTIVE SCRUBBER & TOOLTIP ---- */
.kethane-reel-progress.interactive-scrubber {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    z-index: 999;
    padding-bottom: 2px;
}
.interactive-scrubber .kethane-reel-progress-bar {
    height: 3px;
    background: #f9c83a;
    width: 0%;
    transition: height 0.2s ease;
    position: relative;
    border-radius: 2px;
}
.interactive-scrubber:hover .kethane-reel-progress-bar,
.interactive-scrubber.dragging .kethane-reel-progress-bar {
    height: 7px;
    background: linear-gradient(90deg, #f9c83a, #f97316);
}
.scrubber-thumb {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 8px rgba(249, 200, 58, 0.8);
    transition: transform 0.15s ease;
}
.interactive-scrubber:hover .scrubber-thumb,
.interactive-scrubber.dragging .scrubber-thumb {
    transform: translateY(-50%) scale(1);
}
.scrubber-time-tooltip {
    position: absolute;
    bottom: 20px;
    transform: translateX(-50%);
    background: rgba(11, 17, 32, 0.92);
    border: 1px solid rgba(249, 200, 58, 0.5);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.interactive-scrubber:hover .scrubber-time-tooltip,
.interactive-scrubber.dragging .scrubber-time-tooltip {
    opacity: 1;
}

/* ---- SPIRITUAL QUICK REACTION PILLS ---- */
.kethane-quick-reactions-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    overflow-x: auto;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.95);
    scrollbar-width: none;
}
.kethane-quick-reactions-bar::-webkit-scrollbar {
    display: none;
}
.quick-reaction-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 6px 13px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.quick-reaction-pill:hover {
    background: rgba(249, 200, 58, 0.15);
    border-color: rgba(249, 200, 58, 0.5);
    color: #f9c83a;
    transform: translateY(-2px);
}
.quick-reaction-pill:active {
    transform: scale(0.95);
}

/* ---- DUET BADGE & ACTION BUTTONS ---- */
.kethane-duet-badge {
    position: absolute;
    top: 98px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 77, 255, 0.28);
    border: 1px solid rgba(179, 136, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 20px;
    color: #d1c4e9;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
}
.btn-whatsapp-reel .action-icon:hover {
    transform: scale(1.1);
}
.btn-duet-reel .action-icon:hover {
    transform: scale(1.1);
}
.kethane-reel-audio-trigger {
    cursor: pointer;
    transition: opacity 0.2s;
}
.kethane-reel-audio-trigger:hover {
    opacity: 0.85;
}

/* ---- AUDIO / SOUND DRAWER MODAL ---- */
.kethane-audio-modal {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: #0b1120;
    border: 1px solid rgba(249, 200, 58, 0.3);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    z-index: 10005;
    transition: bottom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -15px 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}
.kethane-audio-modal.open {
    bottom: 0;
}
.audio-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.audio-modal-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.audio-disc-preview-wrap {
    margin-bottom: 16px;
}
.audio-big-disc {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, #2a2a2a 20%, #111 60%, #000 100%);
    border: 4px solid rgba(249, 200, 58, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px rgba(249, 200, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}
.audio-big-disc.playing {
    animation: rotateVinyl 4s infinite linear;
}
@keyframes rotateVinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.disc-center {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f9c83a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.85rem;
}
.audio-details-info h4 {
    margin: 0 0 4px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
}
.audio-details-info p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}
.btn-audio-preview {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 24px;
    padding: 8px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.2s;
}
.btn-audio-preview:hover {
    background: rgba(255, 255, 255, 0.15);
}
.btn-use-this-audio {
    width: 100%;
    background: linear-gradient(135deg, #f9c83a 0%, #f97316 100%);
    border: none;
    color: #000;
    border-radius: 14px;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 200, 58, 0.35);
    transition: transform 0.2s;
}
.btn-use-this-audio:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 200, 58, 0.5);
}
.audio-guidance-note {
    margin-top: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ---- DUET (DÚO) RECORDING MODAL ---- */
.kethane-duet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999 !important;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.kethane-duet-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.duet-modal-header {
    height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10;
}
.duet-btn-close, .duet-btn-switch-cam {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s;
}
.duet-btn-close:hover, .duet-btn-switch-cam:hover {
    background: rgba(255,255,255,0.1);
}
.duet-header-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.kethane-duet-split {
    flex: 1;
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    background: #000;
    overflow: hidden;
}
.duet-pane {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.duet-pane-left {
    border-right: 1px solid rgba(255,255,255,0.15);
}
.duet-pane video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.duet-pane-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 8px;
}
.duet-countdown-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 5rem;
    font-weight: 900;
    color: #f9c83a;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 30px rgba(0,0,0,0.9);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.duet-countdown-overlay.active {
    transform: translate(-50%, -50%) scale(1);
}
.duet-modal-footer {
    padding: 16px 20px 24px;
    background: rgba(11, 17, 32, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.duet-timer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}
#duet-timer-txt {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}
.duet-timer-progress {
    width: 100%;
    max-width: 320px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}
#duet-timer-progress-fill {
    height: 100%;
    width: 0%;
    background: #b388ff;
    transition: width 0.1s linear;
}
.duet-buttons-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 340px;
    margin: 0 auto;
}
.duet-alt-upload {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}
.duet-alt-upload:hover {
    background: rgba(255,255,255,0.15);
}
.duet-record-trigger {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.duet-record-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ef4444;
    transition: all 0.2s;
}
.duet-record-trigger.recording .duet-record-circle {
    border-radius: 12px;
    width: 28px;
    height: 28px;
    background: #ef4444;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.8);
}
.duet-caption-field {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    margin-bottom: 14px;
    outline: none;
}
.duet-caption-field:focus {
    border-color: #b388ff;
}
.duet-review-actions {
    display: flex;
    gap: 12px;
}
.btn-duet-retry {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}
.btn-duet-publish {
    flex: 2;
    background: linear-gradient(135deg, #7c4dff 0%, #b388ff 100%);
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(124, 77, 255, 0.4);
}
.duet-upload-progress {
    margin-top: 14px;
    width: 100%;
}
.duet-progress-bar-fill {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #7c4dff, #b388ff);
    width: 0%;
    transition: width 0.2s;
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.6);
}
#duet-progress-text {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #b388ff;
    margin-top: 6px;
    font-weight: 600;
}


/* ====== PHASE 4: LIVE VIDEO FILTERS ====== */

/* Filter pills bar */
.reel-filter-selector-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 4px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.reel-filter-selector-bar::-webkit-scrollbar { display: none; }
.reel-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    user-select: none;
}
.reel-filter-pill.active {
    background: linear-gradient(135deg, #f9c83a, #e67e22);
    color: #000;
    border-color: #f9c83a;
    font-weight: 800;
    box-shadow: 0 0 14px rgba(249, 200, 58, 0.45);
}

/* ====== CAMERA HANDS-FREE TIMER ====== */
.reel-timer-selector-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.reel-timer-btn {
    padding: 6px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.reel-timer-btn.active {
    background: #ff5252;
    border-color: #ff5252;
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 82, 82, 0.5);
}
.reel-countdown-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 50;
    border-radius: 16px;
}
.reel-countdown-overlay.active { display: flex; }
.reel-countdown-number {
    font-size: 5.5rem;
    font-weight: 900;
    color: #f9c83a;
    text-shadow: 0 0 35px rgba(249, 200, 58, 0.8), 0 4px 15px rgba(0,0,0,0.8);
    animation: countdownPulse 0.9s ease infinite;
}
@keyframes countdownPulse {
    0% { transform: scale(0.6); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* ====== TEXT / BIBLE VERSE OVERLAY TOOL ====== */
.upload-preview-container {
    position: relative;
}
.reel-verse-overlay {
    position: absolute;
    bottom: 22%;
    left: 8%;
    right: 8%;
    padding: 10px 16px;
    border-radius: 12px;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    pointer-events: none;
    z-index: 15;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-word;
}
.reel-verse-overlay.style-celestial {
    background: rgba(10, 15, 30, 0.75);
    border: 1.5px solid rgba(249, 200, 58, 0.8);
    color: #f9c83a;
    text-shadow: 0 0 12px rgba(249, 200, 58, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(249, 200, 58, 0.2);
}
.reel-verse-overlay.style-dark {
    background: rgba(0, 0, 0, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}
.reel-verse-overlay.style-neon {
    background: rgba(13, 27, 42, 0.85);
    border: 1.5px solid #00f2fe;
    color: #fff;
    text-shadow: 0 0 10px #00f2fe, 0 0 20px #4facfe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.btn-add-verse-tool {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-add-verse-tool:hover {
    background: #f9c83a;
    color: #000;
    border-color: #f9c83a;
}

/* Modal / Drawer for Verse editing */
.verse-picker-panel {
    display: none;
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}
.verse-picker-panel.open { display: block; }
.quick-verses-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}
.quick-verse-chip {
    padding: 4px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.15s;
}
.quick-verse-chip:hover {
    background: rgba(249, 200, 58, 0.15);
    border-color: #f9c83a;
    color: #f9c83a;
}
.verse-style-selectors {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.verse-style-btn {
    flex: 1;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    color: #e2e8f0;
}
.verse-style-btn.active {
    border-color: #f9c83a;
    color: #f9c83a;
    background: rgba(249, 200, 58, 0.1);
}

/* ====== AUDIO DRAWER TABS & SOUND LIBRARY ====== */
.audio-drawer-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
}
.audio-drawer-tab {
    flex: 1;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #94a3b8;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.audio-drawer-tab.active {
    color: #f9c83a;
    border-bottom-color: #f9c83a;
}
.audio-track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 8px;
    transition: all 0.2s;
}
.audio-track-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(249, 200, 58, 0.3);
}
.track-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9c83a, #d35400);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.95rem;
    flex-shrink: 0;
    cursor: pointer;
}
.track-icon-wrap.playing {
    animation: discRotate 3s linear infinite;
}
.track-info {
    flex: 1;
    min-width: 0;
}
.track-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.track-artist {
    font-size: 0.72rem;
    color: #94a3b8;
    margin: 2px 0 0 0;
}
.track-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-track-fav {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1rem;
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
}
.btn-track-fav.saved {
    color: #f9c83a;
}
.btn-track-use {
    background: linear-gradient(135deg, #f9c83a, #e67e22);
    border: none;
    color: #000;
    font-size: 0.74rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s;
}
.btn-track-use:active { transform: scale(0.95); }

/* ================================================================
   TIKTOK-ELEVATED FAITH SUITE: KETHANE REELS SUPERCHARGED
   ================================================================ */

/* 1. Author Avatar in Action Rail with Follow Plus Button */
.action-avatar-btn {
  position: relative;
  margin-bottom: 8px;
}

.author-avatar-rail-wrap {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #00f2ea, #ff007a, #f9c83a);
  box-shadow: 0 0 15px rgba(0, 242, 234, 0.4);
}

.kethane-rail-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #111;
}

.btn-rail-follow-plus {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff007a, #7928ca);
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 0, 122, 0.5);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-rail-follow-plus:active {
  transform: translateX(-50%) scale(0.85);
}

.btn-rail-follow-plus.siguiendo {
  background: #10b981;
  border-color: #fff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
}

/* 2. Signature TikTok Elevated: Spinning Holographic Vinyl Record */
.vinyl-action-wrap {
  margin-top: 6px;
}

.kethane-spinning-vinyl {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, #2a2d3d 30%, #0d111a 70%, #000 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 242, 234, 0.3), inset 0 0 8px rgba(0, 0, 0, 0.8);
  animation: spinVinylRecord 4s linear infinite;
  animation-play-state: running;
  cursor: pointer;
}

.kethane-spinning-vinyl::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.vinyl-center-art {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #f9c83a;
  z-index: 2;
}

.vinyl-notes {
  position: absolute;
  top: -10px;
  right: -6px;
  pointer-events: none;
}

.v-note {
  position: absolute;
  font-size: 0.85rem;
  color: #00f2ea;
  opacity: 0;
  animation: floatVinylNotes 2.4s ease-out infinite;
}

.v-note.n2 {
  color: #f9c83a;
  animation-delay: 1.2s;
  right: 8px;
}

@keyframes spinVinylRecord {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatVinylNotes {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  30% { opacity: 0.9; }
  100% { transform: translate(-20px, -45px) scale(1.1); opacity: 0; }
}

/* 3. Scripture Anchor Pill (Kethane Exclusive) */
.kethane-scripture-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 200, 58, 0.14);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(249, 200, 58, 0.4);
  border-radius: 50px;
  padding: 4px 12px 4px 6px;
  max-width: 90%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(249, 200, 58, 0.15);
  transition: all 0.25s ease;
  user-select: none;
}

.kethane-scripture-pill:hover,
.kethane-scripture-pill:active {
  background: rgba(249, 200, 58, 0.25);
  transform: translateY(-1px);
  border-color: rgba(249, 200, 58, 0.6);
}

.scripture-badge {
  background: linear-gradient(135deg, #f9c83a, #ff9800);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.scripture-preview-text {
  font-size: 0.76rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scripture-arrow {
  font-size: 0.65rem;
  color: rgba(249, 200, 58, 0.8);
  flex-shrink: 0;
}

/* 4. Scripture Full-Sheet Modal */
.kethane-scripture-modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(14, 19, 32, 0.96);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-top: 1px solid rgba(249, 200, 58, 0.35);
  border-radius: 26px 26px 0 0;
  z-index: 10001;
  padding: 20px 22px 30px;
  transition: bottom 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(249, 200, 58, 0.15);
}

.kethane-scripture-modal.open {
  bottom: 0;
}

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

.scripture-modal-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  align-items: center;
}

.scripture-verse-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(249, 200, 58, 0.25);
  border-radius: 18px;
  padding: 24px 20px 18px;
  margin: 18px 0 14px;
}

.verse-quote-mark {
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 2.8rem;
  line-height: 1;
  color: #f9c83a;
  opacity: 0.6;
  font-family: Georgia, serif;
}

.scripture-full-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
  font-style: italic;
  font-family: 'Outfit', sans-serif;
}

.scripture-version-tag {
  margin-top: 10px;
  font-size: 0.74rem;
  color: #f9c83a;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.5px;
}

.scripture-author-ref {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.scripture-author-ref strong {
  color: #00f2ea;
}

.scripture-actions {
  display: flex;
  gap: 10px;
}

.btn-scripture-action {
  flex: 1;
  border-radius: 50px;
  padding: 12px 16px;
  border: none;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-verse {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-copy-verse:active {
  background: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-verse {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-verse:active {
  transform: scale(0.97);
}

/* 5. Audio Ticker Wave Visualizer */
.audio-ticker-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
  margin-right: 4px;
}

.audio-ticker-wave span {
  width: 2.5px;
  background: #00f2ea;
  border-radius: 2px;
  animation: audioTickerBar 0.8s ease-in-out infinite alternate;
}

.audio-ticker-wave span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.audio-ticker-wave span:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.audio-ticker-wave span:nth-child(3) { height: 8px; animation-delay: 0.2s; }

@keyframes audioTickerBar {
  0% { height: 3px; }
  100% { height: 12px; }
}

.audio-marquee-container {
  overflow: hidden;
  white-space: nowrap;
  max-width: 170px;
}

.audio-marquee-text {
  display: inline-block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Inter', sans-serif;
}



/* ================================================================
   TIKTOK-STYLE DUET (DÚO) & STITCH (PEGAR) ENGINE v2.0
   ================================================================ */

/* 1. INTERACTIVE ATTRIBUTION PILL (FLOATING ON REELS) */
.kethane-interaction-pill {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 10px;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 24px;
    background: rgba(11, 17, 32, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: calc(100% - 80px);
}
.kethane-interaction-pill:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}
.kethane-interaction-pill.is-duet {
    border-color: rgba(179, 136, 255, 0.4);
    background: linear-gradient(135deg, rgba(179, 136, 255, 0.18) 0%, rgba(15, 23, 42, 0.8) 100%);
}
.kethane-interaction-pill.is-stitch {
    border-color: rgba(0, 229, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.18) 0%, rgba(15, 23, 42, 0.8) 100%);
}
.interaction-pill-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.is-duet .interaction-pill-icon {
    background: rgba(179, 136, 255, 0.3);
    color: #b388ff;
}
.is-stitch .interaction-pill-icon {
    background: rgba(0, 229, 255, 0.3);
    color: #00e5ff;
}
.interaction-pill-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}
.interaction-pill-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.interaction-pill-type {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.interaction-pill-author {
    color: #fff;
    font-weight: 700;
}
.interaction-pill-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    margin-left: 2px;
}

/* 2. DUET TOP OPTIONS & LAYOUT SELECTOR */
.duet-top-options {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 10;
}
.duet-layout-selector {
    display: flex;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 3px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-duet-layout {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 7px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}
.btn-duet-layout.active {
    background: #b388ff;
    color: #0b1120;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(179, 136, 255, 0.4);
}
.duet-volume-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #cbd5e1;
}
.duet-volume-row input[type="range"] {
    width: 80px;
    accent-color: #b388ff;
    cursor: pointer;
}
#duet-vol-val {
    font-weight: 700;
    color: #b388ff;
    min-width: 28px;
}

/* Duet Vertical Stacking (Top / Bottom) */
.kethane-duet-split.split-vertical {
    flex-direction: column !important;
}
.kethane-duet-split.split-vertical .duet-pane-left {
    border-right: none !important;
    border-bottom: 2px solid rgba(179, 136, 255, 0.3) !important;
}

/* 3. STITCH (PEGAR) MODAL FULLSCREEN */
.kethane-stitch-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999 !important;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.kethane-stitch-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.stitch-modal-header {
    height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10;
}
.stitch-btn-close, .stitch-btn-switch-cam {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s;
}
.stitch-btn-close:hover, .stitch-btn-switch-cam:hover {
    background: rgba(255, 255, 255, 0.1);
}
.stitch-header-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Stitch Step 1: Video Preview & Trim Scrubber */
.stitch-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    background: #000;
    overflow: hidden;
}
.stitch-video-preview-wrap {
    flex: 1;
    position: relative;
    background: #0b1120;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.stitch-video-preview-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stitch-trim-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 229, 255, 0.25);
    border: 1px solid rgba(0, 229, 255, 0.5);
    color: #00e5ff;
    padding: 4px 10px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.stitch-trim-controls {
    padding: 16px 20px 24px;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.stitch-trim-info {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #cbd5e1;
}
.stitch-trim-info strong {
    color: #00e5ff;
}
.stitch-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stitch-slider-wrap label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stitch-slider-wrap input[type="range"] {
    width: 100%;
    accent-color: #00e5ff;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    cursor: pointer;
}
.stitch-step1-buttons {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}
.btn-stitch-preview {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-stitch-preview:hover {
    background: rgba(255, 255, 255, 0.18);
}
.btn-stitch-next {
    flex: 1.4;
    background: linear-gradient(135deg, #00e5ff 0%, #00b0ff 100%);
    border: none;
    color: #0b1120;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 229, 255, 0.35);
    transition: all 0.2s ease;
}
.btn-stitch-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 229, 255, 0.5);
}

/* Stitch Step 2: Response Recorder */
.stitch-recorder-wrap {
    flex: 1;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.stitch-recorder-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stitch-countdown-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 5rem;
    font-weight: 900;
    color: #00e5ff;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 30px rgba(0,0,0,0.9);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.stitch-countdown-overlay.active {
    transform: translate(-50%, -50%) scale(1);
}
.stitch-modal-footer {
    padding: 16px 20px 24px;
    background: rgba(11, 17, 32, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stitch-timer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
#stitch-timer-txt {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.5px;
}
.stitch-timer-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}
#stitch-timer-progress-fill {
    width: 0%;
    height: 100%;
    background: #00e5ff;
    transition: width 0.1s linear;
}
.stitch-buttons-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 8px;
}
.btn-stitch-back {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.btn-stitch-back:hover {
    background: rgba(255, 255, 255, 0.2);
}
.stitch-record-trigger {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: transparent;
    padding: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.stitch-record-trigger:hover {
    transform: scale(1.06);
}
.stitch-record-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #00e5ff;
    transition: all 0.2s ease;
}
.stitch-record-trigger.recording .stitch-record-circle {
    background: #ef4444;
    border-radius: 8px;
    transform: scale(0.65);
}
.stitch-alt-upload {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #00e5ff;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.stitch-alt-upload:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: #00e5ff;
}

/* Stitch Review Controls */
.stitch-caption-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    margin-bottom: 12px;
    outline: none;
}
.stitch-caption-field:focus {
    border-color: #00e5ff;
}
.stitch-review-actions {
    display: flex;
    gap: 10px;
}
.btn-stitch-retry {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-stitch-retry:hover {
    background: rgba(255, 255, 255, 0.18);
}
.btn-stitch-publish {
    flex: 1.5;
    background: linear-gradient(135deg, #00e5ff 0%, #00b0ff 100%);
    border: none;
    color: #0b1120;
    padding: 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.4);
    transition: all 0.2s ease;
}
.btn-stitch-publish:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 229, 255, 0.6);
}
.stitch-upload-progress {
    margin-top: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stitch-progress-bar-fill {
    height: 4px;
    background: #00e5ff;
    width: 0%;
    border-radius: 2px;
    transition: width 0.2s ease;
}
#stitch-progress-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    color: #94a3b8;
    text-align: center;
}

.kethane-duet-modal, .kethane-stitch-modal {
}
.kethane-duet-modal.open ~ .pwa_install_banner,
.kethane-stitch-modal.open ~ .pwa_install_banner,
body:has(.kethane-stitch-modal.open) .pwa_install_banner,
body:has(.kethane-duet-modal.open) .pwa_install_banner {
}

.pwa_install_banner { display: none !important; }

/* ================================================================
   CLEAR DISPLAY (MODO PANTALLA LIMPIA) STYLES
   ================================================================ */
body.kethane-clear-display-active .kethane-reel-actions,
body.kethane-clear-display-active .kethane-reel-info,
body.kethane-clear-display-active #kethane-reels-topbar,
body.kethane-clear-display-active #kethane-category-bar,
body.kethane-clear-display-active .reel-bottom-gradient,
body.kethane-clear-display-active .kethane-verse-sticker,
body.kethane-clear-display-active .kethane-prayer-sticker,
body.kethane-clear-display-active .kethane-mute-btn,
body.kethane-clear-display-active .interactive-scrubber,
body.kethane-clear-display-active .kethane-interaction-pill,
body.kethane-clear-display-active .kethane-mobile-nav,
body.kethane-clear-display-active #kethane-bottom-nav,
body.kethane-clear-display-active #kethane-radio-player,
body.kethane-clear-display-active .kethane-unmute-banner {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(18px) scale(0.96) !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.kethane-clear-display-active .kethane-clear-display-pill {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

.kethane-clear-display-pill {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.92);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 16px rgba(249, 200, 58, 0.25);
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.92);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.clear-display-pill-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9c83a, #f97316);
    color: #0b1120;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    box-shadow: 0 2px 8px rgba(249, 200, 58, 0.4);
}
.clear-display-pill-text {
    color: #f8fafc;
    font-weight: 700;
}
.clear-display-pill-restore {
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.76rem;
}
.kethane-clear-display-pill:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(249, 200, 58, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.kethane-clear-toast {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f9c83a;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    z-index: 1000000;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}
.kethane-clear-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* ================================================================
   TIKTOK-STYLE FLOATING COMMENT STICKER
   ================================================================ */
.kethane-comment-reply-sticker {
    position: absolute;
    top: 90px;
    left: 16px;
    max-width: 290px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 12px 14px;
    z-index: 18;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 1px 1px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.25s ease;
    animation: stickerEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes stickerEntrance {
    0% { opacity: 0; transform: translateY(-12px) scale(0.92); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.kethane-comment-reply-sticker:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 45, 85, 0.55);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75), 0 0 16px rgba(255, 45, 85, 0.3);
}
.reply-sticker-top {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
}
.reply-sticker-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 45, 85, 0.6);
    flex-shrink: 0;
}
.reply-sticker-avatar-ph {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.reply-sticker-user-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.reply-sticker-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #ff2d55;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.reply-sticker-user {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.reply-sticker-icon {
    color: #ff2d55;
    font-size: 0.95rem;
    opacity: 0.9;
}
.reply-sticker-body {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #f1f5f9;
    font-weight: 500;
    margin-bottom: 6px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reply-sticker-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 600;
}
.reply-sticker-footer:hover {
    color: #ff2d55;
}

/* Attribution Pill variant for Reply */
.kethane-interaction-pill.is-reply {
    background: rgba(255, 45, 85, 0.18);
    border-color: rgba(255, 45, 85, 0.45);
}
.kethane-interaction-pill.is-reply .interaction-pill-icon {
    background: #ff2d55;
    color: #ffffff;
}
.kethane-interaction-pill.is-reply .interaction-pill-type {
    color: #ff2d55;
}


/* ================================================================
   VIDEO REPLY RECORDING & UPLOAD MODAL
   ================================================================ */
.kethane-video-reply-modal {
    position: fixed;
    inset: 0;
    z-index: 2500000 !important;
    background: rgba(8, 12, 22, 0.96);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.97);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.kethane-video-reply-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.reply-modal-header {
    height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.6);
}
.reply-btn-close, .reply-btn-switch-cam {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.reply-btn-close:hover, .reply-btn-switch-cam:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
.reply-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.reply-header-title strong {
    color: #ff2d55;
}

.reply-viewfinder-wrap {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#reply-camera-stream, #reply-recorded-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Sticker inside Recorder Viewfinder */
.reply-modal-floating-sticker {
    position: absolute;
    left: 20px;
    right: 20px;
    max-width: 340px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255, 45, 85, 0.5);
    border-radius: 16px;
    padding: 12px 16px;
    z-index: 25;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75);
    transition: top 0.3s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reply-modal-floating-sticker.pos-top {
    top: 24px;
    bottom: auto;
}
.reply-modal-floating-sticker.pos-center {
    top: 38%;
    bottom: auto;
    transform: translateY(-50%);
}
.reply-modal-floating-sticker.pos-bottom {
    top: auto;
    bottom: 24px;
}
.btn-cycle-pos {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
}
.btn-cycle-pos:hover {
    background: rgba(255, 45, 85, 0.3);
    border-color: #ff2d55;
}

.reply-countdown-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 6.5rem;
    font-weight: 900;
    color: #ff2d55;
    text-shadow: 0 0 30px rgba(255, 45, 85, 0.8);
    z-index: 30;
    animation: countdownPulse 1s ease infinite;
}
@keyframes countdownPulse {
    0% { transform: scale(0.85); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.7; }
}

.reply-modal-footer {
    padding: 16px 20px 24px 20px;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.reply-timer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
#reply-timer-txt {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
}
.reply-timer-progress {
    width: 100%;
    max-width: 320px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}
#reply-timer-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff2d55, #f9c83a);
    transition: width 0.1s linear;
}

.reply-buttons-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 360px;
    margin: 0 auto;
}
.btn-cycle-pos-bar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f1f5f9;
    padding: 10px 14px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-cycle-pos-bar:hover {
    background: rgba(255, 255, 255, 0.16);
}
.reply-record-trigger {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reply-record-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ff2d55;
    transition: all 0.2s ease;
}
.reply-record-trigger.recording .reply-record-circle {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #ef4444;
}
.reply-record-trigger:hover {
    transform: scale(1.06);
}
.reply-alt-upload {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}
.reply-alt-upload:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.reply-caption-field {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    outline: none;
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}
.reply-caption-field:focus {
    border-color: #ff2d55;
}
.reply-review-actions {
    display: flex;
    gap: 12px;
}
.btn-reply-retry {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.btn-reply-retry:hover {
    background: rgba(255, 255, 255, 0.18);
}
.btn-reply-publish {
    flex: 1.6;
    background: linear-gradient(135deg, #ff2d55 0%, #ff5252 100%);
    border: none;
    color: #ffffff;
    padding: 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(255, 45, 85, 0.45);
    transition: all 0.2s ease;
}
.btn-reply-publish:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 45, 85, 0.65);
}
.reply-upload-progress {
    margin-top: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.reply-progress-bar-fill {
    height: 4px;
    background: #ff2d55;
    width: 0%;
    border-radius: 2px;
    transition: width 0.2s ease;
}
#reply-progress-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    color: #94a3b8;
    text-align: center;
}

/* ================================================================
   TIKTOK VIRAL / TRENDING BADGE STYLES
   ================================================================ */
.kethane-viral-badge {
    position: absolute;
    top: 102px;
    left: 14px;
    z-index: 17;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.85) 0%, rgba(249, 115, 22, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.45), 0 0 10px rgba(249, 115, 22, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    animation: viralBadgePulse 2.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes viralBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(239, 68, 68, 0.45); }
    50% { transform: scale(1.04); box-shadow: 0 6px 22px rgba(249, 115, 22, 0.7); }
}
.kethane-viral-badge.is-loop {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.85) 0%, rgba(99, 102, 241, 0.85) 100%);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.45);
}
.viral-badge-icon {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}
.viral-badge-text {
    line-height: 1;
}

body.kethane-clear-display-active .kethane-viral-badge {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
}

/* TIKTOK-GRADE DYNAMIC SUBTITLES OVERLAY */
.kethane-dynamic-captions {
    position: absolute;
    bottom: 24%;
    left: 6%;
    right: 6%;
    text-align: center;
    pointer-events: none;
    z-index: 25;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.kethane-dynamic-captions .caption-text-body {
    display: inline-block;
    background: rgba(10, 10, 15, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.28);
    color: #FFFFFF;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.35;
    padding: 8px 18px;
    border-radius: 14px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.6);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    letter-spacing: 0.3px;
    max-width: 92%;
}
.kethane-dynamic-captions .highlight-word {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}
@keyframes captionPop {
    0% { transform: scale(0.92); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
body.kethane-clear-display-active .kethane-dynamic-captions {
    opacity: 0 !important;
    pointer-events: none !important;
}


/* ================================================================
   KETHANE TV — REELS MODE EXTENSION (Cinematic & Mobile Responsive)
   Vertical Snap Feed for 2,492+ Christian Curated Videos
   ================================================================ */

.kethane-tv-reel-item {
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050508;
    overflow: hidden;
    width: 100%;
}

/* AMBIENT GLOW BACKDROP */
.kethane-tv-backdrop {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-size: cover;
    background-position: center;
    filter: blur(55px) brightness(0.4) saturate(140%);
    transform: scale(1.15);
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

/* GRADIENT OVERLAY (Mobile & Vignette) */
.kethane-tv-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

/* VIDEO PLAYER WRAPPER */
.kethane-tv-player-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    transition: all 0.3s ease;
}

.kethane-tv-iframe-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(249, 200, 58, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.12);
    background: #000;
}

.kethane-tv-iframe-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* TAP-TO-PLAY POSTER OVERLAY (Guarantees Instant Visuals & Audio On Tap) */
.kethane-tv-poster-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    cursor: pointer;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.kethane-tv-poster-overlay.faded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.kethane-tv-poster-overlay .tv-poster-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82);
    transition: transform 0.3s ease;
}
.kethane-tv-poster-overlay:hover .tv-poster-img {
    transform: scale(1.03);
}
.tv-play-pulse-btn {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9c83a 0%, #f97316 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 4px;
    box-shadow: 0 10px 30px rgba(249, 200, 58, 0.55), 0 0 20px rgba(249, 115, 22, 0.4);
    animation: tvPlayPulse 2.2s ease-in-out infinite;
    transition: transform 0.2s ease;
}
@keyframes tvPlayPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(249, 200, 58, 0.55), 0 0 15px rgba(249, 115, 22, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 14px 40px rgba(249, 200, 58, 0.8), 0 0 30px rgba(249, 115, 22, 0.6); }
}
.tv-tap-prompt {
    position: relative;
    z-index: 2;
    margin-top: 12px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 200, 58, 0.45);
    color: #f9c83a;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* BADGE PILL */
.kethane-tv-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(254, 44, 85, 0.22);
    border: 1px solid rgba(254, 44, 85, 0.45);
    color: #ff3b5c;
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

/* META OVERLAY */
.kethane-tv-meta-overlay {
    position: absolute;
    bottom: 85px;
    left: 14px;
    right: 74px;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kethane-tv-meta-overlay .tv-meta-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.kethane-tv-meta-overlay .tv-meta-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    pointer-events: auto;
}

.kethane-tv-meta-overlay .tv-meta-channel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    pointer-events: auto;
}

.kethane-tv-meta-overlay .tv-meta-views {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.74rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* ACTION BUTTONS (RIGHT RAIL) */
.kethane-tv-actions {
    position: absolute;
    right: 12px;
    bottom: 95px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.kethane-tv-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.kethane-tv-action-btn .action-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform 0.2s, background 0.2s;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.kethane-tv-action-btn:hover .action-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.22);
}

.kethane-tv-action-btn:active .action-icon {
    transform: scale(0.92);
}

.kethane-tv-action-btn.active .action-icon {
    color: #fe2c55;
    background: rgba(254, 44, 85, 0.22);
    border-color: rgba(254, 44, 85, 0.5);
}

.kethane-tv-action-btn .action-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* ================================================================
   DESKTOP CINEMATIC MODE (min-width: 768px)
   Magnificent, widescreen Christian TV Theater experience
   ================================================================ */
@media (min-width: 768px) {
    .kethane-tv-reel-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .kethane-tv-player-wrap {
        width: min(85vw, 880px);
        max-width: 880px;
        margin: 0 auto;
        padding: 0;
        margin-top: 15px;
    }

    .kethane-tv-iframe-box {
        border-radius: 20px;
        box-shadow: 0 25px 65px rgba(0, 0, 0, 0.95), 0 0 50px rgba(254, 44, 85, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.15);
        max-height: calc(100vh - 220px);
    }

    /* On Desktop, meta is placed in a sleek frosted pill card directly below the video */
    .kethane-tv-meta-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 880px;
        margin-top: 14px;
        padding: 14px 22px;
        background: rgba(15, 23, 42, 0.78);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
        pointer-events: auto;
    }

    .kethane-tv-meta-overlay .tv-meta-title {
        font-size: 1.18rem;
        line-height: 1.35;
        margin-bottom: 2px;
    }

    /* Actions positioned comfortably beside the 880px player */
    .kethane-tv-actions {
        position: absolute;
        right: max(16px, calc(50% - 440px - 72px));
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        gap: 16px;
    }

    .kethane-tv-action-btn .action-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .kethane-tv-action-btn .action-label {
        font-size: 0.72rem;
    }
}
