/* DARK THEME */

body {
    background-color: #0f0f0f;
    color: #e6e6e6;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* HEADER */
header {
    background-color: #181818;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 a {
    color: #ffffff;
}

.search-container input[type="text"] {
    background-color: #222;
    border: 1px solid #333;
    color: #e6e6e6;
}

.search-container button {
    background-color: #333;
    border: 1px solid #444;
    color: #fff;
    cursor: pointer;
}

/* VIDEO GRID */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px;
    gap: 20px;
}

/* VIDEO CARD */
.video-preview {
    width: 300px;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.video-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.video-preview img {
    width: 100%;
    border-radius: 0;
    height: 170px;
    object-fit: cover;
}

/* TEXT */
.video-preview h3 {
    color: #fff;
    margin: 10px 12px 6px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.video-preview h3 img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.video-preview p {
    margin: 0 12px 12px;
    color: #b3b3b3;
    font-size: 13px;
}


/* LINKS DEFAULT */
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: #fff;
}