#players { display: flex; gap: 20px; flex-wrap: wrap; padding: 20px; justify-content: center; } .story-player { width: 100px; height: 177px; background: #000; border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; color: #fff; border: 1px solid #333; } .story-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: brightness(0.6); } .story-player span { font-size: 12px; opacity: 0.8; } /* FULLSCREEN PLAYER */ .story-fullscreen { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 9999; background: #000; display: flex; align-items: center; justify-content: center; } .story-video { width: 100%; height: 100%; object-fit: cover; } .story-fullscreen .story-video { object-fit: contain; background: #000; } /* TOP UI */ .top-ui { position: absolute; top: 0; width: 100%; padding: 15px; display: flex; flex-direction: column; gap: 10px; z-index: 10000; } /* Progress bar bovenaan */ .progress-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; overflow: hidden; } .progress-fill { height: 100%; width: 0%; background: white; transition: width linear; } /* Buttons onder progressbar */ .top-buttons { display: flex; justify-content: space-between; padding: 0 5px; } .btn { background: rgba(0,0,0,0.6); color: white; padding: 10px 14px; border-radius: 50%; font-size: 18px; cursor: pointer; user-select: none; } /* Profiel link links onder */ .profile-overlay { position: absolute; top: 80px; left: 20px; background: rgba(0,0,0,0.5); padding: 8px 12px; border-radius: 6px; color: white; font-size: 24px; text-decoration: none; }