/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styles */
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* Navbar styles */
  .navbar {
    background-color: #2a2a2a;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .navbar h1 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  /* Container for the video cards */
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  /* Style for each video card */
  .video-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .video-card:hover {
    transform: translateY(-5px);
  }
  
  .vid {
    width: 100%;
    border-radius: 8px;
  }
  
  /* Title styles */
  .video-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 10px;
  }
  
  /* Price styles */
  .price {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
  }
  
  .discounted-price {
    color: #e74c3c;
    margin-right: 10px;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #888;
  }
  
  /* Button styles */
  .buy-button {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .buy-button:hover {
    background-color: #2ecc71;
  }
  
  /* Footer section */
  .checkout-footer {
    background-color: #2a2a2a;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .checkout-footer h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .checkout-footer ul {
    list-style-type: none;
    margin-bottom: 15px;
  }
  
  .checkout-footer p {
    font-size: 1.2rem;
  }
  
  .checkout-button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .checkout-button:hover {
    background-color: #2980b9;
  }
  