
  
 /* General Container Styling */
#content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
    /* background-color: #0c0d3f; */
  }
  
  /* Individual Content Container */
  .content-item {
    background-color: #1a1b6e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
    text-align: center;
  }
  
  .content-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.5);
  }
  
  /* Video Container */
  .videocontainer {
    position: relative;
  }
  
  .image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .videocontainer:hover .image {
    transform: scale(1.05);
  }
  
  .videocontainer::before {
    content: "\f144"; /* Font Awesome play icon */
    font-family: FontAwesome;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .videocontainer:hover::before {
    opacity: 1;
  }
  
  /* Watermark Section */
  .watermark {
    padding: 15px;
    background-color: #101252;
    position: relative;
    color: #fff;
  }
  
  .watermark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
  }
  
  .watermark .starpng {
    width: 22px;
    height: auto;
    margin: 0 3px;
  }
  
  .watermark p {
    margin: 12px 0;
    font-size: 16px;
  }
  
  .watermark p b {
    font-size: 18px;
  }
  
  .watermark a {
    color: #4ab3ff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .watermark a:hover {
    color: #ff416c;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #content-container {
      flex-direction: column;
      padding: 20px;
    }
  
    .content-item {
      max-width: 100%;
    }
  }
  