  /* Custom Search Bar CSS */
  .custom-search-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
  }

  .custom-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #febd69;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .custom-search-box:focus-within {
    border-color: #e47911;
    box-shadow: 0 4px 15px rgba(228, 121, 17, 0.2);
  }

  .custom-search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    color: #333;
  }

  .custom-search-btn {
    background: #febd69;
    border: none;
    color: #111;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-search-btn:hover {
    background: #f3a847;
  }

  /* Main Split Screen Layout System */
  .split-showcase-container {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* Top Heading Section styling */
  .top-heading-wrapper {
    max-width: 800px;
    margin: 20px auto 15px auto;
    padding: 0 15px;
  }

  /* Left Side: Video Architecture */
  .video-column {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .video-3-4-box {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .video-3-4-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Right Side: Links Architecture */
  .links-column {
    width: 100%;
  }

  .linktree-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Individual Link Cards Styling */
  .linktree-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    padding: 14px 20px;
    text-decoration: none;
    color: #1a202c;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    position: relative;
  }

  .linktree-card:hover {
    transform: translateY(-2px);
    border-color: #ff9900;
    background-color: #fffaf0;
    box-shadow: 0 6px 12px rgba(255, 153, 0, 0.12);
    color: #111111;
  }

  .linktree-amzn-icon {
    font-size: 1.2rem;
    color: #ff9900;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .linktree-text {
    flex-grow: 1;
    text-align: center;
    margin-right: 20px;
  }

  .linktree-arrow {
    font-size: 0.85rem;
    color: #cbd5e1;
    position: absolute;
    right: 22px;
    transition: color 0.2s ease;
  }

  .linktree-card:hover .linktree-arrow {
    color: #ff9900;
  }

  @media (max-width: 576px) {
    .custom-search-input {
      padding: 10px 15px;
      font-size: 14px;
    }

    .custom-search-btn {
      padding: 10px 18px;
      font-size: 14px;
    }
  }

  /* Media Query for Desktop & TV (Horizontal Layout) */
  @media (min-width: 992px) {
    .split-showcase-container {
      flex-direction: row;
      align-items: flex-start;
    }

    .video-column {
      width: 40%;
      position: sticky;
      top: 20px;
    }

    .links-column {
      width: 60%;
    }

    .linktree-list {
      max-height: 540px;
      overflow-y: auto;
      padding-right: 8px;
    }

    .linktree-list::-webkit-scrollbar {
      width: 6px;
    }

    .linktree-list::-webkit-scrollbar-track {
      background: #f1f5f9;
      border-radius: 10px;
    }

    .linktree-list::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 10px;
    }

    .linktree-list::-webkit-scrollbar-thumb:hover {
      background: #94a3b8;
    }
  }