* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.upload-btn {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 15px;
}

.menu-icon {
    font-size: 20px;
    cursor: pointer;
}

/* Container */
.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 15px;
}
.container {
  max-width: 390px;
}

/* Video Utama */
.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

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

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.video-title {
    margin: 15px 0;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Grid System */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 kolom seperti di gambar */
    gap: 20px;
}

.video-card {
    cursor: pointer;
}

.thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #eee;
}

.thumb img {
    width: 100%;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    border: 2px solid white;
    padding: 5px 10px;
    border-radius: 50%;
}

.thumb-title {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
}