body{margin:0;padding:0;background-color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:white;-webkit-font-smoothing:antialiased}#shorts-container{height:100vh;width:100vw;overflow-y:scroll;scroll-snap-type:y mandatory}.video-container{height:100vh;width:100%;display:flex;justify-content:center;align-items:center;position:relative;scroll-snap-align:start;background-color:#000}.video-player{width:100%;height:100%;object-fit:contain}.video-overlay{position:absolute;bottom:20px;right:15px;display:flex;flex-direction:column;gap:20px;z-index:10}.video-action-btn{background-color:rgba(255,255,255,0.2);border:none;color:white;width:50px;height:50px;border-radius:50%;display:flex;justify-content:center;align-items:center;cursor:pointer;transition:background-color .2s ease;text-decoration:none;font-size:14px;flex-direction:column;backdrop-filter:blur(5px)}.video-action-btn:hover{background-color:rgba(255,255,255,0.4)}.video-action-btn .icon{font-size:24px}.single-view-overlay{bottom:auto;top:50%;transform:translateY(-50%);gap:25px}.single-view-overlay .video-action-btn{width:auto;padding:10px 20px;border-radius:30px;font-size:16px}.single-view-overlay .icon{margin-right:8px}.no-videos{text-align:center;flex-direction:column}.no-videos a{color:#3498db;text-decoration:none;font-size:1.2em}.ad-container-item{background-color:#111;padding:20px;flex-direction:column;color:#ccc;font-size:14px;text-align:center}.site-footer{background:#000;text-align:center;padding:20px;border-top:1px solid #222;color:#7f8c8d}.footer-nav a{margin:0 10px;text-decoration:none;color:#7f8c8d}.footer-nav a:hover{text-decoration:underline}

/* Add these styles to the bottom of assets/style.css */
.upload-fab {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 300;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.upload-fab:hover {
    background-color: #2980b9;
    transform: translateX(-50%) scale(1.05);
}

.site-footer {
    z-index: 1001; /* Ensure footer links are clickable above other content if needed */
    position: relative;
}