.logo img {
    width: auto;
}

.video-content-wrapper {
    width: 100%;
}

.bookmark-count {
    color: white;
    font-size: 14px;    
    width: 2.8rem;
    text-align: center;
}

.good-count,
.bad-count {
    color: white;
    width: 3rem;
    text-align: center;
    margin-top: 12px;
}

.save-btn.check svg {
    fill: #0056c1;
}

.home-back-btn {
	position: absolute;
    top: 2%;
    left: 2%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
}

.new-tag {
    position: absolute;
    display: inline-block;
    margin-top: 10px;
    margin-left: 10px;
    padding: 5px;
    border-radius: 5px;
    background-color: red;
    color: white;
    font-weight: bold;
}

.full-video-background {
    position: absolute;
    top: 23px;
    left: 14px;
    width: 117px;
    height: 66px;
    object-fit: cover;    
    filter: brightness(85%);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 1.0em;
}

#overlay p {
    margin-bottom: 20px;
}

.video-info-mobile {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 10;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 6px;
    max-width: calc(100% - 20px);
}

.video-info-mobile .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.2;
}

.video-info-mobile .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.video-info-mobile .tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 9999px;
    padding: 5px 8px;
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
}