
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

    body {
      font-family: 'Inter', sans-serif;
      background-color: #0f0f0f;
    }

    .video-container .wistia_embed {
      border-radius: 8px !important;
      overflow: hidden;
    }

    .reel-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reel-card:hover {
      transform: translateY(-4px);
    }

    .play-button {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .text-own-style {
      color: #0d8d4a;
    }

    .video-container {
      box-shadow: #0000004d 0px 15px 35px;
      transform: perspective(1000px) rotateX(5deg);
      margin: 0px auto 3rem;
      overflow: hidden;
      border-radius: 15px;
      padding: 15px;
    }

    /* Aspect ratio utilities for YouTube Shorts (9:16) */
    .aspect-w-9 {
      position: relative;
      padding-bottom: 177.78%;
      /* 16/9 * 100% */
    }

    .aspect-h-16 {
      position: relative;
    }

    .aspect-w-9>* {
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }


    .floating-logos {
      position: relative;
      height: 0;
      pointer-events: none;
      z-index: 1;
      max-width: 908px;
      margin: 0 auto;
    }

    .floating-logo {
      position: absolute;
      animation: swing 4s ease-in-out infinite;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
      transform-origin: top center;
      width: 50px;
      /* Default size for desktop */
    }

    .floating-logo::before {
      content: '';
      position: absolute;
      top: -30px;
      left: 50%;
      width: 2px;
      height: 100px;
      background: linear-gradient(to bottom,
          transparent 10%,
          rgba(255, 255, 255, 0.5) 90%);
      transform: translateX(-50%);
    }

    @keyframes swing {

      0%,
      100% {
        transform: rotate(-10deg);
      }

      50% {
        transform: rotate(10deg);
      }
    }

    /* Fixed positions */
    .floating-logo:nth-child(1) {
      /* Premiere Pro */
      left: 1%;
      top: 0px;
      animation-delay: 0.2s;
    }

    .floating-logo:nth-child(2) {
      /* Youtube */
      right: 1%;
      top: 0px;
      animation-duration: 3.5s;
    }

    .floating-logo:nth-child(3) {
      /* Instagram */
      left: 1%;
      top: 390px;
      margin-left: -25px;
      animation-duration: 4.2s;
    }

    .floating-logo:nth-child(4) {
      /* Tiktok */
      right: 1%;
      top: 390px;
      animation-duration: 3.5s;
    }

    @media (max-width: 1200px) {
      .floating-logo {
        width: 40px;
        /* Slightly smaller on medium screens */
      }
    }

    @media (max-width: 992px) {
      .floating-logo {
        width: 35px;
      }

      .floating-logo::before {
        height: 80px;
      }
    }

    @media (max-width: 768px) {
      .floating-logos {
        max-width: 100%;
      }

      .floating-logo {
        width: 30px;
      }

      .floating-logo:nth-child(1) {
        left: 5%;
        top: 10px;
      }

      .floating-logo:nth-child(2) {
        right: 5%;
        top: 10px;
      }

      .floating-logo:nth-child(3) {
        left: 5%;
        top: 300px;
        margin-left: 0;
      }

      .floating-logo:nth-child(4) {
        right: 5%;
        top: 300px;
      }
    }

    @media (max-width: 576px) {
      .floating-logo {
        width: 25px;
      }

      .floating-logo::before {
        height: 60px;
      }
    }

    @media (max-width: 480px) {
      .floating-logos {
        max-width: 100%;
      }

      .floating-logo {
        width: 20px;
      }

      .floating-logo::before {
        height: 40px;
      }

      .floating-logo:nth-child(3) {
        left: 5%;
        top: 215px;
        margin-left: 0;
      }

      .floating-logo:nth-child(4) {
        right: 5%;
        top: 215px;
      }

    }