
body {
    font-family: 'Noto Serif', serif;
    font-size: 18px;
}

.card-hover {
    transition: 400ms ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: 200ms ease;
}

.aspect-16-9 {
    aspect-ratio: 16 / 9;
}
/* */

#search-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-result:hover {
    background-color: #f5f5f5;
}

.video-player {
    margin: 30px 0;
    text-align: center;
}

.video-player video {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tag {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 5px 10px;
    border-radius: 15px;
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 14px;
}
