
    :root {
      --maroon: #4b0000;
      --gold: #d4af37;
      --dark-bg: #2e0101;
      --light-text: #f0f0f0;
      --overlay-dark: rgba(0, 0, 0, 0.6);
    }

    body {
      margin: 0;
      font-family: 'Playfair Display', serif;
      background: var(--dark-bg);
      color: var(--light-text);
      overflow-x: hidden;
    }

    * { box-sizing: border-box; }

    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(43, 0, 0, 0.85); /* darker maroon overlay */
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      animation: fadeIn 2s ease;
    }

    .hero-content img {
      /* height: 64px; */
      width: 307px;
      /* padding: 9px 9px; */
      /* margin-bottom: -18px; */
    }
.imgm {
      height: 50px;
      width: 50px !important;
      padding: 10px 10px;
      margin: -37px 0px -16px 10px;
    }
.imgm2 {
      height: 66px;
      width: 70px !important;
      padding: 0px 0px;
      margin: -3px -30px -26px -25px;
    }

    .hero-content p {
      font-size: 24px;
      color: #ffffffb8;
      margin-bottom: 0px;
    }

    .hero-content h1 {
      font-size: 70px;
      margin-bottom: -18px;
      color: #b7a183b3;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .hero-content button {
      font-family: 'Playfair Display', serif;
      padding: 19px 103px;
      font-size: 25px;
      border: 1px solid #bfaa858f;
      border-radius: 46px;
      background: #3e10102b;
      color: #bfaa85;
      margin: -7px -63px 11px -63px;
      cursor: pointer;
      transition: all 0.4s ease;
      letter-spacing: 1px;
    }

    .hero-content button:hover {
      background: #460404bf;
      color: #fff;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Filters, cards, lightbox... same as before */

    .filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1px;
      padding: 41px 21px 12px;
      background: #00000000;
      margin-top: -35px;
      /* z-index: 99; */
    }

    .filters input, .filters select {
      padding: 15px 15px;
      font-size: 14px;
      border: 1px solid #b39f60b8;
      background: #4a00007a;
      color: var(--light-text);
      border-radius: 29px;
      width: 241px;
    }

    h2.section-title {
      text-align: center;
      margin: 8px 0 10px;
      font-size: 40px;
      color: #9e8c70;
      font-weight: 700;
    }

    #video-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      gap: 20px;
      padding: 20px;
    }

    .video-card {
      background: #1a1a1a85;
      border: 1px solid #94845180;
      border-radius: 4px;
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
      cursor: pointer;
      animation: fadeIn 1s ease;
    }

    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    }

    .video-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .video-card h2 {
      margin: 5px 0;
      font-size: 22px;
      color: #9e8c70;
    }

    .video-card p {
      color: #ccc;
      font-size: 16px;
      margin-bottom: 5px;
    }

    #lightbox {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.95);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      animation: fadeIn 0.7s ease;
    }

    #lightbox video {
      max-width: 90%;
      max-height: 70%;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    #lightbox-title {
      color: var(--gold);
      font-size: 24px;
      margin-bottom: 20px;
    }

    .lightbox-controls {
      display: flex;
      gap: 20px;
      margin-top: 10px;
    }

    .lightbox-controls button {
      padding: 0px 35px;
      font-size: 18px;
      border: none;
      border-radius: 5px;
      background: #291c1c;
      color: #ffffff;
      cursor: pointer;
      transition: background 0.3s;
    }

    .lightbox-controls button:hover {
      background: var(--maroon);
      color: var(--gold);
    }

    #close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: #ffffff; /* Changed to light color */
      cursor: pointer;
      font-weight: bold;
    }
  </style>