/*
Theme Name: RaiDenBok Final
Author: RaiDenBok
Version: 3.0
Description: Modern TikTok-style theme with profile, follow, like, comments, and autoplay video
*/

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    padding: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ff004f;
    z-index: 1000;
}

.video-feed {
    margin-top: 60px;
    height: calc(100vh - 60px);
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.video-item {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 80px;
    left: 20px;
}

.actions {
    position: absolute;
    bottom: 100px;
    right: 20px;
    text-align: center;
}

.like-btn, .follow-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: block;
    margin-bottom: 10px;
}

.like-count {
    font-size: 14px;
}

.comment-section {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-height: 100px;
    overflow-y: auto;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar {
    display: none;
}
