body {
  margin: 0;
  background-color: #000;
  color: cyan;
  font-family: Arial, sans-serif;
}
.header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}
.video-card {
  cursor: pointer;
  background: #111;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.2s;
}
.video-card:hover {
  transform: scale(1.05);
}
.video-card img {
  width: 100%;
  border-radius: 10px;
}
.btn {
  background: cyan;
  color: black;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.login-container {
  max-width: 300px;
  margin: 100px auto;
  text-align: center;
}
input[type="text"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}
video {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 20px auto;
}
.btn-link {
  display: inline-block;
  background: cyan;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.hamburger {
font-size: 30px;
position: fixed;
top: 20px;
        left: 20px;
        z-index: 1000;
        cursor: pointer;
      }
  
      /* When the sidebar is open */
      .sidebar.open {
        left: 0;
      }
  
      /* When the content moves */
      .content.open {
        margin-left: 250px;
      }
      .sidebar {
        height: 100%;
        width: 250px;
        position: fixed;
        top: 0;
        left: -300px;
        background-color: #1a1a1a;
        padding: 20px;
        overflow-y: auto;
        transition: 0.3s;
      }
  
      /* Sidebar links */
      .sidebar a {
        display: block;
        color: white;
        text-decoration: none;
        margin: 10px 0;
        font-size: 1rem;
      }
  
      .sidebar a:hover {
        color: cyan;
      }
  
      .sidebar h2 {
        color: cyan;
        border-bottom: 1px solid #333;
        padding-bottom: 8px;
        margin-top: 20px;
      }
  
      /* Content area */
      .content {
        padding: 20px;
        transition: margin-left 0.3s;
        margin-left: 0;
      }