/* ── reset & shell ── */ :root { --bg: #000000; --ui-white: #f5f5f5; --ui-dim: rgba(255, 255, 255, .75); --accent-blue: #0866FF; --heart-red: #ff3040; --chrome-shadow: rgba(0, 0, 0, .55); } * { box-sizing: border-box; } html, body { margin: 0; padding: 0; height: 100%; background: #0a0a0a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; overflow: hidden; } .phone-shell { max-width: 430px; height: 100vh; margin: 0 auto; position: relative; background: #000; box-shadow: 0 0 40px rgba(0, 0, 0, .6); } .feed { height: 100%; overflow-y: scroll; scroll-snap-type: y mandatory; scrollbar-width: none; } .feed::-webkit-scrollbar { display: none; } .reel { position: relative; height: 100vh; scroll-snap-align: start; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #000; } /* ── top chrome ── */ .top-bar { position: absolute; top: 0; left: 0; right: 0; padding: 14px 14px 40px; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(to bottom, var(--chrome-shadow) 0%, rgba(0, 0, 0, 0) 100%); z-index: 5; color: var(--ui-white); } .top-bar .title { font-size: 19px; font-weight: 700; letter-spacing: .2px; } .top-bar .icons { display: flex; gap: 18px; } .top-bar svg { width: 23px; height: 23px; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .5)); } /* ── progress ── */ .progress-row { position: absolute; top: 8px; left: 10px; right: 10px; display: flex; gap: 4px; z-index: 6; } .progress-track { flex: 1; height: 2.5px; border-radius: 2px; background: rgba(255, 255, 255, .35); overflow: hidden; } .progress-fill { height: 100%; width: 0%; background: #fff; transition: width 0.1s linear; } .reel.active .progress-fill.animated { animation: fillbar linear forwards; } @keyframes fillbar { from { width: 0%; } to { width: 100%; } } /* ── bottom chrome ── */ .bottom-bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 14px 22px; display: flex; align-items: flex-end; justify-content: space-between; background: linear-gradient(to top, var(--chrome-shadow) 0%, rgba(0, 0, 0, 0) 100%); padding-top: 70px; z-index: 5; color: var(--ui-white); } .caption-col { max-width: 76%; } .author-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; } .avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; border: 1.5px solid rgba(255, 255, 255, .8); flex-shrink: 0; } .author-name { font-weight: 600; font-size: 14.5px; } .follow-pill { border: 1.3px solid #fff; color: #fff; background: transparent; font-size: 12.5px; font-weight: 600; padding: 4px 11px; border-radius: 7px; margin-left: 2px; cursor: pointer; transition: all .2s; } .follow-pill.following { opacity: .55; border-color: rgba(255, 255, 255, .5); } .caption-text { font-size: 13.6px; line-height: 1.35; color: #f0f0f0; margin-bottom: 9px; } .caption-text .tag { color: #dbe4ff; font-weight: 500; } .sound-row { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: #eee; } .sound-row svg { width: 13px; height: 13px; } .action-col { display: flex; flex-direction: column; align-items: center; gap: 19px; padding-bottom: 4px; } .action-item { display: flex; flex-direction: column; align-items: center; gap: 3px; cursor: pointer; user-select: none; transition: transform .15s ease; } .action-item:active { transform: scale(0.85); } .action-item svg { width: 29px; height: 29px; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .6)); transition: transform .15s ease; } .action-item .like-icon { transition: transform .2s cubic-bezier(0.34, 1.56, 0.64, 1); } .action-item .like-icon.heart-fill { transform: scale(1.15); } .action-count { font-size: 12px; font-weight: 600; color: #f2f2f2; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); min-width: 20px; text-align: center; } .heart-fill { fill: var(--heart-red); stroke: var(--heart-red); } .disc { width: 30px; height: 30px; border-radius: 50%; background: #222 center/cover; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; animation: spin 4.5s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } .mute-btn { position: absolute; top: 64px; right: 14px; z-index: 6; width: 30px; height: 30px; border-radius: 50%; background: rgba(0, 0, 0, .35); display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px); } .mute-btn svg { width: 16px; height: 16px; } .pause-flash { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 4; pointer-events: none; opacity: 0; } .pause-flash svg { width: 64px; height: 64px; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5)); } .pause-flash.show { animation: flashfade .55s ease forwards; } @keyframes flashfade { 0% { opacity: 0; } 15% { opacity: 1; } 100% { opacity: 0; } } /* ── scenes ── */ .scene { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; } .scene svg { width: 100%; height: 100%; } /* shared idle‑loop */ .breathe { animation: breathe 2.2s ease-in-out infinite; transform-origin: center; } @keyframes breathe { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } } /* Scene 1: Panda */ .sky1 { fill: #cfeefc; } .cloud { animation: driftClouds 14s linear infinite; } @keyframes driftClouds { from { transform: translateX(-40px); } to { transform: translateX(460px); } } .bamboo-sway { transform-origin: bottom center; animation: sway 3s ease-in-out infinite; } @keyframes sway { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(2.5deg); } } .panda-body { animation: pandaBob 1.8s ease-in-out infinite; transform-origin: bottom center; } @keyframes pandaBob { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-3px) rotate(-1.5deg); } } .panda-arm { animation: chew 1s ease-in-out infinite; transform-origin: top center; } @keyframes chew { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-14deg); } } .blink1 { animation: blink 3.4s ease-in-out infinite; } @keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 95% { transform: scaleY(0.1); } } /* Scene 2: Fox */ .sky2 { fill: #ffd9a0; } .sun2 { animation: pulseGlow 3s ease-in-out infinite; } @keyframes pulseGlow { 0%, 100% { opacity: .9; } 50% { opacity: 1; filter: brightness(1.1); } } .leaf { animation: leafFall linear infinite; } .leaf1 { animation-duration: 5s; } .leaf2 { animation-duration: 6.5s; animation-delay: 1.2s; } .leaf3 { animation-duration: 4.2s; animation-delay: 2.5s; } @keyframes leafFall { 0% { transform: translate(0, -20px) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 100% { transform: translate(30px, 420px) rotate(360deg); opacity: .9; } } .fox-jump { animation: foxJump 1.6s ease-in-out infinite; transform-origin: bottom center; } @keyframes foxJump { 0%, 100% { transform: translateY(0) rotate(0deg); } 30% { transform: translateY(-38px) rotate(-6deg); } 55% { transform: translateY(-38px) rotate(4deg); } 80% { transform: translateY(0) rotate(0deg); } } .fox-tail { animation: tailWag 1.6s ease-in-out infinite; transform-origin: right center; } @keyframes tailWag { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(10deg); } } /* Scene 3: Cat */ .room3 { fill: #3a2b52; } .cat-pounce { animation: catWiggle 1.4s ease-in-out infinite; transform-origin: bottom center; } @keyframes catWiggle { 0%, 100% { transform: translateX(0) rotate(0deg); } 25% { transform: translateX(-6px) rotate(-3deg); } 50% { transform: translateX(10px) rotate(4deg) translateY(-14px); } 75% { transform: translateX(-3px) rotate(-2deg); } } .yarn-roll { animation: yarnSpin 2.4s linear infinite; transform-origin: center; } @keyframes yarnSpin { to { transform: rotate(360deg); } } .cat-tail3 { animation: catTail 1.1s ease-in-out infinite; transform-origin: bottom right; } @keyframes catTail { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-18deg); } } .twinkle { animation: twinkle 1.8s ease-in-out infinite; } @keyframes twinkle { 0%, 100% { opacity: .3; } 50% { opacity: 1; } } /* Scene 4: Bunny */ .sky4 { fill: #bdeaff; } .grass-sway { transform-origin: bottom center; animation: grassMove 2.6s ease-in-out infinite; } @keyframes grassMove { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } } .bunny-hop { animation: bunnyHop 1.1s ease-in-out infinite; transform-origin: bottom center; } @keyframes bunnyHop { 0%, 100% { transform: translateY(0) scaleY(1); } 35% { transform: translateY(-30px) scaleY(1.05); } 55% { transform: translateY(-30px) scaleY(1.05); } 80% { transform: translateY(0) scaleY(0.9); } } .ear-flop { animation: earFlop 1.1s ease-in-out infinite; transform-origin: bottom center; } @keyframes earFlop { 0%, 100% { transform: rotate(0deg); } 40% { transform: rotate(-8deg); } 70% { transform: rotate(6deg); } } .butterfly { animation: flutter 4s ease-in-out infinite; } @keyframes flutter { 0% { transform: translate(0, 0); } 25% { transform: translate(40px, -30px); } 50% { transform: translate(70px, 10px); } 75% { transform: translate(30px, 30px); } 100% { transform: translate(0, 0); } } .wing { animation: wingFlap .25s ease-in-out infinite alternate; transform-origin: center; } .ic { fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; } /* ── toast for Telegram feedback ── */ .toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, .85); color: #fff; padding: 10px 22px; border-radius: 40px; font-size: 14px; font-weight: 500; z-index: 999; pointer-events: none; opacity: 0; transition: opacity .35s ease, transform .35s ease; backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 8px 30px rgba(0, 0, 0, .6); } .toast.show { opacity: 1; transform: translateX(-50%) translateY(-8px); } .toast.success { border-color: #4caf50; } .toast.error { border-color: #f44336; } .toast.warning { border-color: #ffa726; } /* ── like burst animation ── */ .like-burst { position: absolute; pointer-events: none; font-size: 40px; color: #ff3040; opacity: 0; z-index: 10; animation: burstUp .8s ease-out forwards; } @keyframes burstUp { 0% { transform: translateY(0) scale(0.5); opacity: 1; } 100% { transform: translateY(-80px) scale(1.2); opacity: 0; } }
Reels
UBJP FANTASTIC
COMMANDER BRAVO SPEECH IN BARMM⚡ #BARMM #UBJP #MINDANAO
Original Audio
24.5K
Share
🎵
Reels
FEDERALYST PARTY
MACACUA Speech in BARMM Parliamentary💯
Original Audio
30.6k
Share
🎵
Reels
PARLIAMENT BARMM
'MURAD' GIVES EMOTIONAL MESSAGE🤍
Original Audio
15.9K
Share
🎵